0
他のaspxファイルへのリンクを確認した後、javascriptが必要ですが、どういうわけかブラウザをURLに誘導しません。ここで私はASP/Javascript onClientClick SecurityCheck()
<asp:ImageButton ID="Donebtn" runat="server" ImageUrl="~/images/done.jpg" ToolTip="Done. Add new activity" CommandName="Done" CommandArgument='<%#Eval("ActivityID") %>' OnClientClick="return SecurityCheck();" />
javascriptの
function SecurityCheck()
{
return window("Mark Activity as completed and add new Activity?");
if (o == true)
{
window.location.href = 'CustomerHome.aspx?CustomerId=<%#Eval("CustomerID")%>';
}
else
{
return window("No changes will be made");
}
}
おかげで、それはまだリンクにリダイレクトdoesntの:あなたは、次を使用する必要があります。私はそれがリンクの形式を理解していないと思いますか? – gsharpp
実際には、私はリンクをhttp://www.google.comに置き換えただけです。 hmm – gsharpp
'window.location =" http://www.google.com/ ";' – Samich