hi i have a problem regarding to datagrid in aspdotnet.i
have a datagrid in my application.i have to place
add,edit,delete buttons or links what ever it may be.
now the problem is if i click on add button then the page
has to redirected to another form called "xyz.aspx" and if
i click on edit button the page has to redirected to
another form called "abc.aspx".i am phasing the problem
that if where ever i click on the datagrid the cursor goes
to gv1_SelectedIndexChanged event.please tell me the
solution about the code.

Answers were Sorted based on User's Feedback



hi i have a problem regarding to datagrid in aspdotnet.i have a datagrid in my application.i have ..

Answer / anant anand gupta

You can use the ItemCommand event of the datagrid.
give each command button a 'CommandName'
And 'CommandArgument' if required. CommandArgument you can
assign at the time of ItemDataBound (or RowDataBound) event
of the DataGrid. In the event handler method you can check
for the command name and perform the required task.

Is This Answer Correct ?    2 Yes 0 No

hi i have a problem regarding to datagrid in aspdotnet.i have a datagrid in my application.i have ..

Answer / vipal

For this grid have item bound property. in that you find
the control linkbutton used for add. And register script
for add button click event and call javascript function and
use window.location to redirect to the new page xyz.aspx.

protected void DataGrid_itemBound(Sender s,EventArgs e)
{
LinkButton LnkBtn = (LinkButton)DataGrid.item.FindControl
("LnkAdd");
LnkBtn.Attributes.Add("onclick","OpenNewPage();");
}

---in aspx page use script---
function OpenNewPage()
{
window.location = "xyz.aspx";
}

similarly find link button for edit and follow same process

Is This Answer Correct ?    0 Yes 0 No

hi i have a problem regarding to datagrid in aspdotnet.i have a datagrid in my application.i have ..

Answer / sasireddy

Hey,

There is one more option do that.i.e. Take one
Tepletecolumn,in that u should like this

<asp:TemplateColumn HeaderText="Add/Edit/Delete">

<ItemTemplate>

<font face="verdan" size="2"><a href="Add.aspx"
runat="server" ID="A1">Add</a>&nbsp;&nbsp;<a
href="Edit.aspx" runat="server"
ID="A2">Edit</a>&nbsp;&nbsp;<a href="Delete.aspx"
runat="server" ID="A3">Delete</a>

</font>

</ItemTemplate>

</asp:TemplateColumn>

from this you can do Process.......

Is This Answer Correct ?    0 Yes 0 No

hi i have a problem regarding to datagrid in aspdotnet.i have a datagrid in my application.i have ..

Answer / sudhir kunnure

Just i want to say you that remove server side code for
page redirect when link click instead that write client
side code.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More ASP.NET Interview Questions

What is a Managed Data?

4 Answers   HCL,


How to disable cut, copy and paste in TextBox using jQuery in asp.net?

0 Answers   HCL,


How would you get ASP.NET running in Apache web servers - why would you even do this?

1 Answers   Siebel Systems,


How to use a Master Database in Asp.net?

0 Answers   MCN Solutions,


What does aspnet_regiis -i do ?

1 Answers  






How do pass data from one layer to another layer in N-tier architecture?

2 Answers  


What are the new web part controls in asp.net 2.0 ?

0 Answers  


What is the function of the ViewState property?

0 Answers   MindCracker,


What is latest version of asp.net mvc? : Asp.Net MVC

0 Answers  


What is webresource axd?

0 Answers  


After building the custom control, you test it by adding an ASP.Net web application to the solution. You add a correct <%@ Register %> directive and a proper declaration of the control in the <asp:Form> tag to the Web Form, but when you execute the application you get an error. What is the most likely reason for the problem? a) The custom control must be compiled first. b) The web application must have a reference to the control c) The custom control must be registered with windows first. d) The assembly from the custom control is not in the application?s bin directory.

1 Answers   Syntax Softtech,


I am opening Crystal Report in asp.Net 3.5. Report is opening very well but when I click on Refresh button of Crystal Report then it gives "Missing Parameter values" I also tried property of CR Viewer like crViewer.ReuseParameterValuesOnRefresh = True But it is not working. Plz give me solution.

1 Answers  


Categories