1
Answer

Maang Tika Jewelry

Adwer Drahal

Adwer Drahal

10y
803
1
Mang Tika is a traditional piece of jewelry, which is essentially worn by indian brides as it is a part of the Solah Shringar. I think the spelling Im using makes sense as it is pronounced that way, emphasis on two and the single. Maang Tika Jewelry can be said to be a shortened version of the Shringaar patti/Matha Patti. It is worn by the bride in center parting of the hair. Woman often considered this a symbol of strength and it instantly highlights the glam quotient of your face.

Watch Videohttps://www.youtube.com/watch?v=pDOX_H7h9ww
Answers (1)
0
Mohammed Ismail

Mohammed Ismail

NA 3 0 18y
Hi Kavita:

For your second question removing of previous and next month days:  you can not remove them but you can hide them by setting those days back and forecolors using OtherMonthDayStyle attribute of Calendar.

Eg: <OtherMonthDayStyle ForeColor="Blue" BorderStyle="None" BorderColor="Blue" BackColor="Blue"></OtherMonthDayStyle>


But those cells are selectable in order to suppress this, add this in DayRender event of calendar:

if (e.Day.IsOtherMonth==true)
   {
    e.Cell.BackColor = System.Drawing.Color.Blue;
    e.Cell.ForeColor = System.Drawing.Color.Blue;
    e.Day.IsSelectable = false;
  }


in Page_Load event add this:

Calendar1.Attributes["onMouseDown"] = "JavaScript:Void(0);";

try out this.