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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T19:27:53+00:00 2026-05-12T19:27:53+00:00

I am trying to create a custom property in a extended control, so that

  • 0

I am trying to create a custom property in a extended control, so that it can be acessed in both ASPX and C#.
The problem wasn’t actually creating it… because i managed to do it, by applying the following code:

public static class Icon
{
    public static string activityMonitor = "activityMonitor.png";
    public static string addBlankPage = "addBlankPage.png";
    public static string addComment = "addComment.png";
    public static string addPageTable = "addPageTable.png";
}


public class myButtonIcon : LinkButton
{
    public myButtonIcon()
    {
    }

    [Bindable(false)]
    [Category("Properties")]
    [DefaultValue("")]
    [Localizable(true)]

    public string IconName { get; set; }
}

However I am sure that this is not the correct way of doing this… for many reasons 🙁

For example:

I can do: btnIcon.IconName = Icon. //and the names will appear here
but they will not appear if I do:

<myControl:myButtonIcon ID="btnTest" runat="server" IconName=" //names do not appear here></myControl:myButtonIcon>

And I am also using two properties instead of using only one… but I tried to combine them in to a single one… but i didn’t sucess… so only IconName2 appears in the ASPX.

So… I would really appreciate if you could explain me this better.
The code you see here was the result of a long research on the internet and a lot of tries. 🙁

  • 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-12T19:27:53+00:00Added an answer on May 12, 2026 at 7:27 pm

    If you want a property with a pre-defined, limited set of values to use in an ASPX control, you need to use an enum:

    public enum Icon
    {
        ActivityMonitor,
        AddBlankPage,
        //...
    }
    

    An enum can’t be backed by string values though (unfortunately?) so you’ll still have to have some other code which determines the true filename to use based on the selected enum value:

    public Icon Icon { get;set; }
    
    //in some method
    switch(this.Icon)
    {
        case Icon.ActivityMonitor:
            this.IconUrl = "activityMonitor.png";
            break;
        case AddBlankPage:
            this.IconUrl = "addBlankPage.png";
            break;
        //...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 276k
  • Answers 276k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer On Mac, I use TextMate as my editor of choice.… May 13, 2026 at 2:48 pm
  • Editorial Team
    Editorial Team added an answer Everyone else has answers with good code explanations. Here is… May 13, 2026 at 2:48 pm
  • Editorial Team
    Editorial Team added an answer You could Try JQuery UI May 13, 2026 at 2:48 pm

Related Questions

I am using ASP.NET MVC 2 Preview 2 and have written a custom HtmlHelper
I am trying to create a custom Output Window for my software that is
I have created a very simple application where I am trying to insert a
I have created my custom field type for listing available users in to Dropdownlist.

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.