Which Certification is Best for me
Hello Senior Members, i am new programmer , i work on .net technolgy, i want to know which certification is best for me to help my carrer go on right path please guide me , Thanks
Answers (10)
0
Hi,
The issue is that, when postback happens html controls are going back to the initial state. You may need to call the expandcollapsesub() function from backend for them to go to open state again.
-1
- protected void AddRows(object sender, EventArgs e)
- {
- GridViewRow row = (sender as LinkButton).NamingContainer as GridViewRow;
- string orderId = (row.FindControl("txtOrderId") as TextBox).Text.Trim().Replace(",", "");
- string orderDate = (row.FindControl("txtOrderDate") as TextBox).Text.Trim().Replace(",", "");
-
- Response.Redirect(Request.Url.AbsoluteUri);
- }