Click here to Skip to main content
15,907,392 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to create leave request form.in which big calender have to display and user click on the calender date one pop have to display in which period of date and reason for leave have to enter and it will store on the database.

I need big calender control ....any had link or tutorial for that....
Posted

It's pretty simple

Use CSS for big calendar.Increase the width & height of the calendar control.

Use TextBox.TextChanged Event[^].When date is selected it will raise the TextChanged event and make the popup visible
 
Share this answer
 
Add Caleder Control from tool box set Width,Height......
then write your code in below event. when click to a date > redirect to another page ,here leave we can pass query string also ......

then in which period of date and reason for leave have to enter and it will store on the database

protected void calenderEvents_DayRender(object sender, DayRenderEventArgs e)
{

e.Cell.Text = "<a href="/KB/answers/leave.aspx"?edocid=" + id+ "";

}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900