F
Frankie
What would it take to send a page to a browser - and the HTML that comprises
that "page" is 100% generated dynamically?
Specifically, say I have all of the requisite HTML in a string variable. How
do I push that string down to the browser?
My situation is that I have a few .aspx pages containing very little
boilerplate HTML markup and several placeholder controls. At runtime I am
currently injecting the requisite HTML into the placeholder controls. I am
wondering what it would take to eliminate the .aspx file altogether... such
that when the browser requests, for example,
www.DomainName\SomeFolder\File001.aspx I have logic that returns 100% of the
HTML of "File001.aspx" with no such .aspx file having ever existed on disk
on the Web server.
Thanks.
that "page" is 100% generated dynamically?
Specifically, say I have all of the requisite HTML in a string variable. How
do I push that string down to the browser?
My situation is that I have a few .aspx pages containing very little
boilerplate HTML markup and several placeholder controls. At runtime I am
currently injecting the requisite HTML into the placeholder controls. I am
wondering what it would take to eliminate the .aspx file altogether... such
that when the browser requests, for example,
www.DomainName\SomeFolder\File001.aspx I have logic that returns 100% of the
HTML of "File001.aspx" with no such .aspx file having ever existed on disk
on the Web server.
Thanks.