How can I change the month and Weekdays to Japanese characters for a Calendar Control
Set the Culture= ‘ja-JP’ for the Page. ASP.NET pages support Culture and UICulture attributes to support independent localized pages. Controls on pages can pick the culture of the page and can render culture-dependent content.
How to display multiple dates selected in Calendar Control
Set the SelectionMode property of Calendar Control to DayWeek/ DayWeekMonth. Code for the OnSelectionChanged as follows: VB.NET Dim day As DateTime Dim strval As String For Each day In Calendar1.SelectedDates strval += (day.Date.ToShortDateString() & ‘<br>’) Next Response.Write(strval) C# string strval=” ; foreach (DateTime day in Calendar1.SelectedDates) { strval += (day.Date.ToShortDateString() + ‘<br>’); } Response.Write(strval); }
Is there a way to click an image and let the calendar Control appear
Refer to these articles: Mike’s Popup Calendar Other links Matt Hawley’s Calendar Popup control Peter Blum’s Date Package
How to Programmatically change backgroundcolor of a Calendar Control using Dropdown List
<asp:Calendar id=’Calendar1′ style=’Z-INDEX: 101; LEFT: 40px; POSITION: absolute; TOP: 48px’ runat=’server’></asp:Calendar> <asp:DropDownList id=’DropDownList1′ style=’Z-INDEX: 102; LEFT: 40px; POSITION: absolute; TOP: 24px’ runat=’server’ AutoPostBack=’True’> <asp:ListItem Value=’Red’>Red</asp:ListItem> <asp:ListItem Value=’Green’>Green</asp:ListItem> <asp:ListItem Value=’Blue’>Blue</asp:ListItem> </asp:DropDownList> VB.NET Private Sub DropDownList1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DropDownList1.SelectedIndexChanged Dim colorName As String = DropDownList1.SelectedItem.Text Dim objBackColor As System.Drawing.Color = System.Drawing.Color.FromName(colorName) Calendar1.BackColor = objBackColor End Sub C# private void DropDownList1_SelectedIndexChanged(object sender, System.EventArgs e) { string colorName = DropDownList1.SelectedItem.Text; System.Drawing.Color objBackColor = System.Drawing.Color.FromName(colorName); Calendar1.BackColor = objBackColor; }
How can I access an MS Access database in my ASPX page, if the db is on a remote server?
To access an MS Access database from your ASP.Net page, you must use the UNC format in the path, like: \\Servername\yourpath\your.mdb To fully use the database, grant permissions to the ASPNet user account equal to ’modify’, for the folder/directory where the database exists.