ciao,
dato che vado di fretta non mi va di tradurmi questo:
codice:
Protected Overrides Sub Render(ByVal writer As System.Web.UI.HtmlTextWriter)
    Dim stringWriter As System.IO.StringWriter = New System.IO.StringWriter
    Dim htmlWriter As HtmlTextWriter = New HtmlTextWriter(stringWriter)
    MyBase.Render(htmlWriter)
    Dim html As String = stringWriter.ToString()
    Dim StartPoint As Integer = html.IndexOf("<input type=""hidden"" name=""__VIEWSTATE""")
    If StartPoint >= 0 Then
      Dim EndPoint As Integer = html.IndexOf("/>", StartPoint) + 2
      Dim ViewStateInput As String = html.Substring(StartPoint, EndPoint - StartPoint)
      html = html.Remove(StartPoint, EndPoint - StartPoint)
      Dim FormEndStart As Integer = html.IndexOf("</form>") - 1
      If FormEndStart >= 0 Then
        html = html.Insert(FormEndStart, ViewStateInput)
      End If
    End If
    writer.Write(html)
  End Sub

qualcuno di voi ha il tool per tradurlo?