i have this button on my C# context:

<button id='Update' OnServerClick='UpdateCart'>Update</button>

now I wanna to pass parameter (num) to (UpdateCart) Method :

protected void UpdateCart(object sender, EventArgs e)
{

    Response.Cookies["Cart"]["Qty(" + num + ")"] = Request.Form["Qty" + num];
}

How I can do that ?

link|improve this question

25% accept rate
feedback

2 Answers

You would use the 'commandArgument' attribute. Here's an example on the MSDN

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.button.commandargument.aspx

link|improve this answer
I Do all that but still cannot access the value (e.CommandArgument) it is null – Hatem Dec 16 '11 at 5:51
feedback

Use ASP.NET Button control instead of <button/> markup that allow you to set value via CommandArgument property and use Command event (do not use Click) to retrieve value of CommandArgument property.

Markup:

 <asp:Button 
              ID="Button1" 
              runat="server" 
              CommandArgument="10" 
              oncommand="Button1_Command" 
              Text="Button" />

Code:

protected void Button1_Command(object sender, CommandEventArgs e)
  {
      string value = e.CommandArgument.ToString();
  }
link|improve this answer
I Do all that but still cannot access the value (e.CommandArgument) it is empty – Hatem Dec 16 '11 at 5:54
@Hatem - Yes! I think there is something missing. You have to update your post and add working code in it. – AVD Dec 16 '11 at 6:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.