0

別の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");
      }
  }    
4

1 に答える 1

0

oオブジェクトとは?以下を使用する必要があります。

function SecurityCheck() 
{
  var answer = confirm("Mark Activity as completed and add new Activity?");
  if (answer) 
  {
      window.location.href = 'CustomerHome.aspx?CustomerId=<%#Eval("CustomerID")%>';
  }
  else 
  {
      alert("No changes will be made");
      return false;
  }
} 

ライブ

于 2011-09-16T10:36:01.627 に答える