I have an application that displays a header section and a grid view based upon selection in header. This work s fine. The user has a button where they can export the content of the grid view (using the data set) to a table. This works fine as well. When export is completed I need to show the user that the 'export function" has completed. I am using following code:
Code:
Public Overloads Sub ASPNET_MsgBox(ByVal Message As String)
hiddenMsgDiv.InnerHtml = "<script type=""text/javascript"">alert('" & Message.Replace("\", "\\").Replace("'", "\'") & "');</script>"
End Sub
Code:
<div id="hiddenMsgDiv" runat="server" style="display: none">
where I pass the message text. The message box is being displayed Ok but it hides the underlaying grid. When user clicks OK the grid appears again. Any ideas?