Click here to Skip to main content
15,917,709 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Web site troubleshooting check list? Pin
Jasmine250122-Feb-08 11:10
Jasmine250122-Feb-08 11:10 
AnswerRe: Web site troubleshooting check list? Pin
Expert Coming22-Feb-08 14:47
Expert Coming22-Feb-08 14:47 
GeneralRe: Web site troubleshooting check list? Pin
Jasmine250125-Feb-08 5:15
Jasmine250125-Feb-08 5:15 
Generalonclinetcancel for ajax control Pin
eyeseetee22-Feb-08 4:45
eyeseetee22-Feb-08 4:45 
GeneralSimple ASP.NET Question (Visual WebDeveloper C#) Pin
Gjsonke22-Feb-08 2:46
Gjsonke22-Feb-08 2:46 
GeneralRe: Simple ASP.NET Question (Visual WebDeveloper C#) Pin
Abhijit Jana22-Feb-08 3:27
professionalAbhijit Jana22-Feb-08 3:27 
GeneralRe: Simple ASP.NET Question (Visual WebDeveloper C#) Pin
Gjsonke22-Feb-08 3:49
Gjsonke22-Feb-08 3:49 
GeneralRe: Simple ASP.NET Question (Visual WebDeveloper C#) Pin
Paddy Boyd22-Feb-08 5:53
Paddy Boyd22-Feb-08 5:53 
GeneralRe: Simple ASP.NET Question (Visual WebDeveloper C#) Pin
www.Developerof.NET22-Feb-08 20:59
www.Developerof.NET22-Feb-08 20:59 
GeneralHTTPS not working : secure child website easily accessible (with http) from IE, when it is secured with SSL Pin
Rahul Joshi22-Feb-08 2:03
Rahul Joshi22-Feb-08 2:03 
QuestionInhertied user control Pin
danasegaranea22-Feb-08 1:55
danasegaranea22-Feb-08 1:55 
GeneralRe: Inhertied user control Pin
Mark J. Miller22-Feb-08 5:26
Mark J. Miller22-Feb-08 5:26 
GeneralRe: Inhertied user control Pin
Jasmine250122-Feb-08 5:33
Jasmine250122-Feb-08 5:33 
GeneralRe: Inhertied user control Pin
Expert Coming22-Feb-08 14:49
Expert Coming22-Feb-08 14:49 
GeneralWant to learn ASP.NET AJAX Pin
Syed Ali Raza22-Feb-08 1:55
Syed Ali Raza22-Feb-08 1:55 
GeneralRe: Want to learn ASP.NET AJAX Pin
wEb GuRu...22-Feb-08 2:33
wEb GuRu...22-Feb-08 2:33 
GeneralRe: Want to learn ASP.NET AJAX Pin
Not Active22-Feb-08 2:34
mentorNot Active22-Feb-08 2:34 
GeneralRuntime Error Pin
pavya_Cool22-Feb-08 1:51
pavya_Cool22-Feb-08 1:51 
GeneralRe: Runtime Error Pin
www.Developerof.NET22-Feb-08 2:05
www.Developerof.NET22-Feb-08 2:05 
GeneralRe: Runtime Error Pin
Paddy Boyd22-Feb-08 5:55
Paddy Boyd22-Feb-08 5:55 
GeneralRe: Runtime Error Pin
pavya_Cool24-Feb-08 20:08
pavya_Cool24-Feb-08 20:08 
GeneralProblem in setting focus Pin
Dev Motiramani22-Feb-08 1:14
Dev Motiramani22-Feb-08 1:14 
GeneralAsp.net help. Pin
MrSalman21-Feb-08 23:42
MrSalman21-Feb-08 23:42 
I have set a combo box and some text box to display data. The combo box display the user name. one selecting a user name all its detail about the user should be displayed in respective text box. i have written the code like this
protected void cuname_SelectedIndexChanged(object sender, EventArgs e)
{
//SqlDataSource1.Select();
SqlConnection con = new SqlConnection("Data Source=ORG-99DBE221248;Initial Catalog=pubs;Integrated Security=True");
String sName = "select * from feedback where uname = '" + cuname.SelectedValue + "'";
SqlCommand cmd = new SqlCommand(sName,con);
con.Open();
SqlDataReader dr = cmd.ExecuteReader();
if(dr.HasRows == true)
{
dr.Read();

cuname.Text = dr["uname"].ToString();
email.Text = dr["email"].ToString();
sites.Text = dr["site"].ToString() ;
pro.Text= dr["pro"].ToString();
cm.Text = dr["cm"].ToString() ;
qa.Text = dr["aq"].ToString();
sug.Text = dr["Sug"].ToString() ;
Qlike.Text = dr["Qlike"].ToString() ;
dislike.Text = dr["dislike"].ToString() ;

}
i have configure the combox box by the sqldata source control. i can view the name . but if select the name i can not view the respective data.. what i am missing plz help
GeneralRe: Asp.net help. Pin
Christian Graus21-Feb-08 23:44
protectorChristian Graus21-Feb-08 23:44 
GeneralFor a site with millions of users what architecture should be best in asp.net Pin
Rizwan Bashir21-Feb-08 23:26
Rizwan Bashir21-Feb-08 23:26 

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.