hi I have an asp button like this

<asp:Button ID="btnBack" OnClientClick='javascript:history.back()' runat="server" Text="back">
</asp:Button>

now the javascript doesn't work to go a history back. but if I make an alert() it works...why

how to solve this?

thank you

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

Try with return false at end:

 <asp:button id="btnBack" runat="server" text="Back" 
OnClientClick="JavaScript: window.history.back(1); return false;"></asp:button>
link|improve this answer
wow! it works! why that? Thank you really much. – snarebold Dec 17 '09 at 14:23
3  
asp:button will do a postback, so return false on your javascript prevents that postback – TStamper Dec 17 '09 at 14:35
seems to make logic:)... thanky you. – snarebold Dec 18 '09 at 13:52
feedback

Try:

parent.history.back();

Or

history.go(-1)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.