| Author: deepak 30 Aug 2008 | Member Level: Gold | Rating: Points: 1 |
in wat control u wan to bind the data in tat div tag..
|
| Author: Karthikeyan S 30 Aug 2008 | Member Level: Gold | Rating: Points: 5 |
Hi,
Use '<% //your dynamic page .aspx.vb or .aspx.cs code comes here %>'
where ever in design page you want code like div tag, page title, table data / header cells etc.
in design page:
<div>'<%= mstrKRASortExpression %>' </div>
in code behind page:
private static string mstrAvailableQuarters = "Testing tag content";
in back end code make sure that the variable which is having dynamic database value must be public and so it should not be private or else and it must be declared module level that is out side of any sub-procedure or functions.
|