Hyperlink in Gridview

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to do some custom formattiing in a Gridview. Some of the characters
that goes into my hyperlink creates problems such '#'.
How do I call a custom format function from inside a gridview? (I used to do
this before in a dataview).
 
Hi Arne,

In .NET 1.1, one could customize a DataGridColumn with a custom formatter,
or even override the GetColumnValueAtRow/SetColumnValueAtRow methods to
modify the shown/edited values on the fly. I guess something like that
should be possible with the GridView control as well.
 
You can call a custom function from inside the gridview. The problem is I
have lost the signature of the function.
--
Arne Garvander
(I program VB.Net for fun and C# to get paid.)


Dmytro Lapshyn said:
Hi Arne,

In .NET 1.1, one could customize a DataGridColumn with a custom formatter,
or even override the GetColumnValueAtRow/SetColumnValueAtRow methods to
modify the shown/edited values on the fly. I guess something like that
should be possible with the GridView control as well.
 
Back
Top