Progress Bar
-
Hi all, I need to develop a progress bar in my web application which is in asp.net. This progress bar should see on screen while switching to new page of my application. I have master page in which i have created diffrent menues.. like Audit,Manual,Update on click of tht different pages will get disply. so i want to disply progressbar on click of those menus <td id="tdmnuPerfRating" valign="middle" align="center" style="width: 200px; height: 25px; background-image: url(./images/grey_bg.jpg);" onmouseover="javascript:changecolor(this,'on');" onmouseout="javascript:changecolor(this,'off');"> <asp:HyperLink ID="HyperLink3" runat="server" CssClass="CSMenu" Text="Performance Rating" NavigateUrl="~/ViewAudit.aspx" /> </td> <td align="center" valign="middle" style="width: 1px; height: 25px"> <div style="display: inherit;"> <img src="images/line_vertical.jpg" border="0" alt="Line" height="25px" /></div> </td> <td id="tdIssue" valign="middle" align="center" style="width: 200px; height: 25px; background-image: url(./images/grey_bg.jpg);" onmouseover="javascript:changecolor(this,'on');" onmouseout="javascript:changecolor(this,'off');"> <asp:HyperLink ID="HyperLink27" runat="server" CssClass="CSMenu" Text="Issues" NavigateUrl="~/ViewIssues.aspx" /> </td>
-
Hi all, I need to develop a progress bar in my web application which is in asp.net. This progress bar should see on screen while switching to new page of my application. I have master page in which i have created diffrent menues.. like Audit,Manual,Update on click of tht different pages will get disply. so i want to disply progressbar on click of those menus <td id="tdmnuPerfRating" valign="middle" align="center" style="width: 200px; height: 25px; background-image: url(./images/grey_bg.jpg);" onmouseover="javascript:changecolor(this,'on');" onmouseout="javascript:changecolor(this,'off');"> <asp:HyperLink ID="HyperLink3" runat="server" CssClass="CSMenu" Text="Performance Rating" NavigateUrl="~/ViewAudit.aspx" /> </td> <td align="center" valign="middle" style="width: 1px; height: 25px"> <div style="display: inherit;"> <img src="images/line_vertical.jpg" border="0" alt="Line" height="25px" /></div> </td> <td id="tdIssue" valign="middle" align="center" style="width: 200px; height: 25px; background-image: url(./images/grey_bg.jpg);" onmouseover="javascript:changecolor(this,'on');" onmouseout="javascript:changecolor(this,'off');"> <asp:HyperLink ID="HyperLink27" runat="server" CssClass="CSMenu" Text="Issues" NavigateUrl="~/ViewIssues.aspx" /> </td>
Firstly, in the future when posting code snippets please format them using the "code block" menu item. You will not be able to have the progress bar remain while navigating to another page in this manner. Remember the web is stateless so each request is rendered new to the browser, thus closing the current displayed page.
I know the language. I've read a book. - _Madmatt
-
Firstly, in the future when posting code snippets please format them using the "code block" menu item. You will not be able to have the progress bar remain while navigating to another page in this manner. Remember the web is stateless so each request is rendered new to the browser, thus closing the current displayed page.
I know the language. I've read a book. - _Madmatt
thaks for the your reply :)