I have this asp page with lots of HTML tags with inline asp,
i.e
body bgcolor = '<%=bgcolorval%>'
etc.
Whats the easiest way to convert this page to asp.net and have the tag attributes retained?
Printable View
I have this asp page with lots of HTML tags with inline asp,
i.e
body bgcolor = '<%=bgcolorval%>'
etc.
Whats the easiest way to convert this page to asp.net and have the tag attributes retained?
Easiest? Start from scratch, IMEO.
just chnage the file eztension to .aspx
:lol:
You win. :afrog:
Would love to do it from scratch but I just need to change a bit of server-side code on the page and thats all I'm getting paid for
:cool:
What I eventually did was set the form action to an .aspx page and made the method=get.
Then on Page_Load did all the processing.