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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T14:49:23+00:00 2026-06-07T14:49:23+00:00

I have part of an application initialization string below: <Controls> <HtmlElement name=lnkLogIn type=HtmlElement> <AttributeMatchPath

  • 0

I have part of an application initialization string below:

<Controls>
  <HtmlElement name="lnkLogIn" type="HtmlElement">
    <AttributeMatchPath matchtype="equals">
      <href>JavaScript:void(0)</href>
      <id>s_swepi_22</id>
    </AttributeMatchPath>
  </HtmlElement>
  <InputElement name="tbPassword" type="InputElement">
    <AttributeMatchPath matchtype="equals">
      <id>s_swepi_2</id>
    </AttributeMatchPath>
  </InputElement>
  <InputElement name="tbUserID" type="InputElement">
    <AttributeMatchPath matchtype="equals">
      <id>s_swepi_1</id>
    </AttributeMatchPath>
  </InputElement>
</Controls>

What i want to do in the code behind is a function that gets the Inputelement name and id for each control as key value pairs and returns a dictionary object or something similar from which we can extract the key value pair information.

This is basically being done to remove hardcoding of ID values….so a generic solution to get the elementname and id from the init string and store them as key value pairs would be really great….thanks in advance 🙂

PS: Using C#…..

  • 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-07T14:49:26+00:00Added an answer on June 7, 2026 at 2:49 pm

    Ok…Done…. 🙂

    here’s what i did: used system.xml.linq functionalities:

    Here’s the working code:

    using System.Linq;
    using System.Xml.Linq;
    
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        public static void Main ( )
        {
            var xDoc = XElement.Load ( "ApplicationInit.xml" );
            var appSettingsDictionary = (xDoc.Descendants("InputElement")
                .Select ( item => new 
                                 { 
                                     Key = item.Attribute("name").Value,
                                     Value = item.Descendants("id").First().Value 
                                 }
                        )
                    ).ToDictionary ( item => item.Key, item => item.Value );
        }
    }
    

    }

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have a part of an application where, say, 20% of the time it
I have this part of script from my GAE application which uses webapp2, which
I have a regular .NET application. In this case I have a part that's
As part of my application requirements, I have a limit of 30 characters for
I have a UserControl that is part of my application, I am rendering it
I am writing a little application in android which would have a server part
Using linkedin-j , I have the following code in one part of my application
I have web application of which major part is javascript. I request images from
I have a GUI application whose main part is a QPlainTextEdit . It is
I have for the most part successfully embedded firefox/xulrunner into our c# application, but

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.