Mega Code Archive

 
Categories / ASP.Net / Asp Control
 

Setting Custom Previous and Next Month Text in the Calendar Control (VB net)

<%@ Page Language=VB Debug=true %> <HTML> <HEAD> <TITLE>Setting Custom Previous and Next Month Text in the Calendar Control</TITLE> </HEAD> <BODY LEFTMARGIN="40"> <form runat="server"> Select a Date <BR><BR> <asp:Calendar      id="Mycal"      runat="server"     cellpadding="3"     cellspacing="3"     nextprevformat="CustomText"     nextmonthtext="Next"     prevmonthtext="Prev" /> </form> </BODY> </HTML>