Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
14k views

Get DataKey values in GridView RowCommand

I have a GridView with an associated DataKey, which is the item ID. How do I retrieve that value inside the RowCommand event? This seems to work, but I don't like the cast to LinkButton (what if some ...
3
votes
3answers
646 views

GridView_RowCommand event fired again on page refresh

I have implement GridView Row Editing feature in my .net application using <asp:CommandField. I clicked on Update button to save the record after editing the row.Now if i refresh the page or press ...
2
votes
2answers
208 views

how to get value of dropdownlist which is inside a gridview on the click of a button?

I have a dropdownlist inside the gridview. Now i want when i click on a button then i can check the value of dropdownlist. I have fired rowcommand event of gridview for it but debugger is not able to ...
2
votes
1answer
2k views

GridView Template - How to Grab Data from Selected Row

<asp:TemplateField> <ItemTemplate> <table width="540" cellpadding="5"> <tr> <td align="left" style="width:60%;"> ...
1
vote
0answers
484 views

ASP.NET GridView RowCommand TextBox empty

Hi I have a grid view with a textbox in each row that im trying to get the value of in the RowCommand event. The below code works fine for all rows expect the first one. The textbox.text value for the ...
1
vote
3answers
2k views

Get data from RowCommand

I have a grid which shows product version's and have a few link buttons like edit, delete, preview etc. On click of edit button i want to get the Product ID and Version ID and redirect to some ...
1
vote
2answers
104 views

Control not reflecting updates

I have a master page that has an update panel on it. One of the pages for the application I'm working on has a custom control with some asp:textboxes on it. That control also has a gridview. When an ...
1
vote
1answer
385 views

RowCommand in GridView raises multiple events on click

A nice good afternoon from Germany, I have a asp:GridView and ButtonFields on the row with a RowCommand event. protected void gridView_RowCommand(object sender, GridViewCommandEventArgs e) { ...
1
vote
0answers
273 views

Gridview Usercontrol in multiview:RowCommand fire only in first view

I have a Gridview inside a usercontrol with a rowcommand event. this usercontrol is loaded dynamically into every view in multiview. when I click on the imagebutton inside the gridview, the ...
1
vote
1answer
3k views

Union two List

i want to union, merge in a List that contains both references, so this is my code, how can i define a list ready for this porpouses ? if (e.CommandName == "AddtoSelected") { ...
0
votes
1answer
41 views

Row command event of gridview is not firing for radiobuttinlist in asp.net

I have rdiobutton list in ItemTemplet field of gridview which is set ispostback=true but still radiobutton list is not firing row_command event for gridview.If I do same for button then it works fine. ...
0
votes
0answers
108 views

Gridview is not firing row_command event on radiobutton list selection

I have radiobutton list in ItemTemplet of gridview. I have set AutoPostback="True" for radio button list but still gridview is not firing row command event. The gridview is inside user control which ...
0
votes
2answers
184 views

How to fire RowCommand for a GridView which is inside a Repeater?

I have a Repeater and inside it a GridView. Now I want to to fire GridView's RowCommand. So can any one tell me how can it be?
0
votes
0answers
213 views

Gridview RowCommand event and EnableViewState in Asp.net web page

I've a question to expose to you. I've a gridview with a textbox in footer and want to insert value in it. The page use masterpage and the viewstate of the page and of contentplaceholder are enabled. ...
0
votes
1answer
680 views

Gridview RowCommand event is fired when I do sorting in gridview

I am trapped in some abnormal problem. When I do sorting in gridview, it fires RowCommand event for that grid instead of sorting event. Below is the HTML code for my grid view. <asp:GridView ...
0
votes
1answer
398 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
2answers
1k views

GridView RowCommand event is not firing on footer template button click

i have GridView.AutoGenerateColumn=true. i have created button on footer on rowdatabound when i click on button row command event is not fired Here is my code: dt = ...
0
votes
2answers
220 views

can't run on RowCommand in Gridview?

I have a gridview in my web page. I a linkbutton column. The commandName of the linkbutton column is "lbtnedit", I want When i click the linkbutton another tab will show detail of Resume by loading ...
0
votes
1answer
557 views

Rowcommand do not fire after clicking button

I have already find out the solution, i just want to post it so this may be useful for some people This is the button that use command <dxwgv:ASPxGridView ID="gdvxUsers" runat="server" ...
0
votes
1answer
413 views

Gridview Rowcommand event firing but show hide controls including Gridview not happening

Here is what I am trying to do in two simple steps: 1) New Row (trNewPost) which has table inside and controls in it to add new post or to update existing post. Default Visible=false; 2) Add ...
0
votes
1answer
78 views

Buggy behavior when redirecting from a RowCommand Event?

One of my columns in the GridView is a CommandField button called "ViewProfile". The event handler, "MyGridView_RowCommand(...) ", redirects to another page "ViewUserProfile.aspx" when the ...
0
votes
0answers
415 views

how to raise events (RowCommand) of a custom gridview control inside a user control?

i created a custom gridview control, and i put this inside a user control. but i do not know how to raise the RowCommand( ) event from my user control. i add a select, edit, delete imagebuttons ...
0
votes
2answers
1k views

In a GridView, how to add multiple commands to one item template?

I stripped this example to make it simple. I have a gridview with a template field. The template field contains two buttons and a label (They must be in the same template field). I want the first ...
0
votes
3answers
2k views

Gridview RowCommand not working

I am having problems trying to get a rowcommand event to fire in a gridview. I followed the code example from MSDNet but I cannot figure out why it is not working. The code is below. Thank you. ...
0
votes
2answers
530 views

Grindview with imagebutton and rowcommand

i know this a frequently asked question, but i cant find the solution. I hope u can help me. i try ti bind imagebutton controls into a gridview. i want to handle the data for the row where the button ...
0
votes
3answers
7k views

ASP.Net GridView - Update Row Command does not revert back to display-only

I have a GridView that is populated from a LinqDataSource. When I update a row, the RowCommand fires and the change is persisted to the database, but the Grid does not refresh. I have it in an ...
0
votes
2answers
3k views

How to I call a javascript function on onrowcommand?

Using asp.net, c# 3.5, vs 2008. I have an aspx gridview called gv1 with a working c# codebehind onrowcommand method which is called when a button on the row is clicked. The button on the gridview ...
0
votes
4answers
2k views

GridView cell not registering any controls on RowCommand event

First off, I realize most of this can also be done using ItemTemplates. If what I'm trying to do simply isn't possible, I will consider using them instead. Here are the basics of my dilemma: I have ...
0
votes
1answer
1k views

Index out of range error when using row.FindControl inside a Asp.net Gridview rowcommand event with Paging Enabled

The following code works great on Page 1 of data inside an Asp.net Gridview control: If e.CommandName = "Void" Then 'Read the status of the ticket currently Dim RowIndex As ...