Link to home
Start Free TrialLog in
Avatar of Larry Brister
Larry BristerFlag for United States of America

asked on

HtmlTextWriter

Getting an Error Message on code below....
Dim writer As System.Web.UI.HtmlTextWriter
        writer.Write("      <table><tr>")
        writer.Write("        <td width=""25%"" align=""right"" valign=""middle"">Assign PointMan ID:</td>")
        writer.Write("        <td width=""75%"" align=""left"" valign=""middle"">ptmn0")
        writer.Write("        </td>")
        writer.Write("      </tr></table>")

Open in new window

Avatar of Rajar Ahmed
Rajar Ahmed
Flag of India image

how abt this ???  

       
Response.Write("      <table><tr>")
        Response.Write("        <td width=""25%"" align=""right"" valign=""middle"">Assign PointMan ID:</td>")
        Response.Write("        <td width=""75%"" align=""left"" valign=""middle"">ptmn0")
        Response.Write("        </td>")
        Response.Write("      </tr></table>")

Open in new window

Avatar of Larry Brister

ASKER

meeran03:
The code I have above is from an existing project that I've taken over.  i HAVE to use the writer.write on new pages and I can't for the life of me figure out why this isn't working
ASKER CERTIFIED SOLUTION
Avatar of Snarf0001
Snarf0001
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial