Hi guys,
Lets get to the point.
I have a label in ASPX file. OnLoad of that event i want to call a function in my ASPX.CS file.
ASPX file should pass a parameter lets say "Name"
Can someone show me the syntax on how to write it in CS and ASPX file both
IN ASPX FILE
<asp:label id="label" runat="server" OnLoad="FunctiionCAll(parameter)"><ASp:/label>
IN CS FILE
protected void FUnctionCALL(string abc)
{
abc=abc+"HI";
body body
}
Can someone plz do this ,
thank you
Lets get to the point.
I have a label in ASPX file. OnLoad of that event i want to call a function in my ASPX.CS file.
ASPX file should pass a parameter lets say "Name"
Can someone show me the syntax on how to write it in CS and ASPX file both
IN ASPX FILE
<asp:label id="label" runat="server" OnLoad="FunctiionCAll(parameter)"><ASp:/label>
IN CS FILE
protected void FUnctionCALL(string abc)
{
abc=abc+"HI";
body body
}
Can someone plz do this ,
thank you