Click here to Skip to main content
15,879,184 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: editing in gridview in asp.net with c# Pin
Brij7-Feb-10 1:53
mentorBrij7-Feb-10 1:53 
QuestionRetrieving the connection string from web.confi Pin
vempatiprasad6-Feb-10 18:33
vempatiprasad6-Feb-10 18:33 
AnswerRe: Retrieving the connection string from web.confi Pin
MHASSANF7-Feb-10 1:09
MHASSANF7-Feb-10 1:09 
GeneralRe: Retrieving the connection string from web.confi Pin
vempatiprasad9-Feb-10 18:19
vempatiprasad9-Feb-10 18:19 
AnswerRe: Retrieving the connection string from web.confi Pin
Palash Biswas7-Feb-10 17:10
Palash Biswas7-Feb-10 17:10 
GeneralRe: Retrieving the connection string from web.confi Pin
Not Active7-Feb-10 18:27
mentorNot Active7-Feb-10 18:27 
GeneralRe: Retrieving the connection string from web.confi Pin
vempatiprasad10-Feb-10 7:42
vempatiprasad10-Feb-10 7:42 
AnswerRe: Retrieving the connection string from web.confi Pin
Krunal Berawala7-Feb-10 19:03
Krunal Berawala7-Feb-10 19:03 
you can use the following code........in C#.net

either put your connection string in web.config under appsettings/connections string section

using System.Configuration;

public static string ConnectionString
{
get
{
//return ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString.ToString();
return ConfigurationManager.AppSettings["ConnectionString"].ToString();
}
}
GeneralRe: Retrieving the connection string from web.confi Pin
Not Active7-Feb-10 19:24
mentorNot Active7-Feb-10 19:24 
QuestionLinkButton and User Control Error Pin
AndyASPVB6-Feb-10 9:04
AndyASPVB6-Feb-10 9:04 
Questiondebugger does not get attached to a site Pin
sanjubaba6-Feb-10 2:54
sanjubaba6-Feb-10 2:54 
AnswerRe: debugger does not get attached to a site Pin
Abhijit Jana6-Feb-10 3:33
professionalAbhijit Jana6-Feb-10 3:33 
AnswerRe: debugger does not get attached to a site Pin
Abhishek Sur6-Feb-10 8:32
professionalAbhishek Sur6-Feb-10 8:32 
GeneralRe: debugger does not get attached to a site Pin
Hesham Amin7-Feb-10 10:05
Hesham Amin7-Feb-10 10:05 
GeneralRe: debugger does not get attached to a site Pin
Abhishek Sur7-Feb-10 10:13
professionalAbhishek Sur7-Feb-10 10:13 
QuestionCan't see localhost web application on custom web browser Pin
Yosh_5-Feb-10 23:47
professionalYosh_5-Feb-10 23:47 
Questionhow do i create website Pin
hi_everybody5-Feb-10 22:35
hi_everybody5-Feb-10 22:35 
AnswerRe: how do i create website Pin
Abhijit Jana5-Feb-10 22:37
professionalAbhijit Jana5-Feb-10 22:37 
AnswerRe: how do i create website Pin
sashidhar5-Feb-10 23:06
sashidhar5-Feb-10 23:06 
GeneralRe: how do i create website Pin
Abhijit Jana5-Feb-10 23:11
professionalAbhijit Jana5-Feb-10 23:11 
GeneralRe: how do i create website Pin
sashidhar5-Feb-10 23:13
sashidhar5-Feb-10 23:13 
QuestionTwice Login Pin
i gr85-Feb-10 21:31
i gr85-Feb-10 21:31 
AnswerRe: Twice Login Pin
Abhijit Jana5-Feb-10 21:46
professionalAbhijit Jana5-Feb-10 21:46 
GeneralRe: Twice Login Pin
i gr85-Feb-10 22:00
i gr85-Feb-10 22:00 
GeneralRe: Twice Login Pin
Abhijit Jana5-Feb-10 22:33
professionalAbhijit Jana5-Feb-10 22:33 

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.