Click here to Skip to main content
15,919,500 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: javascript for disable back button Pin
RichardGrimmer5-Jun-09 0:58
RichardGrimmer5-Jun-09 0:58 
QuestionMicrosoft Certification Professional in ASP.NET Pin
K03063-Jun-09 20:08
K03063-Jun-09 20:08 
AnswerRe: Microsoft Certification Professional in ASP.NET Pin
Abhijit Jana3-Jun-09 20:30
professionalAbhijit Jana3-Jun-09 20:30 
GeneralRe: Microsoft Certification Professional in ASP.NET Pin
K03063-Jun-09 20:53
K03063-Jun-09 20:53 
GeneralRe: Microsoft Certification Professional in ASP.NET Pin
Abhijit Jana3-Jun-09 21:04
professionalAbhijit Jana3-Jun-09 21:04 
AnswerRe: Microsoft Certification Professional in ASP.NET Pin
Christian Graus3-Jun-09 20:49
protectorChristian Graus3-Jun-09 20:49 
QuestionASP.NET configuration Pin
ayeleteric3-Jun-09 19:15
ayeleteric3-Jun-09 19:15 
AnswerRe: ASP.NET configuration Pin
Abhijit Jana3-Jun-09 19:26
professionalAbhijit Jana3-Jun-09 19:26 
By Default ASP.NET stored membership information in local database. If you want to store it in remote database you have to add the database using aspnet_regsql.exe command.As You have already add the database, you are now one step ahead. Just do the following entry in web.config.

In the ConnectionStrings section of the web.config add the new ConnectionString for the new Database

<add 
  name="MemberShipConnectionString"
  connectionString="Data Source=ServerName;Initial Catalog=myDB;Integrated Security=True" 
  providerName="System.Data.SqlClient"/>

In the Membership section of the web.config, give the same connection string the you have added for new database

<membership>
  <providers>
    <add 
      connectionStringName="MemberShipConnectionString"
      applicationName="/"
      name="MembershipProvider"
      type="System.Web.Security.SqlMembershipProvider"
      .......
/>
  </providers>
</membership>


Hope this will help you.

cheers,
Abhijit
CodeProject MVP
Web Site:abhijitjana.net

GeneralRe: ASP.NET configuration Pin
ayeleteric3-Jun-09 22:00
ayeleteric3-Jun-09 22:00 
QuestionNeed to open Access application from web application Pin
samerh3-Jun-09 19:13
samerh3-Jun-09 19:13 
AnswerRe: Need to open Access application from web application Pin
Abhijit Jana3-Jun-09 19:29
professionalAbhijit Jana3-Jun-09 19:29 
GeneralRe: Need to open Access application from web application Pin
samerh3-Jun-09 19:47
samerh3-Jun-09 19:47 
GeneralRe: Need to open Access application from web application Pin
Abhijit Jana3-Jun-09 19:52
professionalAbhijit Jana3-Jun-09 19:52 
GeneralRe: Need to open Access application from web application Pin
samerh3-Jun-09 19:57
samerh3-Jun-09 19:57 
GeneralRe: Need to open Access application from web application Pin
Abhijit Jana3-Jun-09 20:05
professionalAbhijit Jana3-Jun-09 20:05 
GeneralRe: Need to open Access application from web application Pin
Abhijit Jana3-Jun-09 20:05
professionalAbhijit Jana3-Jun-09 20:05 
GeneralRe: Need to open Access application from web application Pin
samerh3-Jun-09 21:03
samerh3-Jun-09 21:03 
GeneralRe: Need to open Access application from web application Pin
Christian Graus3-Jun-09 21:15
protectorChristian Graus3-Jun-09 21:15 
GeneralRe: Need to open Access application from web application Pin
Abhijit Jana3-Jun-09 21:20
professionalAbhijit Jana3-Jun-09 21:20 
GeneralRe: Need to open Access application from web application Pin
Christian Graus3-Jun-09 21:27
protectorChristian Graus3-Jun-09 21:27 
AnswerRe: Need to open Access application from web application Pin
Christian Graus3-Jun-09 20:52
protectorChristian Graus3-Jun-09 20:52 
GeneralRe: Need to open Access application from web application Pin
samerh3-Jun-09 21:26
samerh3-Jun-09 21:26 
GeneralRe: Need to open Access application from web application Pin
Abhijit Jana3-Jun-09 21:32
professionalAbhijit Jana3-Jun-09 21:32 
GeneralRe: Need to open Access application from web application Pin
Christian Graus3-Jun-09 21:56
protectorChristian Graus3-Jun-09 21:56 
Questionneed help for this error - Cannot use a leading .. to exit above the top directory. Pin
slSoftware3-Jun-09 17:37
slSoftware3-Jun-09 17:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.