我想打開Outlook,如果我點擊ListView中的按鈕。如何...如何激活一個LinkButton而不點擊它?
<a href="mailto:[email protected]">Send email to [email protected]</a>
我有一個...
<asp:LinkButton ID="LinkButton1" runat="server">LinkButton</asp:LinkButton>
沒有一個網址。網址得到ListView的這個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的wthout點擊這個不能夠激活這個LinkButton的?
爲什麼使用ItemCommand這個?你不能直接在你的listview中用eval設置mailto:鏈接。 – Erwin