Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
779 views

e.CommandArgument for asp button is not working

I am developing a asp.net application using C#. I created an .aspx page and placed four buttons on different locations on the page. On server side, I want to use just one click event for all four ...
3
votes
3answers
2k views

Why is my CommandArgument Empty?

I have an ASP.Net page, which displays a list of options to the user. When they select from the list, it does a post back and queries a sql server. The results are displayed in a listview below the ...
2
votes
1answer
954 views

Repeater Button CommandArgument is Empty String

Losing my mind with this one. My button gets a commandargument of empty string even though the commandargument gets set. I have verified it gets set to the correct ID in debug mode, but then when I go ...
1
vote
1answer
517 views

linkbutton in a listview with a CommandArgument

I'm using VS 2010, vb.net, .net 4. I have a list view that holds a asp:linkbutton in an asp:tablecell. The problem is that the command argument is not the right value. <asp:LinkButton ID="lbICS" ...
1
vote
1answer
184 views

CommandArgument is empty

I would like to do this : <asp:ImageButton runat="server" ID="addToCartIMG" OnCommand="btnAdd_Click" EnableViewState="false" CommandArgument='<%# itemId1.Value + ";" + Name1.Text %>' ...
1
vote
1answer
482 views

pass a javascript value to a linkbutton's CommandArgument

i need to pass a javascript value named $.galleria.current to a linkbutton's CommandArgument declared so : < asp:linkbutton id="prevBut" runat="server" OnCommand="load_com" ...
1
vote
2answers
628 views

Dynamically created LinkButton won't go into command event

I've asked this before, but sadly I'm still having issues and the issue wasn't resolved. Basically, I'm dynamically creating a LinkButton for each row of a table I am generating, and that button has ...
1
vote
2answers
417 views

asp.net repeater with usercontrol - setting commandargument

I have the following repeater code: <asp:Repeater ID="repMain" runat="server" OnItemCommand="repMain_ItemCommand" EnableViewState="false"> <ItemTemplate> <dmg:testcontrol ...
1
vote
4answers
3k views

Passing multiple argument through CommandArgument of Button in Asp.net

I have a gridview with multiple rows, each has a Update button and I need to pass 2 values when someone clicks on Update button. Aside from packing the arguments inside CommandArgument separated by ...
0
votes
1answer
25 views

pass selected dropdown text in commandArgument on same aspx page?

I want to pass selected dropdown text (ddlTime) in commandArgument of button. Note: Dropdown's Autopostback = false. Code- Aspx - <asp:DropDownList ID="ddlTime" runat="server" ...
0
votes
0answers
46 views

Image button CommandArgument Property

I am going crazy on this simple problem. Here I have <asp:Repeater ID="rptInterface" runat="server" Visible="False"> . . <asp:ImageButton ID="imgBtnPropertyUpdate" ...
0
votes
1answer
99 views

get CommandArgument from ImageButton onClick, VB

I have a series of ImageButtons...when I click on the image, I want to redirect to another page, using the CommandArgument as a uniqueId...How can i get the commandArgument from the onclick event? ...
0
votes
1answer
405 views

How to send multiple command arguments through command button ?(RowCommand Event)

I'm Trying to send accross multiple command arguments when a rowcommand is called: <asp:TemplateField HeaderText="Status"> <ItemTemplate> ...
0
votes
0answers
418 views

LinkButton Commandargument is giving values of the first page in all the other pages (Gridview pagination)

I am using GridView along with custom pagination to show data. In one of the columns where I am showing a link (linkButton) to delete the record, I am passing ID of the record to the backend function. ...
0
votes
3answers
837 views

C# Pass textbox content via CommandArgument in Repeater

<asp:Repeater ID="Cartridges" runat="server" onitemcommand="Cartridges_ItemCommand"> <ItemTemplate> <p class="cartprice"><%#String.Format("{0:C}", ...
0
votes
1answer
138 views

What is wrong in this code?Image Button has to be clicked twice to fire?

protected void ImageButton1_Click(object sender, ImageClickEventArgs e) { HttpCookie cookie = new HttpCookie("CultureInfo"); cookie.Value = ImageButton1.CommandArgument; ...
0
votes
1answer
176 views

raising an event inside a user control that returns CommandEventArgs

hi all i have the following problam: i have a user control which i want to raise an event from to the page that is using that user control (its a button) anyway my problem started when i wanted to ...
0
votes
1answer
116 views

Property 'CommandArgument' is WriteOnly

I have the following line in my code, inside the click event handler of an ImageButton: Protected Sub FinaliseBtn_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles FinaliseBtn.Click, ...
0
votes
2answers
364 views

linkbutton oncommand issue

I am using 2 linkbuttons inside seperate dataitem server controls on my asp.net web page <asp:LinkButton ID="Item1" runat="server" CommandName="first" OnCommand="Item1_Onclick" ...
0
votes
1answer
182 views

asp.net button use javascript return function

I have an asp:button control and am using the "CommandName" and "CommandArgument" parameters in the .aspx file. The CommandName is found with <%# Eval("Name") %>, but the CommandArgument has to be ...
0
votes
2answers
234 views

Access CommandEventArgs within PageLoad

I am using c#.net I have a repeater within a View (MultiView) each row contains a ‘Edit’ button (stored on the CommandArgument is the type ID). <asp:Button ID="buttonClick" ...