GridView control adapter issue

Tech-Archive recommends: Fix windows errors by optimizing your registry



Hello. I am trying to leverage adaptive rendering in ASP.NET 3.5. If I
create a super-simple GridView control adapter, it seems to "eat" my base
GridView's caption property/attribute.

------------------------------------------------------------
Public Class GridViewAdapter

Inherits System.Web.UI.WebControls.Adapters.WebControlAdapter

Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter)
MyBase.Render(writer)
End Sub
End Class

End Namespace

------------------------------------------------------------

I figured out how to put the property/attribute back in, but should it not
already be in the writer parameter?

Cordially,
Lee C.


.