Posted on: 3/19/2015 12:53:44 PM | Views : 603

iam clicking on userId col in 'gridCustomer' by using linkbutton bound field. so redirecting to 'RegCustUpdateAndDelete.aspx' in new tab so how to maintain current page in stable? mean when Im redirecting to 'RegCustUpdateAndDelete.aspx' page then 'CustomerSearch.aspx' page getting blank page.
<asp:GridView ID="gridCustomer" runat="server" AutoGenerateColumns="False" BackColor="White" BorderColor="White" BorderStyle="Ridge" BorderWidth="2px" CellPadding="3" CellSpacing="1" GridLines="None" onrowcommand="gridCustomer_RowCommand" onrowdatabound="gridCustomer_RowDataBound"> <Columns> <asp:TemplateField HeaderText="#"> <ItemTemplate> <%#Container.DataItemIndex + 1%> </ItemTemplate> <ItemStyle Width="8%" /> </asp:TemplateField> ...

Go to the complete details ...