Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I want to be able to change the html code at certains points in a aspx page using a code-behind page. For example:
I want to be to do this:
GET HTML CODE FROM CODE-BEHIND PAGE
Any help of in the right direction would be appreciated. Thanks
You can just put: <%=SomeMethod()%> and in your code behind have: public string SomeMethod() { return "this is a text that is dynamically generated"; }