Div displayed - hides after the postback
Hi,
I have a DIV tag which i hide initially.
<div style="display: none;">
When a User clicks on Some text, this DIV slides Down(it becomes visible).
$("div").toggle("slow");
In this DIV, i have placed a Grid View, which list some Names of Employees. On clicking a Name, the details are shown on the iframe which is on same page. I have only 1 web page for this project.
So when User clicks on one Name in GridView, the Emplyee Records are seen in the iframe, that is ok but the DIV hides.
I don't want to hide this DIV after PostBack.
Please can anyone give me a solution for this?
Thank u...!!
|