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.
Answer Posted / 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> <a
href="Edit.aspx" runat="server"
ID="A2">Edit</a> <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 |
Post New Answer View All Answers
What is the difference between “Web.config” and “Machine.Config”?
What is difference between cookies and cache?
What are the new web part controls in asp.net 2.0 ?
What does mvc represent in asp.net? : asp.net mvc
What is page fragment caching?
Explain the Session state management options available with ASP.NET?
Explain the different parts that constitute ASP.NET application?
Explain the asp.net page life cycle.
Explain Optimization technique description?
What is the most appropriate lifetime for a database connection/orm context in an asp.net mvc application? : Asp.Net MVC
Is it possible to write code in many languages in one asp.net project?
Explain difference between dataset and datareader?
Which method do you use to kill explicitly a users session?
What is viewstategenerator?
Which is better union or union all?