使用asp.net | C#
我希望我的 ImageButton 在单击时打开一个 URL。我终于加载了我的图像并且它点击了但是当我点击它时没有任何反应。这是我到目前为止的代码:
页面
<asp:ImageButton ID="Button1" runat="server" ImageUrl="~/images/button.gif"
onclick="Open_Click"></asp:ImageButton>
aspx.cs 页面
protected void Open_Click(object sender, System.Web.UI.ImageClickEventArgs e)
{
try
{
System.Diagnostics.Process.Start("http://www.website.com");
}
catch { }
}