Click here to Skip to main content
15,887,683 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Update Connection String Pin
Vimalsoft(Pty) Ltd2-Mar-09 2:23
professionalVimalsoft(Pty) Ltd2-Mar-09 2:23 
AnswerRe: Update Connection String Pin
Greg Chelstowski2-Mar-09 2:12
Greg Chelstowski2-Mar-09 2:12 
GeneralRe: Update Connection String Pin
Vimalsoft(Pty) Ltd2-Mar-09 2:31
professionalVimalsoft(Pty) Ltd2-Mar-09 2:31 
GeneralRe: Update Connection String Pin
Greg Chelstowski2-Mar-09 2:41
Greg Chelstowski2-Mar-09 2:41 
GeneralRe: Update Connection String Pin
Vimalsoft(Pty) Ltd2-Mar-09 2:47
professionalVimalsoft(Pty) Ltd2-Mar-09 2:47 
GeneralRe: Update Connection String Pin
Greg Chelstowski2-Mar-09 2:53
Greg Chelstowski2-Mar-09 2:53 
GeneralRe: Update Connection String Pin
Vimalsoft(Pty) Ltd2-Mar-09 19:45
professionalVimalsoft(Pty) Ltd2-Mar-09 19:45 
GeneralRe: Update Connection String Pin
Greg Chelstowski2-Mar-09 20:50
Greg Chelstowski2-Mar-09 20:50 
OK, now look.
Obviously, your UpdateConfig() method is not going to physically alter the web.config.
The connection string you want to use is only going to work with just one session, and that's a good thing. Instead of keeping just the database name in your session variable, store the whole connection string.
If you do not want to, change your UpdateConfig() method (and change its name too, cos it's confusing) like so:
private string GetConnectionString(string DB) // where DB is your database name from the session
{

        string connString = ConfigurationManager.ConnectionStrings["string1"].ConnectionString;
        if (Session["ActiveDatabase"] != null)
        {
            return connString.Replace("NEWDT", DB);
        }
        else
        {
            return  connString.Replace("NEWDT", "oDirectv3");
        }

}


Anytime you want to use the connection string, just call this function to return it to you.

var question = (_2b || !(_2b));

GeneralRe: Update Connection String Pin
Vimalsoft(Pty) Ltd4-Mar-09 1:27
professionalVimalsoft(Pty) Ltd4-Mar-09 1:27 
QuestionCan i use my own User Registartion Information Class with ASP .NET Login controls Pin
The One2-Mar-09 1:49
The One2-Mar-09 1:49 
AnswerRe: Can i use my own User Registartion Information Class with ASP .NET Login controls Pin
Abhishek Sur2-Mar-09 3:55
professionalAbhishek Sur2-Mar-09 3:55 
QuestionError occuring while developin with ASP.NET Pin
VeeKeyBee2-Mar-09 1:46
VeeKeyBee2-Mar-09 1:46 
AnswerRe: Error occuring while developin with ASP.NET Pin
Vimalsoft(Pty) Ltd2-Mar-09 1:54
professionalVimalsoft(Pty) Ltd2-Mar-09 1:54 
QuestionImport data from Excel sheet to sql Database-asp.net 2.0 Pin
Member 46590012-Mar-09 1:26
Member 46590012-Mar-09 1:26 
AnswerRe: Import data from Excel sheet to sql Database-asp.net 2.0 Pin
Greg Chelstowski2-Mar-09 1:34
Greg Chelstowski2-Mar-09 1:34 
GeneralRe: Import data from Excel sheet to sql Database-asp.net 2.0 Pin
Member 46590012-Mar-09 18:09
Member 46590012-Mar-09 18:09 
QuestionMethod? Pin
Karthick_gc2-Mar-09 1:05
Karthick_gc2-Mar-09 1:05 
AnswerRe: Method? Pin
Gaurav K Singh2-Mar-09 1:13
Gaurav K Singh2-Mar-09 1:13 
GeneralRe: Method? Pin
Karthick_gc2-Mar-09 1:23
Karthick_gc2-Mar-09 1:23 
GeneralRe: Method? Pin
mr_muskurahat2-Mar-09 1:26
mr_muskurahat2-Mar-09 1:26 
QuestionHow to export data from datagrid to .mdb format Pin
ballameharmurali2-Mar-09 0:21
ballameharmurali2-Mar-09 0:21 
AnswerRe: How to export data from datagrid to .mdb format Pin
Greg Chelstowski2-Mar-09 0:48
Greg Chelstowski2-Mar-09 0:48 
Questionthe state information is invalid for this page and might be corrupted. Pin
NidhiKanu1-Mar-09 23:31
professionalNidhiKanu1-Mar-09 23:31 
AnswerRe: the state information is invalid for this page and might be corrupted. Pin
Vimalsoft(Pty) Ltd1-Mar-09 23:38
professionalVimalsoft(Pty) Ltd1-Mar-09 23:38 
GeneralRe: the state information is invalid for this page and might be corrupted. Pin
NidhiKanu2-Mar-09 0:04
professionalNidhiKanu2-Mar-09 0:04 

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.