Posted on: 6/17/2013 2:01:14 AM | Views : 516

I want to apply the Watermark property where the tool tip property is shown as watermark on the text boxes. I used Jquery that worked in another application but doesnt work here.
My application is a webform inside a master page. The master page MasterPage.master markup view is:
<%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPages_MasterPage" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <asp:ContentPlaceHolder id="head" runat="server"> </asp:ContentPlaceHolder> </head> <body style="height: 30px"> <form id="form1" runat="server"> <div> ...

Go to the complete details ...