Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Studetn id txt_student(textbox) Show (Button)

Label4

i want to display the student name in the label2.

when i click the show button the output will display in the Gridview.

Show Button code as follows;

SQl = "SELECT S.StudetnName,S.Marks, S.QPName,B.Class,B.BthNo,B.Batchdate,B.Attender FROM STUDDET S,Batch B ";
SQl = SQl + " where S.BthId = B.BthId and  s.StudId = '" + txt_Studid.Text.ToString() + "'";
        try
        {
            Dr = SCon.ReadSql(SQl);
            this.GridView1.DataSource = Dr;
            this.GridView1.DataBind();
            Dr.Close();
        }
        catch (Exception e1)
        {
            Label4.Text = e1.Message.ToString();
            return;
        }

Output as follows;

Marks QPName Class BthNo Batchdate Attender
56 REO_2011 REO 37 2011-09-26 NIRANJAN
64 REO_2011 REO 37 2011-09-26 NIRANJAN

the above output is retrieving correctly, but i want to display the student name in the Label4.



for that how can i do, how to display the student name in the Label4.

Please help me.

Regards,
Narasiman P.
Posted
Updated 1-May-13 3:53am
v2

1 solution

You are using a try catch wrong, see this.[^] Label4 will only get displayed if your application throws an exception. Review the article to understand what a try catch is.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900