ListView のボタンをクリックすると Outlook が開きます。これはどう...
<a href="mailto:user@example.com">Send email to user@example.com</a>
私は持っています...
<asp:LinkButton ID="LinkButton1" runat="server">LinkButton</asp:LinkButton>
URLなし。Url は ListView からこの LinkButton を取得し、機能しますが、この後、この LinkButton をアクティブにすることはできません :(
これはどう...
protected void myListView_ItemCommand(object sender, ListViewCommandEventArgs e)
{
if (e.CommandName == "mailto")
{
int index = Convert.ToInt32(e.CommandArgument);
LinkButton lb = (LinkButton)myListView.Items[index].FindControl("Label2");
string mailto = lb.Text;
LinkButton1.PostBackUrl = "mailto:" + mailto;
LinkButton1.ResolveClientUrl("mailto:" + mailto); //Here?????
}
}
これをクリックせずにLinkButtonをアクティブにするにはどうすればよいですか?