Datagrid multiple links

  • Thread starter Thread starter Joey
  • Start date Start date
J

Joey

Guys,

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

Thanks
 
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

Back
Top