击位于网格视图中的链接按钮来打开modelpopupextend

击位于网格视图中的链接按钮来打开modelpopupextend

本文介绍了我想通过单击位于网格视图中的链接按钮来打开modelpopupextender的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想通过单击位于gridview中的链接按钮来打开modelpopupextender.
帮助我

i want to open modelpopupextender on the click of linkbutton situated in gridview.
help me

推荐答案

<asp:GridView ID="GridViewNotes" runat="server" OnRowCommand="GridViewNotes_RowCommand">
<Columns>
<asp:TemplateField HeaderText="Notes">
<ItemTemplate>
<asp:LinkButton ID="lnkbtnNotesTitle" runat="server" CommandName="OpenMPE" CommandArgument='<%# DataBinder.Eval (Container.DataItem, "WhateverYouWantToPass") %>' ></asp:LinkButton>
</ItemTemplate>
<HeaderStyle CssClass="first" Width="48%" />
<ItemStyle HorizontalAlign="Left" Width="48%" />
</asp:TemplateField>
</Columns>
<AlternatingRowStyle CssClass="alt" />
</asp:GridView>


protected void GridViewNotes_RowCommand(object sender, GridViewCommandEventArgs e)
{
try
{
if (e.CommandName == "OpenMPE")
{
ModalPopupViewNotes.Show();
}
}




这篇关于我想通过单击位于网格视图中的链接按钮来打开modelpopupextender的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 22:52