GridView hyperlink + editable?

  • Thread starter Thread starter news-server.maine.rr.com
  • Start date Start date
N

news-server.maine.rr.com

Hi,

I have the following bound to a database column and want the URL field to be
editable in the GridView control. When the "Edit" link is clicked the field
remains readOnly.

<asp:HyperLinkField DataTextField="URL" HeaderText="URL"
DataNavigateUrlFields="URL" Target="_blank" />

How can I make a hyperlink field that is bound to data also editable?

Thanks,
F-
 
Convert the field to a TemplateField, and change the label in the
EditItemTemplate into a textbox control.
 
Back
Top