display formatted HTML from ASP.NET function?

Netnoobie

Regular
Joined
Feb 6, 2003
Messages
94
Location
Philadelphia
Hello, I'm trying to simply display HTML from a function. I have a stored proc returning a lot of data that needs to be worked on and then spit out as HTML. I'd rather stay away from a Reapeater because of the certain order the data needs to be presented n, and the fact that I need to create most of in in the backend. It seems like a completely simple thing, but I can't seem to get HTML to show up. I can get into a function from the aspx page, but the HTML is not showing up.

I did this many times in classic ASP, but can't in .NET for some reason.

Many thanks in advance.
Bryan
 
D'oh!

You know, I missed the SIMPLEST thing. I wasn't treating the output like that of classic ASP. Meaning I was calling response.write(funct)...which would be the issue.

Man, that's embarassing.

Thanks for the reply though!
Bryan
 
Back
Top