Web Output Component

  • Thread starter Thread starter Rafael Veronezi
  • Start date Start date
R

Rafael Veronezi

Hello,
I need to write a .net component, wich will output data in html. Like, I
call a method, and that method must write in the current stream that will be
sent to the client, it's pure html that will be written...
I would like to know what's the best method to do that...
It's a component, because it'll be use on a lot of projects. I think that it
will write it's html output in the entire page, but I'm not sure (still
designing), I was thinking about writing some kind of control, what about?
Thanks,
Rafa
 
I need to write a .net component, wich will output data in html. Like, I
call a method, and that method must write in the current stream that will be
sent to the client, it's pure html that will be written...
I would like to know what's the best method to do that...
It's a component, because it'll be use on a lot of projects. I think that it
will write it's html output in the entire page, but I'm not sure (still
designing), I was thinking about writing some kind of control, what about?

I would suggest writing an ASP.Net Web Custom Control and host it in an ASPX
page.
 
Back
Top