click of a button in master page
-
hi i am using visual web developer 2010 express i am new to it 1)is there any control which looks like a label but acts like a button if so i need to know it(labelbutton if any),where is it 2)i am having a button in master page on the click of which should go to an aspx page so how to call it can anyone help me with it. K.Gayathri
-
hi i am using visual web developer 2010 express i am new to it 1)is there any control which looks like a label but acts like a button if so i need to know it(labelbutton if any),where is it 2)i am having a button in master page on the click of which should go to an aspx page so how to call it can anyone help me with it. K.Gayathri
Perhaps you need to learn a little of ASP.NET here: - http://asp.net-tutorials.com/[^]
MalarGayu wrote:
LinkButton
MalarGayu wrote:
Set the onclick event of the button and access the onclick from code behind: -Design View
- Codebehind
protected void Button1_Click( object sender, EventArgs e )
{
//Do everything you want when a user clicks the button below this line.
} -
hi i am using visual web developer 2010 express i am new to it 1)is there any control which looks like a label but acts like a button if so i need to know it(labelbutton if any),where is it 2)i am having a button in master page on the click of which should go to an aspx page so how to call it can anyone help me with it. K.Gayathri