i am using asp.net and c# i want to set image height and width property using c# code , i can do it , but the value will be set as an inline style like this :
<img id="image1" style="height:220px;width:800px;border-width:0px;">
but i want something like this
<img id="image1" width="800" height="220">
i use this code , but it render like css code :(
image1.Width = 800;
image1.Height =220;
is there any idea?