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

  • SEARCH
  • Home
  • 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 9189793
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T20:18:52+00:00 2026-06-17T20:18:52+00:00

I have written a custom ASP.NET Server Control. When I am rendering the control,

  • 0

I have written a custom ASP.NET Server Control. When I am rendering the control, I check the this.Enabled property to determine if I should add the disabled attribute to my tag (extract of code below). Unless I specifically set the Enabled flag, this value is True regardless of the state of the panel it is in.

output.AddAttribute(HtmlTextWriterAttribute.Type, "text");
if (!this.Enabled)
{
    output.AddAttribute(HtmlTextWriterAttribute.Disabled, "disabled");
}
output.AddAttribute(HtmlTextWriterAttribute.Value, this.DisplayName);
output.RenderBeginTag(HtmlTextWriterTag.Input);
output.RenderEndTag();

Standard server controls like textboxes etc, behave as expected in this scenario and are disabled.

What is the pattern that I must implement to be able to check if the control is actually to be disabled or not? Do you have to check the parent(s) to see if any of them are a Panel and then see if they are enabled? Seems very inefficient if that were the case.

Thanks
Mark

  • 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-17T20:18:53+00:00Added an answer on June 17, 2026 at 8:18 pm

    Just found it.

    Needed to modify the code to:

    output.AddAttribute(HtmlTextWriterAttribute.Type, "text");
    if (!this.IsEnabled)
    {
        output.AddAttribute(HtmlTextWriterAttribute.Disabled, "disabled");
    }
    output.AddAttribute(HtmlTextWriterAttribute.Value, this.DisplayName);
    output.RenderBeginTag(HtmlTextWriterTag.Input);
    output.RenderEndTag();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written an ASP.NET server control. View state works perfectly, but when I'm
I have written a custom server control which (pseudo-code) looks like public class MyCustomCtrl
I've written a custom ASP.net control that descends from LinkButton and overrides the Render()
I have created a custom server control. So far this control renders some html
I am using ASP.NET MVC 2 Preview 2 and have written a custom HtmlHelper
For a user object in my asp.net mvc project, I have written a custom
First, a little background. I have written a custom HTTP compression module for ASP.NET.
I've created a custom server control in ASP.NET to render a standard checkbox and
Assume i have a custom Windows application written in C#. This application has only
We have an app written in ASP.NET MVC 3, that uses @Html.AntiForgeryToken() . We

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.