Click here to Skip to main content
15,911,531 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Time Pin
_AK_28-Sep-06 0:07
_AK_28-Sep-06 0:07 
GeneralRe: Time Pin
kirthikirthi28-Sep-06 1:10
kirthikirthi28-Sep-06 1:10 
QuestionHow to create Rows dynamically in DataGrid Pin
Ph@ntom27-Sep-06 21:14
Ph@ntom27-Sep-06 21:14 
AnswerRe: How to create Rows dynamically in DataGrid Pin
amaneet27-Sep-06 22:19
amaneet27-Sep-06 22:19 
QuestionAsp.net 2.0 -> Active directory Pin
navionic27-Sep-06 21:08
navionic27-Sep-06 21:08 
QuestionHow to create a custom Calendar control in asp.net web application?? Pin
choorakkuttyil27-Sep-06 20:54
choorakkuttyil27-Sep-06 20:54 
AnswerRe: How to create a custom Calendar control in asp.net web application?? Pin
_AK_27-Sep-06 21:00
_AK_27-Sep-06 21:00 
AnswerRe: How to create a custom Calendar control in asp.net web application?? Pin
Kokila.B27-Sep-06 22:44
Kokila.B27-Sep-06 22:44 
I hope this wll help U!

Listing 1: HTML supporting the calendar control.



<%@ Control Language="vb" AutoEventWireup="false"
Codebehind="CalendarControl.ascx.vb"
Inherits="Calendar.CalendarControl"
TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
<%asp:TextBox id="TextBox1" runat="server"><%/asp:TextBox>
<%INPUT type="button" value="..." onclick="OnClick()"><%br>
<%div id="divCalendar" style="DISPLAY: none; POSITION: absolute">
<%asp:Calendar id="Calendar1" runat="server" BorderWidth="2px"
BackColor="White" Width="200px"
ForeColor="Black" Height="180px" Font-Size="8pt"
Font-Names="Verdana" BorderColor="#999999"
BorderStyle="Outset" DayNameFormat="FirstLetter" CellPadding="4">
<%TodayDayStyle ForeColor="Black" BackColor="#CCCCCC">
<%/TodayDayStyle>
<%SelectorStyle BackColor="#CCCCCC"><%/SelectorStyle>
<%NextPrevStyle VerticalAlign="Bottom"><%/NextPrevStyle>
<%DayHeaderStyle Font-Size="7pt" Font-Bold="True"
BackColor="#CCCCCC"><%/DayHeaderStyle>
<%SelectedDayStyle Font-Bold="True" ForeColor="White"
BackColor="#666666"><%/SelectedDayStyle>
<%TitleStyle Font-Bold="True" BorderColor="Black"
BackColor="#999999"><%/TitleStyle>
<%WeekendDayStyle BackColor="#FFFFCC"><%/WeekendDayStyle>
<%OtherMonthDayStyle ForeColor="#808080"><%/OtherMonthDayStyle>
<%/asp:Calendar>
<%/div>
<%script>
function OnClick()
{
if( divCalendar.style.display == "none")
divCalendar.style.display = "";
else
divCalendar.style.display = "none";
}
<%/script>


Listing 2: The code-behind implementing the SelectionChanged event.

Private Sub Calendar1_SelectionChanged(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Calendar1.SelectionChanged

TextBox1.Text = Calendar1.SelectedDate.ToShortDateString()
Dim div As System.Web.UI.Control = Page.FindControl("divCalendar")

If TypeOf div Is HtmlGenericControl Then
CType(div, HtmlGenericControl).Style.Add("display", "none")
End If
End Sub
Questionhow to remove javascript:_dopostback() Pin
max_dev2006@yahoo.com27-Sep-06 20:27
max_dev2006@yahoo.com27-Sep-06 20:27 
AnswerRe: how to remove javascript:_dopostback() Pin
M LN Rao27-Sep-06 23:15
M LN Rao27-Sep-06 23:15 
QuestionData Grid Events Pin
fasih198127-Sep-06 20:18
fasih198127-Sep-06 20:18 
AnswerRe: Data Grid Events Pin
_AK_27-Sep-06 20:20
_AK_27-Sep-06 20:20 
QuestionDoes anyone know how to display data like this Pin
Meax27-Sep-06 20:09
Meax27-Sep-06 20:09 
AnswerRe: Does anyone know how to display data like this Pin
_AK_27-Sep-06 20:14
_AK_27-Sep-06 20:14 
GeneralRe: Does anyone know how to display data like this Pin
Meax27-Sep-06 20:58
Meax27-Sep-06 20:58 
GeneralRe: Does anyone know how to display data like this Pin
_AK_27-Sep-06 20:59
_AK_27-Sep-06 20:59 
GeneralRe: Does anyone know how to display data like this Pin
Meax27-Sep-06 21:11
Meax27-Sep-06 21:11 
GeneralRe: Does anyone know how to display data like this Pin
_AK_27-Sep-06 21:14
_AK_27-Sep-06 21:14 
GeneralRe: Does anyone know how to display data like this Pin
Meax27-Sep-06 21:21
Meax27-Sep-06 21:21 
GeneralRe: Does anyone know how to display data like this Pin
_AK_27-Sep-06 21:25
_AK_27-Sep-06 21:25 
GeneralRe: Does anyone know how to display data like this Pin
Meax27-Sep-06 21:36
Meax27-Sep-06 21:36 
Questionsorting Pin
ptvce27-Sep-06 20:08
ptvce27-Sep-06 20:08 
AnswerRe: sorting Pin
_AK_27-Sep-06 20:15
_AK_27-Sep-06 20:15 
AnswerRe: sorting Pin
Stephan Pilz27-Sep-06 21:27
Stephan Pilz27-Sep-06 21:27 
Questiontree Pin
ptvce27-Sep-06 19:09
ptvce27-Sep-06 19:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.