Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8316793
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T21:26:20+00:00 2026-06-08T21:26:20+00:00

I would like to access a calendar control through c# for when a gridview

  • 0

I would like to access a calendar control through c# for when a gridview row is edited. However, I am unsure of how to access this through C# behind.

I would like to do the following:

cal_SelectionChanged(object sender, EventArgs e)
{
date = cal.SelectedDate

blah blah...
}

However, as the control is in the gridview edit template, I cannot find a way to access this to C#, compared to if the calendar was just an element on a normal asp.net page.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T21:26:22+00:00Added an answer on June 8, 2026 at 9:26 pm

    As you appear to be aware, controls within Template based controls (such as <asp:Repeaters>) cannot be accessed directly as you would a control placed directly into a page / usercontrol / masterpage. It is possible to find it using the “FindControl” on the specific item within the control, but there should be an easier way…

    In this case you should be able to set a SelectionChanged event handler on the calendar control to the function in your code-behind. (This is assuming you’re using the inbuilt Calendar control) Something like…

    <asp:Calendar runat="server" OnSelectionChanged="cal_SelectionChanged"> ... </asp:Calendar>
    

    When an event such as this is called, the object that caused the event (in this case the calendar control) is passed into the function through the sender parameter.

    This means that instead of trying to work out which calendar was clicked, you simply can do this…

    cal_SelectionChanged(object sender, EventArgs e)
    {
      Calendar cal = (Calendar)sender;
      date = cal.SelectedDate;
      blah blah...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to access (clone/push/pull) a private (via ssh) git repository while behind
i would like to access the following variable <?php echo validation_errors(); ?> From my
I would like to access the data within this member function that is static.
I would like to access skyDrive using PHP. I want to retreive list of
I would like to access a MySQL database using PHP. Can someone please explain
I would like to access class variables with for loop, here is my simple
I've got a website hosted on my IIS and I would like to access
I have an IEnumerable object. I would like to access based on index for
I would like to have access to the Seconds_Behind_Master field, (as returned by SHOW
I would like to define access right to Collabnet Subversion Directory with LDAP domain

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.