ASP.NET passing variables from web form to code behind

7.1k Views Asked by At

i'm developing a web application for my company, but i'm coming up against a very simple problem that i don't now how to resolve. I search a lot on internet but i can't find anything. I need to call a code behind method from an asp.net controls passing variables.

This is the method in the code behind (file.aspx.cs):

protected void SayHello(object sender, EventArgs e, String RandomName)
{
  Response.Write(PrintedString);
 }

And this is a asp.net control that call the method through OnLoad event :

<asp:Label ID="Label1" runat="server" Text="Hello" OnLoad="Visibility('ciao mamma')"></asp:Label>

What's wrong with this simple thing? Where i'm wrong?

Please answer to this simple question, it's driving me crazy...Thanks.

3

There are 3 best solutions below

2
On BEST ANSWER

You can pass an argument to the event handler by the following way, but please note it will work for only asp button.

<asp:Button ID="btn" runat="server" Text="Click" OnCommand="btn_Command" CommandArgument="YourArgumentValue"/>

and then in the code behind file you do like this :

protected void btn_Command(object sender, CommandEventArgs e)
{
   Response.Write(e.CommandArgument);
}

It will work for only asp button because they have a onCommand attribute with them.

whenever you will click on the button this code behind file code gets executed.

Hope this helps.

2
On

Is this what you need?

Markup:

<asp:Label ID="lbl" runat="server"><%=SayHello("foo") %></asp:Label>

Code behind:

protected string SayHello(string name)
{
    return "Hello " + name;
}
1
On

You can set the value to label on Page_Load event

You can use below code.

protected void Page_Load(object sender, EventArgs e)

{

   string UserName="test";
   Label1.Text="Hello "+ UserName;

}