LMCompany
LMCompany

Reputation: 111

how view asp web pages in c# windows application

I am developing an windows application and I need to load some local asp .net web pages.
how could I do this ?actually I need a local server application that works with my application then i can run asp .net web pages in my windows application.
tanks for your help
can I use asp .net development server as a component to work with my application?

Upvotes: 0

Views: 438

Answers (1)

Murph
Murph

Reputation: 10190

IIS Express is a standalone instance of IIS that can be deployed to users (there's a .MSI).

IIS Express is, according to the linked page, a wrapper round "hostable web core" - which sounds like it might be an even better match to your needs - but I've not investigated that at all so can't comment on what's involved in using it.


As an aside, I'd have to agree that its a slightly strange requirement - you might want to clarify that.

Upvotes: 2

Related Questions