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
Related
I have an existing MVC razor page application. From the home page that is implemented in MVC razer page when I click on login button other pages I need to implement in the VUE JS . How can do that ? How do I put link to the vuejs component.
If you want the login button can link to a vue component, it should be in a Vue Instance, then use vue router to do the redirection.
But if you want to have a single page application, and mixing asp.net mvc views with vue.js is not a good idea. Eventually, you will face many problems. It could be better implement web api services with dotnet core and vue as the client
I have a webforms project and an MVC project but the login is only one that is through the webforms project. In the home page, we gave the user to select the project either MVC or web forms, if the user selects the MVC project then we are redirecting to MVC project but the real problem came at the time of authorization.
I am unable to get the session variable from Web forms to MVC
I am using SQLServer mode and cookies enabled
Please help me in this
Thanks
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.
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
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?