0

私は現在、ウェブサイトに取り組んでいます。私が持っている gridview テーブルのハイパーリンク フィールドをクリックすると、ポップアップが開きます。

<asp:GridView ID="EmployeeList" runat="server"/>

                    <Columns>
                        <asp:HyperLinkField
                            DataNavigateUrlFields="EmpID"
                            HeaderText="EMP ID"
                            Target="_blank"
                            DataNavigateUrlFormatString="google.com"
                            DataTextField="EmpID">
                        </asp:HyperLinkField>
                    </Columns>
</asp:GridView>

これが私のサンプルスクリプトです:

<script type="text/javascript">
    $(function () {
        $('#newuser_pop').modalPopLite({ openButton: '#clicker1'});
    });
</script>

この点でどんな助けでも大歓迎です。ありがとう!

4

1 に答える 1