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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T20:06:33+00:00 2026-05-14T20:06:33+00:00

User Control <%@ Control Language=C# Inherits=System.Web.Mvc.ViewUserControl %> <% using (MvcApplication1.Models.EgovtDataContext _model = new MvcApplication1.Models.EgovtDataContext())

  • 0

User Control

<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>

<%
    using (MvcApplication1.Models.EgovtDataContext _model = new MvcApplication1.Models.EgovtDataContext())
    {
%>

    <% foreach(var md in MvcApplication1.Models.) { %>
        <% if (md.ParentId == 0)
           { %>

        <% } %>
    <% } %>
   <%} %>

FeatureRepository Class

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace MvcApplication1.Models
{
    public class FeaturesRepository
    {
        EgovtDataContext db = new EgovtDataContext();

        public IEnumerable<Feature> GetAllFeatures()
        {
            List<Feature> Features = new List<Feature>();
            Feature feature = new Feature();


            var AllParentFeatures = FeaturesByParentId(0);
            foreach (Feature frParentCategory in AllParentFeatures)
            {
                feature.int_FeatureId = frParentCategory.int_FeatureId;

                feature.vcr_FeaturesName = frParentCategory.vcr_FeaturesName;
                feature.int_ParentId = frParentCategory.int_ParentId;
                Features.Add(feature);


                var AllChildFeaturesofthatParent = FeaturesByParentId(frParentCategory.int_FeatureId);
                int AllChildFeaturesofthatParentCount = AllChildFeaturesofthatParent.Count();
                foreach (Feature frChildCategory in AllChildFeaturesofthatParent)
                {
                    feature.int_FeatureId = frParentCategory.int_FeatureId;

                    feature.vcr_FeaturesName = frParentCategory.vcr_FeaturesName;
                    feature.int_ParentId = frParentCategory.int_ParentId;
                    Features.Add(feature);
                }

            }
            return Features;

        }

    }
}

1) is this rightly done public IEnumerable GetAllFeatures() in the method above?And the method correctly written?
2) I want to call the GetAllFeatures method in the control above ? how would i do that?
3) User Controller should be created in shared folder? What is shared folder for?

  • 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-14T20:06:33+00:00Added an answer on May 14, 2026 at 8:06 pm

    Create a controller action

    public ActionResult All()
    {
        return View(new FeaturesRepository().GetAllFeatures());
    }
    

    And change your usercontrol declaration

    <%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<IEnumerable<Feature>>" %>
    
    
    <% foreach(var md in Model) 
       { %>
            <% if (md.ParentId == 0)
               { %>
                   //blabla
            <% } %>
    <% } %>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a web user control that contains several other (web user) controls and
I have user control named DateTimeUC which has two textboxes on its markup: <asp:TextBox
I have a user control in a repeater that I need to pass data
I am creating a user control in C# and I am adding my own
I have created a user control to handle adding comments to certain business entities,
I created an Interop user control in VS2005. When the user control is shown
I have a user control that is pretty basic. It contains several TextBox controls,
I have a user control ( gallery.ascx ) and I want to use the
I make a user control and then want to include it on a page
I've created a user control (in vb.net code) that contains two dock panels, one

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.