Groups | Blog | Home


Archived Months
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
all groups > asp.net security > november 2004 > threads for november 22 - 28, 2004

Filter by week: 1 2 3 4 5

RedirectFromLoginPage persistent cookie expiration
Posted by jester at 11/28/2004 7:45:02 PM
Passing true for the second parameter of RedirectFromLoginPage creates a persistent cookie. When does this cookie expire? ...more >>


DPAPI
Posted by Mark Petruszak at 11/28/2004 11:59:02 AM
Hi everyone. I'm creating an app that stores DB connection strings in the web config file. I'm using the MSDN resources at http://msdn.microsoft.com/library/default.asp?url=/library/en-us/secmod/html/secmod21.asp and the related articles for help. However, when using the code in the above a...more >>

forms authentication question
Posted by z. f. at 11/28/2004 10:37:36 AM
This is a multi-part message in MIME format. ------=_NextPart_000_0026_01C4D536.46D30000 Content-Type: text/plain; charset="windows-1255" Content-Transfer-Encoding: quoted-printable Hi, i use Forms authentication in my vb.net asp web application on the login page i set the authenticat...more >>

history.back not working
Posted by MuhammadTariq at 11/27/2004 1:00:07 PM
hi All In my appliction history.Back is working at my local host and woring properly but when i upload the apllication and run my appliction from web the history.back is not working please help me as soon as possible -- THANKS. Regards TARIQ. -- THANKS. Regards TARIQ. ...more >>

Vs.net and Photoshop?
Posted by Leon at 11/26/2004 9:40:49 PM
Is it easy and seamless to import html table and text from Photoshop to vs.net. when designing the website interface? Or is it a headache? ...more >>

Form's Authentication
Posted by Ankur Goyal at 11/26/2004 3:28:49 PM
Hi ! I am using Forms authentication in my web application , but after authenticating used it is again redirecting to Login page..... How to resolve that issue. Thanks Ankur ...more >>

Deligation issue
Posted by Richard at 11/26/2004 8:15:10 AM
Hi, I am using Windows 2000 and .NET Framework 1.1 and am using impersonation to pick up details from a fileserver. Normally this works however when we reboot our server the deligation of credentials does not work, it simply comes back with a "Access to the path is denied" message. To fi...more >>

Accessing Text file on Network computer using aspx
Posted by Sam Bab at 11/25/2004 1:54:01 PM
I have one workstation which holds some text files and I want to merge these files into one text file and want to print data from merged text file into aspx page. The aspx is using local aspnet account which does not have access to shared network folder name (\\computername\folder). What is the b...more >>



Forms Authentification
Posted by SalamElias at 11/25/2004 8:07:07 AM
Hi, I have an asp .net site which uses Forms authentification. In the Web.config -------------------------- <forms name="CommerceAuth" loginUrl="https://www.mysite.com/golden/login.aspx" protection="All" path="/" /> ----------------------------------------- When I click on any protected pa...more >>

IIS ADSI virtual dir creation problem from web application
Posted by Gabriel R at 11/25/2004 1:59:47 AM
I am trying to create a virtual directory using ADSI, with the following C# code: string Server = <srv>; string ApplicationName = <app>; DirectoryEntry root = new DirectoryEntry("IIS://" + Server + "/W3SVC/1/Root", adminusername, adminuserpass); // look up the virtual dir DirectoryEntry a...more >>

Win32 Application CryptoAPI
Posted by Darren Bennett at 11/24/2004 6:35:01 PM
Hi There, I have been scanning the newsgroups for a solution to my problem and have found that a few others are also experiencing the same problem but none of the solutions provided to them seem to work for me. I have a native Win32 application (written in C++) that needs to encrypt some...more >>

FormsAuthentication Roles Problem
Posted by James McFarland at 11/24/2004 8:35:06 AM
I want to use FormsAuthentication and allow access based on role. I have a /Admin directory on the web app, and want to allow role "admin", but deny all other users. /Web.config: <authorization> <allow users="*" /> <!-- Allow all users --> </authorization> /Admin/Web.co...more >>

How to change user account properties by ASP.NET?
Posted by Evgeny Zoldin at 11/23/2004 10:13:10 PM
Hi ALL. I have the configuration: 1. WinXP PRO with MS IIS 5.0 and installed ASP.NET 2. ASP.NET application A configured to authenticate only users from local Users group. I would like to de the following: Logged on user is able through ASP.NET-Pages to change its own Logon ...more >>

Why check request.isAuthenticated
Posted by jeroenlauwers NO[at]SPAM hotmail.com at 11/23/2004 12:57:44 PM
When using Forms security, aren't all pages protected by default ????...more >>

Forms authentication doesn't work for downloads
Posted by Peter Afonin at 11/23/2004 12:41:20 PM
Hello, I'm using Forms authentication, and it works well. If user is not authenticated, he is routed to the login page. However, this doesn't work for downloads. If I have a file located in the restricted area and put a direct link to it - anyone can download it. Why is this? I expected t...more >>

start process as impersonated account for NETSH DHCP?
Posted by monroe.golden NO[at]SPAM bellsouth.com at 11/23/2004 12:27:40 PM
Am trying to automatically query and update DHCP servers via a web application with VB.NET. Testing with a privileged account, defined thus in web.config: <identity impersonate="true" userName="<domain>\<user>" password="<password>" /> Have also modified machine.config thusly, and restarted...more >>

Roles not working
Posted by Neils Christoffersen at 11/23/2004 8:09:04 AM
I have a quick question about ASP.NET roles. I have the following in in Global.asax: protected void Application_AuthenticateRequest(Object sender, EventArgs e) { Response.Write("Request authenticated: " + (Request.IsAuthenticated ? "yes" : "no") + "<br>"); if (Request.IsAuthenticated...more >>

Domain could not be contacted problem
Posted by Grant at 11/22/2004 8:12:33 PM
Hello, I got some sample code off the MSDN website on how to loop through a group in active directory and list the members. I can run the code from a console app but I cant run it from an ASP solution? I get the folowing message: "The specified domain either does not exist or could not be ...more >>

aspnet and windows integrated authentication, hot to log out?
Posted by jack at 11/22/2004 11:16:35 AM
hi, i'm devoloping an intranet application based on ASP.NET and windows integrated authentication. how can i force the log out of a user to force the IIS to re-ask the credential to the browser? thx ...more >>


DevelopmentNow Blog