Hello,
I have a page that contain following script:
Quote:
<%
Response.ContentType = "application/x-unknown"
Response.AddHeader "content-disposition","attachment; filename=errors.htm"
%>
<table>
<tr>
<td>Error Description Text..</td>
</tr>
</table>
|
Many of you used this function would know that the above script opens a 'Save As' dialog box. I want browser to redirect to another page after user click 'Save' or 'Cancel' button on dialog box.
Any idea??
Any help??