c#
plse tell in steps how to create a web form in asp.net
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.
Upendra Pratap ShahiPosted Aug 7, 2015, 7:34 AM
Rajeesh MenothPosted Aug 7, 2015, 7:30 AM
viswa aPosted Aug 7, 2015, 7:26 AM
Rajeesh MenothPosted Aug 7, 2015, 7:12 AM
viswa aPosted Aug 7, 2015, 7:06 AM
Rajeesh MenothPosted Aug 7, 2015, 7:03 AM
viswa aPosted Aug 7, 2015, 5:53 AM
Sujeet SumanPosted Aug 7, 2015, 1:50 AM
Upendra Pratap ShahiPosted Aug 4, 2015, 12:44 AM
Rajeesh MenothPosted Aug 3, 2015, 11:56 AM
Amitesh VermaPosted Aug 3, 2015, 8:56 AM
viswa aPosted Aug 3, 2015, 8:55 AM
Raja TPosted Aug 3, 2015, 8:40 AM
Amitesh VermaPosted Aug 3, 2015, 8:12 AM
viswa aPosted Aug 3, 2015, 8:08 AM
Raja TPosted Aug 3, 2015, 7:37 AM
Upendra Pratap ShahiPosted Aug 3, 2015, 7:35 AM
Rajeesh MenothPosted Aug 3, 2015, 7:33 AM
Amitesh VermaPosted Aug 3, 2015, 7:33 AM
viswa aPosted Aug 3, 2015, 7:30 AM
Amitesh VermaPosted Aug 3, 2015, 7:06 AM
Raja TPosted Aug 3, 2015, 6:57 AM
Rajeesh MenothPosted Aug 3, 2015, 6:55 AM
Upendra Pratap ShahiPosted Aug 3, 2015, 6:51 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)
{
}
if helpful kindly accept the answer.viswa aPosted Aug 3, 2015, 6:46 AM
Upendra Pratap ShahiPosted Aug 3, 2015, 6:38 AM
Rajeesh MenothPosted Aug 3, 2015, 6:33 AM