Author: warangal | Posted on: 12/22/2009 2:35:59 AM | Views : 1052

Hi
i have a template field inside a gridview
and i want to adjuct image  nearby textbox  means next to txtbox  (like in dropdownlist..)
for this how i write style fr this



<asp:TemplateField HeaderText="Document Path">
<ItemTemplate>
 
  <div>  
<asp:TextBox ID="txtDocPath" SkinID="textBoxLarge" runat="server"
 onkeypress="JavaScript: return false;"   onpaste="return false" oncut="return false" oncopy="return false" >
</asp:TextBox>
<img alt=" Path"  id="img2"   src="~/images/arrow_down_blue.png"  runat="server"    />  
</div>
</ItemTemplate>
</asp:TemplateField>
...

Go to the complete details ...