Password Authentication

shreya verma posted at 12-May-08 03:02

I am doing this in my web conf page. what to do for Password Authentication??? mine not working.

<?xml version="1.0"?>

<!--

Note: As an alternative to hand editing this file you can use the

web admin tool to configure settings for your application. Use

the Website->Asp.Net Configuration option in Visual Studio.

A full list of settings and comments can be found in

machine.config.comments usually located in

\Windows\Microsoft.Net\Framework\v2.x\Config

-->

<configuration>

<appSettings/>

<connectionStrings>

<add name="ConStr" connectionString="Data Source=176.176.10.1632; Initial Catalog=SkillInventoryDB;User ID=a;Password=sa" providerName="System.Data.SqlClient"/>

</connectionStrings>

<system.web>

<!--

Set compilation debug="true" to insert debugging

symbols into the compiled page. Because this

affects performance, set this value to true only

during development.

-->

<compilation debug="true"/>

<!--

The <authentication> section enables configuration

of the security authentication mode used by

ASP.NET to identify an incoming user.

-->

<authentication mode="Forms">

<forms loginUrl="SignIn.aspx"

protection="All"

timeout="30"

name=".ASPXAUTH"

path="/"

requireSSL="false"

slidingExpiration="true"

defaultUrl="SignIn.aspx"

cookieless="UseDeviceProfile"

enableCrossAppRedirects="false" />

</authentication>

<!--

The <customErrors> section enables configuration

of what to do if/when an unhandled error occurs

during the execution of a request. Specifically,

it enables developers to configure html error pages

to be displayed in place of a error stack trace.

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">

<error statusCode="403" redirect="NoAccess.htm" />

<error statusCode="404" redirect="FileNotFound.htm" />

</customErrors>

-->

</system.web>

</configuration>




Click here to sign in and reply. You could earn money via our $500 contest just for being helpful.
  Password Authentication - shreya verma  12-May-08 03:02 3:02:34 AM
      calrity .. - santhosh kapa  12-May-08 03:04 3:04:28 AM
          Look........ - shreya verma  12-May-08 03:17 3:17:04 AM
              check here - santhosh kapa  12-May-08 03:20 3:20:24 AM
              Encryption - npsenthil kumar  12-May-08 03:24 3:24:09 AM
                  Re: Password - Chirag Bhavsar  12-May-08 05:13 5:13:43 AM
      Details - npsenthil kumar  12-May-08 03:20 3:20:52 AM
          Tell... - shreya verma  12-May-08 03:25 3:25:50 AM
              use MD5 encryption... - Vasanthakumar D  12-May-08 04:31 4:31:52 AM
              check these.. - santhosh kapa  12-May-08 04:32 4:32:50 AM
              Try this - npsenthil kumar  12-May-08 04:40 4:40:02 AM
                  See and tell...................... - shreya verma  12-May-08 08:30 8:30:56 AM
                      you have not declared strPassword... - Vasanthakumar D  12-May-08 08:34 8:34:39 AM
                          password is not secured - shreya verma  12-May-08 08:39 8:39:36 AM
                              keep password textbox as is.. - santhosh kapa  12-May-08 09:19 9:19:45 AM
                              set TextMode = "Password" for password textboxes.. - Vasanthakumar D  13-May-08 12:12 12:12:46 AM
          Tell This!!!!!!!! - shreya verma  12-May-08 04:05 4:05:47 AM
              Refer This - npsenthil kumar  12-May-08 04:49 4:49:27 AM
View Posts