Tagged Questions

This tag refers to the version 4.0 of the ASP.NET web application framework introduced with the .NET Framework 4.

learn more… | top users | synonyms

38
votes
3answers
12k views

ValidateRequest=“false” doesn't work in Asp.Net 4

Hi I have a form at which I use ckeditor. This form worked fine but now doesn't work in Asp.Net 4. Any suggestions? I have ValidateRequest="false" directive.
23
votes
7answers
31k views

Can I develop for .NET Framework 4 in Visual Studio 2008?

My ASP.NET application runs in IIS on my web server and uses Microsoft .NET Framework 4 Beta 2. (Its Application Pool is set to .NET Framework version .NET Framework v4.0.21006.) It gives this new ...
14
votes
2answers
7k views

Request Validation - ASP.NET MVC 2

Has request validation changed for ASP.NET MVC 2, more precisely, not validating? I did the following: Web.configs (in App directory and Views directory) <pages validateRequest="false" ...
11
votes
3answers
642 views

Thoughts on running Windows Service type apps on ASP .NET 4 with StartMode=“AlwaysRunning”

Usually I would look at writing a Windows Service to manage tasks that aren't suited to being hosted in a web application. These types of tasks are usually long running processes or scheduled tasks. ...
10
votes
2answers
464 views

I need a fast runtime expression parser

I need to locate a fast, lightweight expression parser. Ideally I want to pass it a list of name/value pairs (e.g. variables) and a string containing the expression to evaluate. All I need back from ...
10
votes
1answer
973 views

LazyList<T> vs System.Lazy<List<T>> in ASP.NET MVC 2?

In Rob Conery's Storefront series, Rob makes extensive use of the LazyList<..> construct to pull data from IQueryables. How does this differ from the System.Lazy<...> construct now ...
10
votes
1answer
3k views

ASP.NET MVC 2 + LINQ to SQL - CS0012 Compilation Error

In my database schema each forum has a category and categories can have many forums. I'm trying to list categories and their respective forums with the following code: <%@ Page Title="" ...
9
votes
3answers
5k views

Getting 404.0 error for ASP.NET MVC 3 app on IIS 7.0 / Windows Server 2008

I am attempting to deploy an ASP.NET MVC 3 application to a Windows 2008 x64 server (running IIS 7.0 obviously), and IIS does not want to seem to serve up the content properly. All requests are ...
7
votes
2answers
145 views

ASP.Net cannot create/shadow copy in PRODUCTION

We've recently updated a fairly large ASP.NET website (~1500th alexa traffic ranking) to use VS2010 and .NET 4.0 running on Windows Server 2008 R2 Since then, when we deploy new versions of the site ...
7
votes
1answer
3k views

What is the correct usage of “runAllManagedModulesForAllRequests” in ASP.NET MVC2/3?

I've read various posts and questions about the use of runAllManagedModulesForAllRequests in the modules section of <system.WebServer> and I'm concerned that I'm using this setting incorrectly. ...
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
3answers
518 views

ASP.Net Post timeout

I am stuck with asp.net post issue with last 2 weeks. Scenario: My application page has 3 controls. A WYSIWYG editor (Free Textbox), a text box to get name of the article being edited in WYSIWYG ...
6
votes
2answers
880 views

System.Security.VerificationException: Operation could destabilize the runtime. (Subsonic 2.2)

I recently tried to upgrade a .net 2.0 project which had its DAL generated by SubSonic 2.2 to .NET 4.0 under Visual Studio 2010. The projects converted without error but now I am getting a rather ...
6
votes
6answers
348 views

How to use a .NET 4.0 web application within a .NET 3.5 web application?

My company has a website built in ASP.NET and targets .NET 3.5. It is too mangled and massive to be converted to .NET 4 in a timely manner. I am tasked with building a ticketing system. I want this ...
6
votes
2answers
2k views

How to add users in IIS Manager for an ASP.NET 4.0 application?

I have installed an ASP.NET 4.0 Web forms application in IIS 7.5. If I set the application pool to DefaultAppPool (.NET Framework 2.0) I get the icons for Providers, .NET-Roles and .NET-Users ...
5
votes
5answers
81 views

Duplicate type error?

We have been having a random issue with our live website. We're not sure what exactly is causing the issue. We tried clearing the temporary files but the issue happened again. We even killed the IIS ...
5
votes
3answers
82 views

Multiple subscribers to single ASP.NET UserControl event?

I am puzzling over an event plumbing problem on my page. I have a single ASP.NET UserControl that monitors some browser-side events and raises them as UpdatePanel async-post-backs to the server. Let's ...
5
votes
1answer
2k views

ASP.NET MVC 3: How to get User's Role in a Controller Method?

I want to be able to Get a list of roles of the current authenticated user. Filter the data provided to that user based on their role. I see ways to check if the user is in a particular role, but ...
5
votes
6answers
7k views

Crystal Reports for Visual Studio 2010 Error

I am trying to run a crystal report from my web application which was built using ASP.NET 4.0 and Visual Studio 2010. I have installed the following from the SAP site ...
5
votes
2answers
3k views

ScriptRessources Error : This is an invalid script resource request

We catch this error sporadically. Does anyone know what could it be? The URL give by our error logging get this weird url for this error : ...
5
votes
2answers
123 views

How to detect .NET 4 from ASP.NET?

I have a web server that is run by a third party. I don't have direct access to the server but I can deploy ASP.NET code to it. I want to detect if that server is running ASP.NET 4 / .NET 4 or not. ...
5
votes
1answer
3k views

ASP.NET 4.0 Rendering problems with the menu control after removing of controlRenderingCompatibilityVersion=“3.5”

I am actually migrating websites to ASP.NET 4.0, having problems with the new rendering of menu controls. My websites make heavy use of nested menus. Hover effects are used and the layout is defined ...
5
votes
2answers
4k views

asmx web service returning xml instead of json in .net 4.0

i have just upgraded a test copy of my site to asp.net 4.0 and have noticed a strange issue that only arises when i upload the site to my server. the site has an asmx web service that returns json, ...
5
votes
6answers
5k views

ASP.net 4.0 default.aspx problem on IIS6

I installed .net framework 4 on my windows 2003 enterprise x64, wrote simple asp.net 4.0 application (default.aspx page only). The application works great if request is to default.aspx, not to the ...
5
votes
2answers
572 views

Optional route parameters in ASP.NET 4 RTM no longer work as before

I upgraded my project to ASP.NET 4 RTM with ASP.NET MVC 2.0 RTM today. I was previously using ASP.NET 3.5 with ASP.NET MVC 2.0 RTM. Some of my routes don't work suddenly and I don't know why. I'm ...
5
votes
6answers
1k views

Upgrade to ASP.NET 4 framework

Now that Visual Studio 2010 RC is released I was wondering if anyone knows what pros/cons there are to upgrading my existing ASP.NET applications to target the .NET 4 framework? (Apart from waiting ...
4
votes
1answer
35 views

pass model from one action to another action in same controller

I am trying to pass my model List< Models.Statement > statementList from one action to another but i am receiving null value in the 2nd controller. Please suggest what is wrong here. Even tried ...
4
votes
7answers
112 views

alternating row color MVC

I need to design a table with alternating row colors. Below is written code but its not working. May be some syntax issue for MVC. Please suggest. @for (int i = 1; i <= 10; i++) { var ...
4
votes
1answer
185 views

Convert implicitly typed object to querystring

In ASP.NET MVC3, some function, like HtmlHelper.ActionLink, can take in an implicitly typed object and convert it into an querystring @Html.ActionLink("Link", "Action", new { id = 1, params="asd"}) ...
4
votes
2answers
357 views

.Net 4.0 website cannot identify some AppleWebKit based browsers

We are seeing some Safari browsers failing to cross-authenticate our website after we upgrade to .net 4.0 from .net 3.5. After much investigation, it turns out to be a problem with ASP.Net ...
4
votes
5answers
884 views

The best browser detection solution in ASP.NET 4.0

I googled this topic and I came across with three different ways to configure browser capabilities: browscap.ini, browserCaps element in web.config and .browser files in App_Browsers. I thought ...
4
votes
1answer
472 views

ASP.NET 2.0 and 4.0 seem to treat the root url differently in Forms Authentication

If have the following web.config: <configuration> <system.web> <authentication mode="Forms"> <forms name="MembershipCookie" loginUrl="Login.aspx" ...
4
votes
2answers
109 views

Good resources to dive deep on ASP.NET security

I have never done any serious ASP.NET development (ie standard WebForms). However I now find myself implementing Silverlight/RIA Services and ASP.NET MVC apps, which reuse a lot of standard ASP.NET, ...
4
votes
3answers
233 views

Implementing DotNetOpenid in my asp.net website

I am trying to implement DotNetOpenid in my asp.net website. However, the more I try to read up on DotNetOpenid, the more confused I get. My initial goal is to allow user login process (similar to ...
4
votes
1answer
348 views

Does upgrading a WCF service from .NET 3.5 to 4.0 change the contract?

If I upgrade a WCF Web Service from .NET 3.5 to 4.0, making no other changes, is there any risk of a change to the contract exposed to the outside world? ie. Will my consumers need to reconsume the ...
4
votes
0answers
117 views

WCAG 2.0 Support In ASP.NET 4.0

Have there been any improvements to aid accessibility standard compliance in ASP.NET 4.0? (WCAG 2.0 in particular)
4
votes
3answers
1k views

Why is using a URL containing a colon considered as a “potentially dangerous request”?

Someone (probably a bot) sent a request with the following URL to my ASP.NET 4.0 web forms application (running on IIS 7.0): http://ipaddress-of-my-applications-domain/bla1.bla2.bla3.bla4.bla5:) ...
4
votes
2answers
593 views

Custom Data Annotations IsValid is never invoked. (ASP.NET MVC 2 .NET 4)

I have a custom Data Validation Attribute I've created to make sure the passwords a user inputs are the same, but IsValid is never invoked. Custom attribute: public class IsSameAsAttribute : ...
4
votes
3answers
151 views

In ASP.NET MVC, what is the difference between <%= and <%:?

I'm new to ASP.NET MVC. I've seen both <%= ... %> and <%: ... %>. I'm familiar with the first from classic ASP days, but not the latter. What is the difference between the two?
4
votes
1answer
406 views

Will .net 4.0 runtime work with SQL Server 2000?

According to this article, Visual Studio 2010 no longer supports SQL Server 2000. However, it's a bit less clear on whether the runtime (and things like ASP.net 4.0, Linq2SQL and EF) will work with ...
4
votes
1answer
163 views

Visual Studio's Format Document – How to Write it in C#

I'm having a go at writing some C# code which overrides the Render method of the System.Web.UI.Page and then reformats the HTML before presenting it to the browser. This is purely experimental so ...
4
votes
1answer
441 views

ASP.NET WebForms vs MVC [after VS2010/.NET 4.0 announcement]

Two of the biggest advantages of MVC over webforms were non-existent viewstate and URL routing. VS2010 and .NET 4.0 incorporates built-in URL routing for Webforms as well as better control for ...
4
votes
4answers
18k views

Default.aspx with IIS 6.0 and .Net 4?

We have deployed a .net 4 asp.net site on IIS 6.0. Default.aspx is configured as one of the default document. When we access the site using the following url http://testsite We expect it to ...
4
votes
2answers
2k views

asp.net 4.0 web forms routing - default/wildcard route

I there a simple way when using ASP.NET 4.0 routing with Web Forms to produce a route that will act as some kind of wildcard? It seems to me that within WebForms, you have to specify a route for ...
4
votes
3answers
531 views

How to define using statements in web.config?

I'm using MySql in my asp.net project. But I don't want to type every "using MySql.Data.MySqlClient;" statement in every aspx.cs/aspx.vb file. How can I define this lines in web.config file? I've ...
4
votes
1answer
283 views

How can we make the DataView Control respond to javascript events?

If I had an ASP.NET 4.0 DataView control that looked like below, how can I control javaScript events on the client side? Body tag: <body xmlns:sys="javascript:Sys" ...
3
votes
0answers
17 views

How to store a SDF file at client machine via web application?

I need your valuable inputs for my web application. see, the thing is i need to store a SDF database so that i can track the user in which machine he has activated the Product. if a user activated ...
3
votes
2answers
282 views

How to data bind Entity Framework objects to a FormView

I am data binding to many FormView controls using EF entity instances, but I have to resort to this ridiculous kludge in order to achieve what I want without using EntityDataSource controls: ...
3
votes
1answer
330 views

Precompile a asp.net4 mvc3 website using visual studio 2010

What is the best way to pre-compile a asp.net4 mvc3 website with all its view files using visual studio 2010? I'm a little confused because MS provides multiple solutions that sound very similar. ...
3
votes
3answers
55 views

Can I programmatically handle cached pages in webforms

For example, my home page shows a few of the newest products. I would like to set this page to be cached indefinitely, and then when I create a new product I could delete the cached page in my code, ...

1 2 3 4 5 14