dot net
Can any tell me how to bring the output using label-.step by step
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Amitesh VermaPosted Aug 3, 2015, 7:08 AM
Upendra Pratap ShahiPosted Aug 3, 2015, 6:48 AM
Step 1 : Insert a label control on your page
<asp:Label ID="lblMessage" runat="server" Text="Label">asp:Label>
Step 2 : Take a button control on your page
<asp:button id="btnInput" Text="GetMessage" runat="server" OnClick="Submit_Click" />
Step 3 : On button click code-..
protected void Submit_Click(object sender, EventArgs e)
{
}
Rajeesh MenothPosted Aug 3, 2015, 5:40 AM
Syed ShanuPosted Aug 3, 2015, 5:06 AM