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 610529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:41:07+00:00 2026-05-13T17:41:07+00:00

Currently I’m working on a extensive form, which I’d like to organise by grouping

  • 0

Currently I’m working on a extensive form, which I’d like to organise by grouping input fields in groupbox-like panels. These panels have an header, a minimize and pin icon. Also inner controls should be able to perform two-way binding to the FormViews datasource.

I can’t find any builtin asp.net control that does the job. What is the best way to accomplish this feature request? Any examples available on this (can’t find a decent one)?

Many 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-05-13T17:41:07+00:00Added an answer on May 13, 2026 at 5:41 pm

    Tuturials are interesting, but didn’t realy need templated controls at the moment, neither databound controls. Only controls in the controlcollection should be able to do so, but apparently they’re able by default.

    Found out multiple ways to accomplish. One to extend the default Panel control, the other one to extend from WebControl as shown below. Works as intended.

    [DefaultProperty("HeaderText")]
    [ToolboxData(@"<{0}:FormGroupBox runat=""server"" HeaderText=""Title""></{0}:FormGroupBox>")]
    [PersistChildren(true), ParseChildren(false, "Controls")]
    public class FormGroupBox : WebControl
    {
        [Bindable(true)]
        [Category("Appearance")]
        [DefaultValue("")]
        [Localizable(true)]
        public string HeaderText
        {
            get
            {
                String s = (String) ViewState["HeaderText"];
                return ((s == null) ? "[" + this.ID + "]" : s);
            }
    
            set
            {
                ViewState["HeaderText"] = value;
            }
        }
    
        protected override void RenderContents(HtmlTextWriter output)
        {
            output.Write(string.Format("<strong>{0}</strong>", this.HeaderText));
            output.Write(@"<hr />");
    
            base.RenderContents(output);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

currently I have following code: home.php <form name='myformname' id='myformid'> <input type='text' name='mytext1' value='abc'> <input
Currently I have a web service, which loads up any plugins located within its
Currently, Tapping on the same Tab (in which user is working), The App moves
Currently i am working on 1 site, its requirement is that, i have to
Currently I have a simple setup where I maintain a list of bools corresponding
Currently, working with Denali RC0 and unable to add BI Time Intelligence to the
Currently, I'm developing an application for Android OS. I would like to know the
Currently i m working on a project where there are users with four roles
Currently I'm working on this page (look at Figure1) I need to make shadow
Currently, I have: <html> <div class=yes1><span><img src=img></span></div> </html> <script> var x = ='yes1' var

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.