How to access the HTML control using vb.net and get it’s attribute ?
edit
I mean if I have DIV in tha page, I want to access it using vb.net code
edit 2
if I have in aspx page
<div id="div2">
</div>
I want to access this Div using vb.net code and modify its properties using the code
You need to have
<div id="div2" runat="server">then you can access it in your code behind by using name of the element.