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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:23:59+00:00 2026-05-27T02:23:59+00:00

I am developing an MVC3 application using Visual Studio 2010. I have an aspx

  • 0

I am developing an MVC3 application using Visual Studio 2010.

I have an aspx page that I want to display as a result of a controller action.

I added this action to the home controller.

// GET: /Home/EmployeePortal
        public ActionResult EmployeePortal()
        {
            return View();
        }

This is the aspx page.

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>

<!DOCTYPE html>

<html>
<head runat="server">
    <title>EmployeePortal</title>
</head>
<body>
     <asp:TextBox ID="TextBox1" runat="server" />
    <div>
        This is employee portal
    </div>
</body>
</html>

When I run the application, I am able to navigate to this page by using the url:
http://localhost:3990/Home/EmployeePortal

The problem is – When I have one or more server side control on the aspx page, I get this error on the website.
Sorry, an error occurred while processing your request.

When I comment out the server side control from the page, it displays fine.

The aspx page was added as a view to the application via add new view menu.

I need an aspx page integrated into the MVC application and thats why I am trying to use this aspx page.

I am not sure what I am doing wrong. Please help.

  • 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-27T02:24:00+00:00Added an answer on May 27, 2026 at 2:24 am

    You don’t use server side controls in ASP.net MVC.

    You use the HTML Helper methods:

    <%= Html.TextBox("TextBox1") %>
    

    The server-side controls are not supported in MVC because MVC does not have the concept of ViewState.

    Edit:

    If you need to integrate MVC and WebForms, then you will need to create standalone Web Form pages. These will not be “Views” in your MVC application. You can then create routes to these web form pages by doing the following in your Global.asax:

    public static void RegisterRoutes(RouteCollection routes) {
        routes.MapPageRoute(
            "WebFormProducts",
            "/products/{category}",
            "~/WebForms/Products.aspx"
        );
    }
    

    Now when you go to /products/beverages it will actually go to your Products.aspx page that lives in the WebForms folder.

    You create this Products.aspx file the same as a normal webforms page. The disadvantage to this (if nothing has changed) is you can not share a Master page / Layout page so you will have to duplicate any layout and create a .master to make the pages look similar.

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

Sidebar

Related Questions

we are developing a web application using MVC3 and VS2010. We have some pdf
we are developing a web application using MVC3 and Jquery. we have a situation
I'm developing an ASP MVC3 application and I have some views that are related
I am developing an application using .Net MVC3 that executes some Javascript through a
Developing iphone application using makkit framework. I have got the map view integrated in
I'm developing a MVC3 application which interacts with a db. I'm using a form
Developing an application for Android, i want to record data that will be usefull
I have been developing an application in asp.net mvc3. We have used models to
I'm developing an ASP.NET MVC3 application using the new Razor view engine but I'm
I am developing one new area of a fairly large web application using MVC3

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.