Click here to Skip to main content
15,887,485 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Help With Dynamic TextBox Pin
DotNetCoderJunior2-Oct-08 22:39
DotNetCoderJunior2-Oct-08 22:39 
GeneralRe: Help With Dynamic TextBox Pin
acroitoriu2-Oct-08 23:15
acroitoriu2-Oct-08 23:15 
GeneralRe: Help With Dynamic TextBox Pin
DotNetCoderJunior3-Oct-08 0:01
DotNetCoderJunior3-Oct-08 0:01 
AnswerRe: Help With Dynamic TextBox Pin
DotNetCoderJunior3-Oct-08 3:07
DotNetCoderJunior3-Oct-08 3:07 
QuestionReporting Service in Asp.net 2005 Pin
Member 31782792-Oct-08 21:02
Member 31782792-Oct-08 21:02 
AnswerRe: Reporting Service in Asp.net 2005 Pin
Sathesh Sakthivel3-Oct-08 3:03
Sathesh Sakthivel3-Oct-08 3:03 
QuestionDate Time picker [modified] Pin
member272-Oct-08 20:52
member272-Oct-08 20:52 
AnswerRe: Date Time picker Pin
acroitoriu2-Oct-08 21:29
acroitoriu2-Oct-08 21:29 
Hi,

I guess your using the calendar control for ASP.NET...
If so, you can use the OnSelectionChanged event to implement the behavior you want.

<asp:textbox id="TextBox1" runat="server" xmlns:asp="#unknown">

<asp:calendar id="Calendar1" runat="server" onselectionchanged="cal_SelectionChanged" xmlns:asp="#unknown">

and the code for the event is:

protected void cal_SelectionChanged(object sender, EventArgs args)
{
TextBox1.Text = Calendar1.SelectedDate.ToString();
}

Is this what you want?

Andrei
GeneralRe: Date Time picker Pin
Krazy Programmer2-Oct-08 21:40
Krazy Programmer2-Oct-08 21:40 
QuestionResponse.AddHeader() Pin
jhyn2-Oct-08 19:21
jhyn2-Oct-08 19:21 
AnswerRe: Response.AddHeader() Pin
acroitoriu2-Oct-08 21:19
acroitoriu2-Oct-08 21:19 
AnswerRe: Response.AddHeader() [modified] Pin
jhyn2-Oct-08 21:20
jhyn2-Oct-08 21:20 
QuestionExport image to excel Pin
saravanan052-Oct-08 19:09
saravanan052-Oct-08 19:09 
Questionhave a problem with sessions Pin
kheer2-Oct-08 18:33
kheer2-Oct-08 18:33 
AnswerRe: have a problem with sessions Pin
Sneha Bisht2-Oct-08 18:48
Sneha Bisht2-Oct-08 18:48 
GeneralRe: have a problem with sessions Pin
kheer2-Oct-08 18:57
kheer2-Oct-08 18:57 
GeneralRe: have a problem with sessions Pin
N a v a n e e t h2-Oct-08 22:29
N a v a n e e t h2-Oct-08 22:29 
AnswerRe: have a problem with sessions Pin
Brij2-Oct-08 19:02
mentorBrij2-Oct-08 19:02 
GeneralRe: have a problem with sessions Pin
Krazy Programmer2-Oct-08 21:39
Krazy Programmer2-Oct-08 21:39 
GeneralRe: have a problem with sessions Pin
N a v a n e e t h2-Oct-08 22:33
N a v a n e e t h2-Oct-08 22:33 
QuestionTotal Days of Month Pin
Socheat.Net2-Oct-08 17:28
Socheat.Net2-Oct-08 17:28 
AnswerRe: Total Days of Month Pin
Brij2-Oct-08 18:12
mentorBrij2-Oct-08 18:12 
GeneralRe: Total Days of Month Pin
Socheat.Net2-Oct-08 18:36
Socheat.Net2-Oct-08 18:36 
Questionfind checkbox in a nested controls(Panel -&gt; DataList) Pin
Albert832-Oct-08 14:16
Albert832-Oct-08 14:16 
AnswerRe: find checkbox in a nested controls(Panel -&gt; DataList) Pin
AlexeiXX32-Oct-08 16:24
AlexeiXX32-Oct-08 16:24 

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.