The asp.net-webpages tag has no wiki summary.
6
votes
2answers
48 views
InvalidCastException is thrown after installing ASP.NET MVC 4 Beta
I get the following exception after installing ASP.NET MVC 4 Beta on a machine with ASP.NET MVC 3.
System.InvalidCastException was unhandled by user code
...
6
votes
2answers
220 views
How can I disable/remove the WebPageHttpModule from ASP.NET 4.0 web applications?
I'm trying to get my wildcard http handler to handle *.cshtml pages but the request never reaches my handler as it looks like it's being intercepted by WebPageHttpModule that I discovered exists via ...
4
votes
0answers
192 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 ...
3
votes
2answers
406 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 ...
1
vote
1answer
387 views
Image preview before upload using asp.net webpages & webmatrix + Jquery
i've been trying to use a jquery & ajax plugin for the image preview but i cant for the life of me get it to work. This is the site I found the code/demo
...
1
vote
0answers
41 views
Determining Razor Web Page Hierarchy
I have a custom view page class in an ASP.NET Razor web site (not MVC). What I need to be able to do is determine the child pages that are within the parent page. Is there any way to determine this?
...
1
vote
2answers
565 views
Disable Razors default .cshtml handler in a ASP.NET Web Application
Does anyone know how to disable the .cshtml extension completely from an ASP.NET Web Application?
In essence I want to hijack the .cshtml extension and provide my own implementation based on a ...
1
vote
3answers
254 views
ASP.NET Razor web pages on large project?
I'm on the point of starting a medium scale web application and I'm considering developing using ASP.NET Razor syntax Web Pages framework (not MVC). But as I've seen many people consider "Web Pages" ...
1
vote
1answer
109 views
asp.net webpages content block and helper differences
In asp.net webpages framework what is the difference between using a content block versus a helper?
They both seem to be used to output HTML to multiple pages. They both can contain code and both ...
0
votes
1answer
56 views
ASP.NET Web Pages - Storing nvarchar more than 4000 character
I'm using Microsoft WebMatrix to develop a small website in ASP.NET Web Pages. I have a database table with a column that may contain more than 4000 characters.
Nvarchar has a limit of 4000 ...
0
votes
1answer
37 views
WebMatrix / WebPages / C# - How to manipulate text file?
How to manipulate file in WebPages/C# (.cshtml)? In PHP we have fopen and other functions, what are the counterparts?
0
votes
0answers
55 views
Loss of video styling in ASP.NET Web Pages experimental video archive with URL routing applied
I am an ASP.NET Web Pages with razor syntax beginner who is trying to develop a simple video archive for our church in Slovak Republic. The very early prototype is published at ...
0
votes
1answer
48 views
WebPages / WebMatrix - How not to apply PageStart on a page?
I have these pages:
_PageStart.cshtml
Index.cshtml
Login.cshtml
.
.
.
n. OtherPage.cshtml
Basically, I want to restrict a user from accessing all the pages when he is not logged in, with one ...
0
votes
1answer
79 views
WebPages / WebMatrix - _PageStart.cshtml vs _AppStart.cshtml
What is the difference between _PageStart.cshtml vs _AppStart.cshtml? Can I use them interchangeably?
0
votes
2answers
49 views
How Web page is a programming model to create ASP.Net web application
ASP.NET Web Forms is a part of the ASP.NET web application framework. It is one of the three different programming models you can use to create ASP.NET web applications, the others being ASP.NET ...
0
votes
2answers
101 views
Html helpers (from asp.net mvc) in webpages
Is it possible to use MVC Helpers in webpages (cshtml) ?
I'm trying out some controls from infragistics, and would like to use the html helper method to create the grid (avoiding some javascript) but ...
0
votes
0answers
234 views
Build Errors - 'System.Web.Mvc.ModelClientValidationRule' Conflicts
I am trying to 'build' my MVC3 web app in VS2010 however keep getting the following error:
Error 2 The type 'System.Web.Mvc.ModelClientValidationRule' exists in both 'c:\Program Files ...
0
votes
1answer
34 views
Per Page CSS With ASP.NET Web Pages
I am looking to split my css into sections with my asp.net web pages project. I have a layout css file that is linked in the _siteLayout.cshtml file that covers all the css related to the layout but ...
0
votes
1answer
44 views
Does Web Matrix (Or ASP.NET Web Pages) have a built in ORM?
What I know about web development I can count on one hand. In an effort to change that I have begun to look at asp.net web pages as this technology seems to have a low technical barrier to entry and ...
0
votes
3answers
95 views
Should I go for WCF or simply Razor/cshtml file for creating services?
I've got an old web forms that is to be extended with some ajax functionality. I've upgraded to .net 4, but wondering what approach to go for when creating new services.
I don't have to much ...
0
votes
1answer
117 views
WebMatrix ASP.NET Web Pages vs ASP.NET MVC 3
I've looked at WebMatrix 2 and it seems simple and fun to play with.
I play mainly with ASP.NET MVC 3 in C# with VS2010 Premium.
I'd like to know what's the pros and cons of using ASP.NET Web Pages, ...
0
votes
1answer
72 views
First ever web app. MVC 3 or ASP.NET Webpages [closed]
I’m very new to web programming and a few months back I started looking into MVC and have since started to build my website using MVC3. Although my website has started taking shape, it is taking shape ...
0
votes
0answers
26 views
Getting Resource Urls From Assembly
In ASP.NET web forms, you can use this component to extract a JS file that's embedded in a DLL: http://msdn.microsoft.com/en-us/library/system.web.ui.clientscriptmanager.getwebresourceurl.aspx. This ...
0
votes
1answer
69 views
Razor Web Pages Third Party Controls
Are there any third party controls out there for Razor Web Pages? I doubt you can use ASP.NET MVC controls that support razor, right? Is anything available that anybody heard of?
Thanks.
0
votes
2answers
311 views
How to capture unique user sessions in Webmatrix / Razor / ASP.NET Web Pages?
I need to log unique user sessions in Webmatrix / Razor / ASP.NET Web Pages. Does _appstart fire just when the app spins up the first time in IIS or does it fire once per unique user hit? If just ...
0
votes
2answers
241 views
Default Layout Page in ASP.NET Razor Pages
In MVC 3 with Razor view engine, you could establish the default layout page for all of your views. I can't seem to find a feature like this in ASP.NET razor pages (asp.net web pages with Razor)... ...
0
votes
1answer
97 views
ASP.NET Razor Pages - Client-Side Validation
In ASP.NET web pages (or Razor pages), the new framework using the Razor view engine, is client-side validation supported, or is validation strictly server-side out of the box. Of course there are ...
0
votes
1answer
166 views
How do I call an Oracle stored procedure from WebMatrix?
I am trying to execute an oracle stored procedure using WebMatrix.Data from Microsoft's WebMatrix. I can get data just fine with normal select statements...but I can't for the life of me figure out ...
0
votes
2answers
131 views
Underscored view in ASP.NET MVC
When I create a new ASP.NET MVC project two files with underscore are created: Views/_ViewStart.cshtml and Views/Shared/_Layout.cshtml. What does underscore mean?
0
votes
1answer
158 views
Is ASP.NET Web Pages with Razor Even A Contender? [closed]
I'm just getting into ASP.NET web pages with Razor. Based on what it has to offer, would you choose it for your application? It seems to me the ASP.NET MVC framework gives Razor more of an edge ...
0
votes
1answer
575 views
Error when using LINQ with anonymous classes and implicitly typed arrays in ASP.NET WebPages
I am trying to mock up a page using WebMatrix using WebPages under the hood. I have assigned an implicitly typed array of anonymous objects to one of the PageData keys, but I get the following error ...
0
votes
1answer
229 views
How to set the System.Web.WebPages.WebPage.Model property
I am planning on creating a custom route using ASP.NET Web Pages by dynamically creating WebPage instances as follows:
IHttpHandler handler = ...
0
votes
1answer
554 views
Razor for ASP.NET WebPages and IIS
I'm trying out ASP.NET webpages using the razor syntax so I created a sample site. If I view the site in WebMatrix or using VisualStudio (view in browser) everything works fine. When I try to create ...
0
votes
3answers
310 views
How does ASP.NET WebPages implement extensionless URLs?
I'd like to implement the same thing for my own build providers.
I'm talking about an ASP.NET Webpages application, in Visual Studio: File > New Website > ASP.NET Website (Razor)
Works with Cassini, ...
-3
votes
2answers
129 views
detecting Download file dialog?
is there any way i could detect opening of download file dialog box on web pages like hyperlink click event occurs and download file dialog box appears.... ??
and can i edit the filename in it ...