all groups > asp.net security > july 2006 > threads for july 1 - 7, 2006
Filter by week: 1 2 3 4 5
determine trusted domain with windows authentication
Posted by Jerry N at 7/7/2006 10:16:23 PM
I am planning on using Windows authentication for a web page. I've added
these lines to my web.config file:
<identity impersonate="true"/>
<authentication mode="Windows" />
And I can view the name with:
void Page_Load(object sender, EventArgs e) {
if(User.Identity.IsAuthenticated ) {... more >>
Forms authentication annoying password prompt!
Posted by Burdock at 7/7/2006 6:40:02 AM
Hi,
I am using Forms Authentication on a web site running from my local machine.
This works fine in IE, but when I try to view the same site with Firefox, I
am prompted for a username and password. I've noticed that this also happens
when another user tries to access the site from their mac... more >>
asp.net configuraton puzzle
Posted by barry at 7/6/2006 7:25:43 PM
I am not able to run the Asp.Net Configuration tool from inside of a VS 2005
website(I have VSTO 2005)
What happens is the page goes flying by me and returns to the VS 2005 design
page I was on.
I was however able to eye ball the URL of the application as it flew by me
to get the port numbe... more >>
Overloading security check on dropdown, is it possible??
Posted by Søren M. Olesen at 7/6/2006 1:57:21 PM
Hi
I'm trying to populate a dropdown list on a page, with the result from an
AJAX request, however, because my dropdown is runat="server" I get a
security error when posting back my page.
I guess that makes sence since a hacker could attemt to compromise the
webserver this way, however in ... more >>
Forms Authentication - Sudden Redirect Failure on Login
Posted by Stephen Davies at 7/5/2006 4:55:02 PM
I have a strange problem, for months now we have had a dotnet 2.0 application
(previously 1.1 but now upgraded) running on a 2003 server without issue. A
recent small change was made to the sites underlying code and tested on the
development platform of Windows XP, migrated to the QA platform ... more >>
Impersonate via a remote workgroup
Posted by Dino at 7/5/2006 11:36:01 AM
i am trying to impersanate a remote user on a workgroup(NOT Domain) account.
This does not seem to work. Only works for domain or local user. Anyone have
any ideas.
Thanks
Dim tempWindowsIdentity As WindowsIdentity
Dim token As IntPtr = IntPtr.Zero
Dim tokenDuplicate As ... more >>
It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level
Posted by wajmuller NO[at]SPAM gmail.com at 7/5/2006 5:07:35 AM
I have an application with some subfolders that i am trying to protect.
When i configure the web.config to secure that folder, i get the
dreaded, "It is an error to use a section registered as
allowDefinition='MachineToApplication' beyond application level. This
error can be caused by a virtual ... more >>
ASPdotNet Deployment
Posted by Saeid Bagheri at 7/4/2006 4:22:48 PM
Dear friends
i have made a web application by using ASP.Net 2003.
We use it in our compnay.
Now i want to sale this application to another company also.
Currently all files including .vb,.rpt,.xsd,.resx,.aspx are in WWWRoot
folder in my server.
I am very worry about my application source bec... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
DirectoryEntry Access Denied
Posted by Ordwin at 7/4/2006 7:36:14 AM
Hello,
I am currently working on a app to remotely (from a windows xp
environment) retrieve a list of websites/virtualdirectories on a
windows 2003 server. However, it keeps giving me an access denied on
the following piece of code:
Me._W3Root = New DirectoryEntry("IIS://" & Me.txtServer.... more >>
|