How to show a message box

colinmulberry

New Member
I want to show a messagebox if any error occures, or I want to redirect to a new asp-page and send the errormessage to it.<BR><BR>how can I do this??<BR><BR>thanksYou could use<BR>try<BR> Your code here<BR>catch<BR> If it errors do this here, which could be your response.redirect("page.aspx?error=" & err.descirption, false)<BR>endtry
 
Back
Top