MVC project and webforms - asp.net-mvc

I have an MVC project and I want to add a webform to it and integrate it with the MVC theme. The web form always runs in a new page not showing the menu.

Related

Embedding aspx website page in MVC view

I have normal ASP.NET MVC application , in which I want embedd aspx application . I have geomedia portal published on server and want to embed that portal on MVC application

How to add new aspx page in asp.net 5 application

I have created a new ASP.Net 5 application as empty and tried to add the aspx page through add new item. but there is no options to add aspx page rather that we can have all other items like view, controller, class library.
Any suggestion is greatly appreciated.
Thanks in advance.
Files ending in .aspx are part of the Web Forms framework. ASP.NET 5 does not support Web Forms at all, nor will it ever support Web Forms. If you want to create a Web Forms application using Visual Studio 2015, you should choose Web Forms from the ASP.NET 4.6 Templates instead.
ASP.Net 5 is like ASP.Net MVC, you cannot add .aspx page but .cshtml razor view into your Views folder.
ASP.NET 5 support both MVC and webfrom. We have choose web application templet with Web Form, MVC or API.
https://docs.asp.net/en/latest/tutorials/your-first-aspnet-application.html

How can i use the tinymce editor at admin area of asp.net mvc project?

I'm trying using tinymce editor at my asp.net mvc project.
I installed on mvc project with following nuget package.it's okay with that in front-side.But this is not okay in back-end (admin area)
http://www.nuget.org/packages/TinyMCE.MVC.Sample/
How can i implement to asp.net mvc areas ?

Telerik ASP.NET MVC TabStrip

I'm using ASP.NET MVC/Telerik ASP.NET MVC Server side controls.
Created a ASP.NET MVC 4 Web App (Basic)
Followed all the pre-requisites.
Created a tabStrip using this tutorial. (ASP.NET MVC/.cshtml)
The Tab-strip gets rendered but if I click on any of the tabs the content does not show up. But I see the URL change being appended by the tab strip.
On another front, if I need to use Telerik ASP.NET MVC Server side Controls and on the click of the tab, I want to load content using Ajax, then how can I do that?

DevExpress ASP.NET - Want to use Razor without MVC

I test the DevExpress (DX) ASP.NET
I want to make website with DX and Razor view.
When I create a new Web Project. I can choose between :
DXperience v12.2 ASP.NET Web Application
DXperience v12.2 ASP.NET MVC Web Application
In the choice 1, I can't choose the view language, Visual Studio create an ASPX website.
If I choose MVC, in the creation wizard, I can choose Razor or ASPX.
My question is can I create a website using Razor view without the MVC ?
I don't know the MVC pattern and be affraid to learn it now, I don't understand the logic inside it...
Depending on what you are specifically looking to do, you should check out RazorEngine - it lets you render HTML from Razor without alot of the scaffolding that you will have to do in order to use Razor like MVC uses Razor...

Resources