Datagrid multiple links

J

Joey

Guys,

How can I add multiple parameters to a url in the format
string property of a hyperlinkcolumn in a datagrid

Thanks
 
M

Martin Marinov

You can not
instead of this, use Templatecolumn like this

<asp:TemplateColumn>
<ItemTemplate>
<a href="yourpage.aspx?param1=<%#
DataBinder.Eval(Container.DataItem, "Param1ColumnName")%>&param2==<%#
DataBinder.Eval(Container.DataItem, "Param2ColumnName")%>&param3==<%#
DataBinder.Eval(Container.DataItem, "Param3ColumnName")%>">
</ItemTemplate>
</asp:TemplateColumn>


Regards
Martin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,903
Latest member
orderPeak8CBDGummies

Latest Threads

Top