i need a requirement of date range should be of 3 months only i.e,the first month,year are selected automatically the second month should be of 3 months after the first month.
ex:
FROM month is jan is selected. To month should be march.
as that the data range selected in SBI where between 6 months.
I am using a drop down list for selecting the month in .aspx page. I have to get last date of the selected month in .aspx.cs page. (some months have 30 days and some have 31 days)
I am using a drop down list for selecting the month in .aspx page. I have to get last date of the selected month in .aspx.cs page. (some months have 30 days and some have 31 days)
How to extract Month from Date and then displaying the date using that extracted month??
I want to display dates according to Month. I have only "Date" column in database table.
I used below queries but it is not working:
string query= "SELECT EXTRACT(MONTH FROM date) AS Month FROM HolidayTable"; DataSet ds = new DataSet(query) int month = Convert.ToInt32(ds.Tables[0].Rows[0][0]); and string query2 = "select date from HolidayTable where date= '" + month + "' ";
How to display the number of days in textbox when the month is selected in the dropdown list,,,for example if i select the month december ,after selection i want to display 31days in the textbox how ?
I have calenderextender in my asp.net 2.0 application, I need to show only first date and last date of the month in calenderextender... other dates will be visible false...
I need to get the start date and end date of a month so that I will pull up my records for only that month, Right now I am pulling all the records and taking lot of time to load.
I am having FromDate and Todate boxes. By default by loading i need to set the fromDate as first date of current month even though the date may be 10 or 15, i should need to get the 1st date of the month. Then the toDate as current date of current month.
I have requirement that I want to set due date for payment collection for each month. e describe my requirement in brief.In my current application my client wants that He wants set starting and closing date for each month for payment collection . Now I have decide to have two text box for starting data and closing date.
I have a column in report that should display month and year together i.e single column will have both month and year(this is the first column of the table).
I have an ASP.NET GridView in which i want to show dates from selected month and year. Month and year fields are DropDownList and bound to XML data source. Is there any easy to do that or i have to use Code behind to add dates using iteration.
I have a textbox that gets the date from an AJAX Calendar extender. What I need to do is extract the "month," "day," and "year," and put them into seperate string variables to use in my code to do various things based on the month, day or year respectively.
Here is what I have so far:
[code]....
But I don't want the year NOW, I want the year from the textbox.
If InputBookinglength.SelectedValue.ToString = "2" Then Dim paramstring As New StringBuilder If Session("SelectedDates") IsNot Nothing Then Dim newList As List(Of DateTime) = DirectCast(Session("SelectedDates"), List(Of DateTime))
[Code]....
This code works fine when selecting multiple days in one month. But when you switch to display a different month, the previous months selections are lost. how to persist the selections when the visible month changes.