Tagged Questions

Microsoft WebMatrix consists of a basic IDE (integrated Development Environment) bundled with a simple but powerful SQL database (SQL Server Compact) and a lightweight web server ( IIS Developer Express). Development is in either PHP, C# or VB. The native view engine uses Razor syntax optimized for HTML development. Although the full ASP.Net stack is available, developers can choose "Web Pages" which offer simplified web development.

learn more… | top users | synonyms

135
votes
6answers
23k views

How to import a namespace in Razor View Page?

How to import a namespace in Razor View Page?
11
votes
3answers
866 views

How do you set the content type for a WebMatrix/Razor Response?

I'd like to return some XML instead of HTML in my WebMatrix cshtml file? How do you change the content type header?
10
votes
3answers
5k views

No Entity Data Model (EDMX) Template with Visual Studio 2010 SP1 & ADO.NET Entity Framework 4.1

I'm having a lot of issues with the templates of Visual Studio 2010 SP1 & ADO.NET Entity Framework 4.1 I noticed that other people had these problems, and asked similar questions, but I don't ...
9
votes
7answers
10k views

Developing in Visual Studio 2010 with the new IIS Express web server?

Although this question isn't directly about code it's related to programming and seems better put here than, say, serverfault or superuser. -- I'm a developer with Visual Studio 2010. Microsoft's ...
7
votes
3answers
402 views

should I use WebMatrix to build a real-world website?

I have gone through hundreds of articles and blog posts that saying WebMatrix is just for beginners and such. my question is, why shouldn't I use WebMatrix to create a real-world working website, like ...
7
votes
3answers
1k views

Can we use Razor on an existing ASP.NET 4 website?

Is it possible to use Razor on an existing ASP.NET 4 website?
6
votes
2answers
291 views

Is there a Visual Studio color scheme similar to Webmatrix?

Webmatrix has a clean color scheme. Is there a similar one for Visual Studio?
5
votes
2answers
63 views

How to pass values between two pages using Razor in Webmatrix?

I am new to Razor and Webmatrix.I was trying to pass values using POST method from one page to another page but i am not able pass values. I have googled on it but didn't get any solutions. So can any ...
5
votes
5answers
348 views

Add a column to an IEnumerable in c#

I don't think I can actually add a field (column) to an existing IEnumerable. But what I want is a new IEnumerable that is derived from an existing IEnumerable with a calculated field. The ...
5
votes
2answers
823 views

Saving DateTime with WebMatrix and Razor

I am developing a project that has a DateTime field. In it I'm using jQuery for the user to select the date format 'dd/MM/yyyy' taking into account that the date is not a required field. How do you ...
5
votes
1answer
372 views

How do you reference third party assemblies in WebMatrix?

I have a DLL from a vendor, and I'd like to use it in my .cshtml files. I can't see where you add references to assemblies in Webmatrix though...or am I missing the point completely?
5
votes
3answers
1k views

IIS Express (WebMatrix) open for outside connections

I've already enabled firewall rules for IIS Express (HTTP Traffic In) and IIS Express (HTTPS Traffic In) on ports 80 and 2012 (this one is used in WebMatrix), but I can't connect to the server from my ...
5
votes
1answer
1k views

intellisense with razor and VS 2010

Is there any way to get intellisense with razor in VS 2010, I am working on an application with web matrix and launched VS 2010 from WebMatrix.
4
votes
0answers
174 views

measuring performance ASP.NET Web Pages with Razor Syntax vs. Classic ASP [closed]

Any info on classic ASP in comparison to ASP.NET Web Pages with Razor Syntax? Which can handle more traffic and which is faster? Are there any benchmarking tests between the two? I found this ...
4
votes
2answers
312 views

webmatrix list of keyboard shortcuts

List of keyboard shortcuts supported by Microsoft webmatrix.
4
votes
6answers
724 views

WebMatrix, ASP.NET Razor, IIS Developer Express, SQL Server Compact Edition - What is Microsoft objective behind these new technologies?

Recently Microsoft (via Scottgu) has announced some new technologies (WebMatrix, ASP.NET Razor, IIS Developer Express, SQL Server Compact Edition). I think this is something new direction in which ...
4
votes
3answers
467 views

Is inline coding with razor the only option with webmatrix?

Or is it also compatible with asp.net or asp.net mvc?
3
votes
4answers
123 views

Use Webmatrix Razor to Replace Classic ASP Site

I have been looking at ASP.Net Web Pages and I think it would be a good replacement for some classic asp sites I am working on. There is a lot about them that is similar to how classic asp did ...
3
votes
1answer
148 views

Opening WebMatrix solutions in VS failing when 2 versions of VS installed

Microsoft's WebMatrix development tool has a "Visual Studio" button to launch the VS editor and load it with the site you have open in WebMatrix. Normally it loads VS 2010, since that's the only ...
3
votes
1answer
135 views

I can't see ASP.NET Web Page Administration

I was following Scott Hanselman on Mix11 building the FrontEnd using WebMatrix. http://live.visitmix.com/Keynotes One of the first things he does is use the ASP.NET Web Page Administration link. When ...
3
votes
1answer
564 views

Header Format for WebGrid

I just read: http://www.mikesdotnetting.com/Article/154/Looking-At-The-WebMatrix-WebGrid and see a reference to [Optional, Default Value(null)] string header Header text if you don't want database ...
3
votes
2answers
507 views

Razor Syntax / WebMatrix - C# Question

In Windows Forms I can create a class file called 'Authentication.cs' with the following code: public class Authentication { public string Name; internal bool Authenticate() { ...
3
votes
2answers
708 views

How to debug and/or trace execution flow in WebMatrix?

I am just getting into web development (from a Windows application development background), and WebMatrix seems like a good place to start, due to it's simplicity, and also because it looks like a ...
3
votes
2answers
389 views

View Engines for Web Matrix Web Pages

Microsoft has a new website editing tool: WebMatrix. WebMatrix uses the new Web Pages engine in which Razor is the view engine; Razor is also the new view engine for MVC3. I am attempting to find out ...
3
votes
3answers
622 views

How WebMatrix routing works?

With ASP MVC the routing works with the following code routes.MapRoute("Default", "{controller}/{action}/{id}", new { controller = "Home", action = "Index", id = UrlParameter.Optional }); It ...
3
votes
3answers
924 views

asp.net MVC webmatrix membershipprovider kicking in

after migrating from mvc2 - mvc3 with minor issues ... I encounter the following problem when calling Membership.GetAllUsers it seems that instead of System.Web.Security.SqlMembershipProvider ...
3
votes
2answers
654 views

Tool Choice for WordPress Creation: Visual Studio or Webmatrix?

I would like to build my first Wordpress site as quickly as possible, but I happen to lean towards Microsoft products. I don't plan on touching code/PHP to build my Wordpress site, but I should ...
3
votes
1answer
1k views

Webmatrix, Razor, and Sessions

I'm getting some funky behavior with session variables with Razor .cshtml pages. Essentially on some pages I check to see if a Session variable is set, and if not I set it. I keep getting a null ...
3
votes
3answers
595 views

jQuery post from ASP.NET web page (WebMatrix)

I'm trying to submit form data with jQuery. I'm using ASP.NET WebMatrix. In a .cshtml file I have @{ // other code if(IsPost) { var item = new Item(); item.Title = ...
3
votes
1answer
658 views

Creating and Simple Class and Calling a Method from a cshtml File

Could some one give a simple example of creating a simple class with a simple method and calling the method from cshtml file in webmatrix? I am trying to figure out if WebMatrix could be used in an ...
3
votes
1answer
251 views

Where are the Razor assemblies?

I'm playing around with WebMatrix and I'd just like to explore some of the razor stuff behind the scenes... but my Reflector skills (and my brain) are failing me. Does anyone know offhand what ...
2
votes
1answer
19 views

Redirect error with wordpress and webmatrix on local machine

i'm developing a theme for wordpress in webmatrix... After few hours of normal work, i got an 302 redirect loop error in both chrome and FF... What to do and how to fix it? thanks...
2
votes
1answer
131 views

WebMatrix social authentication MVC integration

Is there any article or ideas how to use/move/intergrate social authentication from WebMatrix 2 to MVC 4. I've googled internet but didn't found any info about possibility to add references to ...
2
votes
3answers
243 views

How to set video MIME-type for VideoJs in IIS Express / Webmatrix

I'm developing a .NET site which is running locally on IIS Express through WebMatrix. The site contains a VideoJS script which basically plays HTML5 video. The video which has been loaded in is .mov ...
2
votes
3answers
113 views

A way to make Asp.net Web Pages more like Rails MVC?

AFAIK, the Asp.net Web Pages model only supports a single form post per page. The user input is taken in with: if (isPost) { // code to capture form input } However, is it possible to have ...
2
votes
1answer
157 views

500 Error With PHP and Webmatrix Shows “Friendly” Error Page

I am working on a PHP application using IIS Express/Web Matrix and it is giving me the "friendly" error page instead of the actual error. How do I configure my site or IIS express to give me the ...
2
votes
1answer
101 views

How do I deploy Web Site Projects in Visual Studio via Web Deploy?

I want to deploy a Web Site Project (as opposed to a Web Application Project) from Visual Studio using web deploy so I can deploy to the Windows Azure Accelerator for Web Roles. However, it appears ...
2
votes
3answers
200 views

ASP.NET Web Pages with Razor over ASP.NET MVC Razor Views

In looking at the latest release of the Razor view engine with ASP.NET web pages, it looks nice because it has the full Razor support. So can someone give me a reasoning why I might want to choose ...
2
votes
3answers
105 views

Link to image database

I have the following page: @{ if (Request["ID"].IsInt()) { var imgID = Request["ID"].AsInt(); //Data var db = Database.Open("AMSDArquiteturaConnectionString"); ...
2
votes
1answer
43 views

Using a helper page created on a page X in Y?

I have a page X.cshtml with the following code: @helper CodeTest{ <h1>Test</h1> } And on my page Y.cshtml like to use this helper ... how can I call him?
2
votes
1answer
108 views

Is it possbile to change the webpages_Membership, roles etc table names from a simple template created with web matrix?

I've created a Web Matrix web site from the starter template which creates a database with the a few tables for the login details. Most of these are names webpages_Membership, webpages_Roles etc. The ...
2
votes
1answer
354 views

in depth coverage of WebMatrix?

Hi guys I'm curious if there is any in-depth articles/eBooks/ that cover WebMatrix technology. I was lookin @ MSDN video tutorials so far, but I would like to dig deeper, so looking for in-depth ...
2
votes
2answers
142 views

Generate sitemap on a website made ​​with WebMatrix + Razor

I need to generate a sitemap to validate the site with Google Webmaster Tool. How can I generate the sitemap for my website automatically?
2
votes
1answer
361 views

Webmatrix: passing ModelState to partial page

I am building a WebPages site and have an issue when I try to pass ModelState data to a partial page. Here is the code for Create.cshtml: @{ Page.Title = "Create Fund"; var name = ""; ...
2
votes
1answer
170 views

Webmatrix Layout — Inserting into head?

I've created a web site using Asp.Net and the Razor view engine (which is the same as using WebMatrix). Up to now, I've been using SQL to query databases directly, but now I have a page which needs ...
2
votes
1answer
443 views

How to Publish WebMatrix site to Local File System?

Is there any option or workaround to first Publish Webmatrix Website to File System and then upload it manually, as we do in Web Projects and MVC Projects in Visual Studio 2010?
2
votes
2answers
94 views

Registered Mark does not appear when using @Page.Title!

I am using WebMatrix (I'm like, addicted to it), for a new site (well, it's just a new version of an existing site) and I have this: _SiteLayout.cshtml: @{ <!DOCTYPE html> <html> ...
2
votes
1answer
187 views

How to do a 301 Redirect in WebMatrix?

Hi I am working in WebMatrix and I am getting the error: The page contains multiple canonical formats. This happened when I ran an SEO Report on the site. I am getting the error with ...
2
votes
2answers
301 views

Needing help to distinguish between WebMatrix, ASP.NET Web Pages and the Razor syntax

Much of the documentation for the new Razor view engine is in the context of WebMatrix and ASP.NET "Web Pages". Even in the MSDN library itself, the article that seems (to me) to be the root ...
2
votes
1answer
211 views

WebMatrix WebSecurity PasswordSalt

I am using WebMatrix and have built a website based on the "StarterSite". In this starter site you get a nice basic layout - including registration, login, forgot password pages etc... I've noticed ...

1 2 3 4 5 6