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

ASP.NET

 
AnswerRe: Grouping Pin
Blue_Boy30-May-09 1:42
Blue_Boy30-May-09 1:42 
GeneralRe: Grouping Pin
Baran M30-May-09 10:21
Baran M30-May-09 10:21 
Questionhow to display the next month Pin
Mathew P V30-May-09 1:22
Mathew P V30-May-09 1:22 
AnswerRe: how to display the next month Pin
Blue_Boy30-May-09 1:40
Blue_Boy30-May-09 1:40 
GeneralRe: how to display the next month Pin
Mathew P V1-Jun-09 20:44
Mathew P V1-Jun-09 20:44 
AnswerRe: how to display the next month Pin
Baran M30-May-09 11:08
Baran M30-May-09 11:08 
Questionhow to select the calendar from another calendar when the date is being selected Pin
Mathew P V30-May-09 0:29
Mathew P V30-May-09 0:29 
AnswerRe: how to selct the control Pin
Blue_Boy30-May-09 0:42
Blue_Boy30-May-09 0:42 
First,enable autopostback of DropDownlist,set
AutoPostBack=true;

On
SelectedIndexChange 
of dropdownlist set visible to controls.

protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
   Calendar1.Visible=true;   
}


and in event
SelectionChanged 
of Calendar1 check which items is selected from DropDownList

private void Calendar1_SelectionChanged(object sender, System.EventArgs e)
{
   if(DropDownList1.Text =="full day")
    {
      Calendar2.Visible=true;
    }
    else
    {
      Calendar2.Visible=false;
    }

} 


Hope this will help you.


I Love T-SQL
"Don't torture yourself,let the life to do it for you."
If my post helps you kindly save my time by voting my post.


GeneralRe: how to selct the control Pin
Mathew P V30-May-09 0:51
Mathew P V30-May-09 0:51 
GeneralRe: how to selct the control Pin
Blue_Boy30-May-09 0:55
Blue_Boy30-May-09 0:55 
Questionhow to expand particular node after button click..... Pin
bhuraasif30-May-09 0:04
bhuraasif30-May-09 0:04 
QuestionShow webpage content as thumbnails Pin
sepel29-May-09 23:14
sepel29-May-09 23:14 
AnswerRe: Show webpage content as thumbnails Pin
Manas Bhardwaj29-May-09 23:22
professionalManas Bhardwaj29-May-09 23:22 
GeneralRe: Show webpage content as thumbnails Pin
sepel29-May-09 23:53
sepel29-May-09 23:53 
Questionon uploading i can't get multiple filepath at server side Pin
pujafaldu29-May-09 23:12
pujafaldu29-May-09 23:12 
Questionconnect sql 2005 database that is another sysem using asp.net Pin
azad yadav29-May-09 22:50
azad yadav29-May-09 22:50 
AnswerRe: connect sql 2005 database that is another sysem using asp.net Pin
specialdreamsin29-May-09 22:58
specialdreamsin29-May-09 22:58 
AnswerRe: connect sql 2005 database that is another sysem using asp.net Pin
Manas Bhardwaj29-May-09 23:23
professionalManas Bhardwaj29-May-09 23:23 
AnswerRe: connect sql 2005 database that is another sysem using asp.net Pin
Mathew P V30-May-09 0:35
Mathew P V30-May-09 0:35 
AnswerRe: connect sql 2005 database that is another sysem using asp.net Pin
K03063-Jun-09 20:46
K03063-Jun-09 20:46 
QuestionAspnet_regsql.exe and generating scripts Pin
NetQuestions29-May-09 22:35
NetQuestions29-May-09 22:35 
QuestionWhy I call flash or video always failed [modified] Pin
jason_mf29-May-09 21:43
jason_mf29-May-09 21:43 
AnswerRe: Why I call flash or video always failed Pin
Manas Bhardwaj29-May-09 23:24
professionalManas Bhardwaj29-May-09 23:24 
GeneralRe: Why I call flash or video always failed Pin
jason_mf30-May-09 0:00
jason_mf30-May-09 0:00 
QuestionN-TIER APPLICATION Pin
Rolando Y. Puno29-May-09 20:47
Rolando Y. Puno29-May-09 20:47 

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.