SubSonic 3 and WebApplication Installation - subsonic3

Will SubSonic work in Visual Web Developer 2008 Express Edition, and if it works what is the installation steps.

You will need to be way more specific!
A good starting point is the subsonic examples - http://www.subsonicproject.com/

Related

Missing web template under visual C# in newly installed Visual Studio 2017

I'm specifically looking for asp.net MVC 4/5 template under Visual C#. Already installed .NET framework component but still not seeing the web template as I see before in my VS 2013. Please help.
In Visual Studio Installer - Workloads tab, under Web & Cloud, select ASP.NET and web development. You can now add the usual ASP.NET Web Application (.NET Framework).
image

Can we run MVC4 application in Sitecore CMS 7.2 rev.140526 or does it require MVC5?

I have installed visual studio 2012(supporting MVC4 and .NET 4.5) and Sitecore CMS 7.2 rev.140526. I am able to run the Sitecore using admin user and launch the website too.
I was going through this tutorial on MVC integration with Sitecore which creates an MVC application in visual studio and then integrates in the Sitecore CMS site. When I followed the same steps I got error. The MVC version used in this tutorial is MVC3 and the Sitecore version is 7.1.
I have tried the same in my machine but got the error Could not load file or assembly 'System.Web.Mvc, Version=5.1.0.0. From the error I understand that it is looking for MVC5 but in machine I have only MVC4.
Is there any way to resolve this?
First of all, is Sitecore 7.2 is compiled in MVC4 or MVC5?
Here is the Sitecore compatibility table:
https://kb.sitecore.net/articles/087164
It clearly states that Sitecore 7.1 is compatible with MVC 4 but newer versions of Sitecore (7.2 and 7.5) do not support MVC 4 and they require ASP.NET MVC 5.1

Silverlight business application: windows authentication using IIS express not working

When using IIS Express and Windows Authentiction with Silverlight 5 (using silverlight business application template in VS 2012), the status bar is stuck at "authenticating..."
Switching back to the Visual Studio Developer Server, Windows Authentication works.
Please assist.
Solved the issue by applying below.
Need to update extra configurations (at IIS express level), in addition to Visual studio settings.
Go to MyDocuments\IISExpress\config\applicationhost
Search for windowsAuthentication
Updates:
3.1 Under sectionGroup name="authentication" and section name="windowsAuthentication", update overrideModeDefault to "Allow". Default is "Deny"
3.2 Under authentication >> windowsAuthentication, update enabled="true". Default is false.
Save and close
All projects, using Windows authentication and running under IIS express, will start running smoothly.

I got following error When i open SiteCore website in Visual Studio 4.0

I got the following two errors when I open Sitecore 6.3 website in Visual Studio 4.0:
Error 1 The virtual path
'/sitecore/shell/Applications/Analytics/ReportRunner/DateSelector.ascx'
maps to another application, which is not allowed.
Error 2 Unknown
server tag 'ds:DateSelector'.
I simply install Sitecore 6.3 (website save into c:/inetpub/wwwroot/sitecoresite/website). When I open this site in Visual Studio 4.0, it shows error.
Can any body tell to me how can I open this or what mistake did I make?
As far as I understand your question, you get the error when you browse the newly installed Sitecore website, which is set up to run under ASP.NET 4.0 application pool. If that's the case, then I should inform you that it is supported to run Sitecore under ASP.NET 4.0 application pools starting from version 6.4.0.
So, you have two options here:
setup your application pool to use ASP.NET 2.0 (make sure .NET 2.0 is installed)
upgrade a Sitecore instance to the 6.4.0+ (which might not be acceptable)
Hope this helps.
I'm not sure if you are having issues because of the way you are opening the project, there are a few issues if you open it as a File-System website project you will want to create a Web Application Project and go from there.
You can look at this blog post :
Simplify Sitecore Visual Studio Project Creation (or the previous version) for information on how to setup a Visual Studio Project correctly for Sitecore.
I actually think this might just be as simple as a missing tilde. So rather having
/sitecore/shell/Applications/Analytics/ReportRunner/DateSelector.ascx
you should have
~/sitecore/shell/Applications/Analytics/ReportRunner/DateSelector.ascx

How can I create a .NET 4.0 web service project in Visual Studio 2010 Pro?

The Web Services template isn't in the .NET 4.0 projects list--only .NET 3.5, but my service needs to depend on a .NET 4.0 assembly with my model/database functions. That assembly depends on 4.0, because of the data provider required (dotConnect for MySQL)
The web service will need a reference to this business logic assembly so it can pass its arguments to said assembly and blindly return. But, can I run the web services project in a .NET 4.0 application pool without any problems with the data provider?
I have Visual Studio 2010 Professional, not Ultimate (which I've read has the template)--is there any way around this?
In 4.0 you have the WCF framework. Try this one.
See this related article: Asp.Net Web Service Application missing in Visual Studio 2010