Posts

Showing posts with the label Watermark

Create watermarked Textbox and CalendarExtendar toolkit by using Ajax

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Calendar.aspx.cs" Inherits="Calendar" %> <%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %> <!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>     <style>         /*Textbox Watermark*/               .unwatermarked         {             height: 18px;             width: 148px;         }               .watermarked         {             height: 20px;             width: 150px;   ...

Use of AJax Collapsible Panel Extender tool in Asp.Net with attaractive background and Collapse and Expand images

Image
First of all add a referance for AjaxControlToolKit to your page :: <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %> Add following css inside <head> tag ::   <style type="text/css"> .pnlCSS{ font-weight: bold; cursor: pointer; border: solid 1px #c0c0c0; width:30%; border-radius:10px; background-color:white; } .pnlClick {     font-weight: bold; cursor: pointer; border: solid 1px #c0c0c0; width:30%; border-radius:10px; background-color:Gray; } .Water {     font-weight:lighter;     font-style:italic;     color:Gray;     width:220px;     border-round:5px;   } </style> Add two panel inside your <body> tag and Attach AjaxControlToolKit control and drag and drop the CollapsiblePanelExtender like below::    <asp:Panel ID="pnlClick" runat="server" CssClass="pnlClick"> <div style="width:100%; h...
go to top image