Get Index Of Gridview with textbox change event TextBox txt = sender as TextBox; GridViewRow row = txt.NamingContainer as GridViewRow; int rowIndex = row.RowIndex;... Read More
Asp.net
Keep session alive
1 min read
Add page sessionloginalive.aspx in your project: protected void Page_Load(object sender, EventArgs e) { Response.AddHeader(“Refresh”, Convert.ToString((Session.Timeout * 60) – 120)); } Add iframe in master page... Read More
