The best way to do this is from a normal HTML button. Don't use a
server control because it's not necessary. An ordinary html button
will do:
<input type="button" value="Go Back"
onclick="javascript:history.Back()"/>
If you are building controls dynamically, then you can add this line
before adding the control to the page:
btn.Attributes["onclick"] = "javascript:history.Back()";
In general, if the function doesn't require server code, don't use a
server control.
You may get more relavent and timely responses from the ASP.NET
newsgroup.
Best regards,
Jeffrey Palermo