別のaspxファイルにリンクすることが確認された後、javascriptが必要ですが、どういうわけかブラウザをURLに誘導しません。これが私が得たものです
<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");
}
}