function redirectToView() { redirectPage = "myorderpage.aspx?mode=0&mtf=False&orderno=" + orderNo; window.location = redirectPage; return false; }
<asp:ImageButton ID="btnViewOrder" runat="server" ImageUrl="~/images/vieworderdetail.gif" ToolTip="View Order Detail" Visible="True" OnClientClick="return redirectToView();">
function redirectToView() { redirectPage = "/myorderpage.aspx?mode=0&mtf=False&orderno=" + orderNo; window.location = redirectPage; return false; }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)