本文介绍了如何将EditUrl与Hyperlink NavigateUrl结合使用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在使用EditUrl创建自定义字符串并将其传递到GridView列中的超链接时遇到麻烦.如何将使用EditURL创建的自定义字符串添加到NavigateURL?

现在,我正在尝试这样:

I am having trouble with creating custom string with EditUrl and passing it to Hyperlinks in GridView column. How can add custom string created with EditURL to NavigateURL?

For now i am trying like this:

<asp:templatefield headertext="Test" xmlns:asp="#unknown">

                   <itemtemplate>
                       <asp:hyperlink id="hypURL" runat="server" navigateurl="<%# DataBinder.Eval(Container.DataItem,"ItemID", "~/InputScreen/PlayerRelationship.aspx?id={0}") %>">
                       Text=''<%# Bind("Ime") %>''></asp:hyperlink>
                   </itemtemplate>
               </asp:templatefield>

推荐答案


这篇关于如何将EditUrl与Hyperlink NavigateUrl结合使用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-10 20:32