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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T21:11:17+00:00 2026-05-16T21:11:17+00:00

Hello i am creating a small webpage that give our users an interface to

  • 0

Hello i am creating a small webpage that give our users an interface to search in our database.

This website must supply 2 webservice functions, Search(string searchString) and GetAccountInfoByInitials(string initials)

I would like to use my controllers to do this, but i can not find out how i can get the html out of a ViewResult.

I have tryed the following, but the result.ToString() only give me the string “System.Web.Mvc.ViewResult”

public class SearchService : ISearchService

{

private readonly ServiceHandlerController _controller;
public SearchService()
{
    _controller = new ServiceHandlerController();
}

public string Search(string searchString)
{
    var result = _controller.Search(searchString);
    return result.ToString();
}

public string GetAccountInfoByInitials(string initials)
{
    var result = _controller.Search(initials).ToString();
    return result;
}

}
  • 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-16T21:11:17+00:00Added an answer on May 16, 2026 at 9:11 pm

    This is an answer to a question I posted similar to this one:
    Is there a way to process an MVC view (aspx file) from a non-web application?

    public class AspHost : MarshalByRefObject
    {
        public string _VirtualDir;
        public string _PhysicalDir;
    
        public string ViewToString<T>(string aspx, Dictionary<string, object> viewData, T model)
        {
            StringBuilder sb = new StringBuilder();
            using (StringWriter sw = new StringWriter(sb))
            {
                using (HtmlTextWriter tw = new HtmlTextWriter(sw))
                {
                    var workerRequest = new SimpleWorkerRequest(aspx, "", tw);
                    HttpContext.Current = new HttpContext(workerRequest);
    
                    ViewDataDictionary<T> viewDataDictionary = new ViewDataDictionary<T>(model);
                    foreach (KeyValuePair<string, object> pair in viewData)
                    {
                        viewDataDictionary.Add(pair.Key, pair.Value);
                    }
    
                    object view = BuildManager.CreateInstanceFromVirtualPath(aspx, typeof(object));
    
                    ViewPage viewPage = view as ViewPage;
                    if (viewPage != null)
                    {
                        viewPage.ViewData = viewDataDictionary;
                    }
                    else
                    {
                        ViewUserControl viewUserControl = view as ViewUserControl;
                        if (viewUserControl != null)
                        {
                            viewPage = new ViewPage();
                            viewPage.Controls.Add(viewUserControl);
                        }
                    }
    
                    if (viewPage != null)
                    {
                        HttpContext.Current.Server.Execute(viewPage, tw, true);
    
                        return sb.ToString();
                    }
    
                    throw new InvalidOperationException();
                }
            }
        }
    
        public static AspHost SetupFakeHttpContext(string physicalDir, string virtualDir)
        {
            return (AspHost)ApplicationHost.CreateApplicationHost(
                typeof(AspHost), virtualDir, physicalDir);
        }
    }
    

    Then, to render a file:

    var host = AspHost.SetupFakeHttpContext("Path/To/Your/MvcApplication", "/");
    var viewData = new ViewDataDictionary<SomeModelType>(){ Model = myModel };
    String rendered = host.ViewToString("~/Views/MyView.aspx", new Dictionary<string, object>(viewData), viewData.Model);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hello can anybody solve this please I'm creating the object in the action class
Hello I am working with a simulator that uses rcS scripts to boot, this
Hello guys I'm creating a little website for my Javascript course. I created a
Hello , I am currently working on the student association's website. The student's association
I'm creating a small server using java.nio , but when trying to stress test
I am creating an i386 ELF executable that needs to import a function from
Hello i am creating a J2ME application in which i need to call a
I am creating sample hello world application. The code is below. How can i
I'm creating a hello world spring project on glassfish 2.1. I'm trying to use
is there somewhere a tutorial for creating a hello world sample application with django.

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.