Questions tagged [asp.net-4.5]

Refers to the version 4.5 of the ASP.NET web application framework introduced with the .NET Framework 4.5

Refers to the version 4.5 of the ASP.NET web application framework introduced with the .NET Framework 4.5

609 questions
-1
votes
1 answer

Forms Authentication in .NET 4.5

I usually use the Forms Authentication for a login form as protected void Login1_Authenticate(object sender, AuthenticateEventArgs e) { if(FormsAuthentication.Authenticate(Login1.UserName, Login1.Password)) { …
user544079
  • 13,851
  • 35
  • 102
  • 160
-1
votes
1 answer

.net 4.5 Asp Mvc -> Error 403.14- IIS 7 - Windows Server 2008 R2

When I want to deploy an MVC 4 (.net 4.5) application to my iis i got the 403.14 calling me that the content ist not browseable. This also occurs when i deploy the unchanged mvc 4 template. when using the mvc 4 template with .net 4.0 everything…
Boas Enkler
  • 11,465
  • 12
  • 61
  • 128
-1
votes
1 answer

Deploying asp.net 4.5 application on IIS 7.5

I have a simple asp.net 4.5 application. I've tried to deploy it on IIS 7.5 (win server 2008 R2), but it doesn't seem to work. I wonder if it's possible to deploy it on IIS 7.5?
Gev
  • 429
  • 6
  • 13
-2
votes
1 answer

Download Multiple Images which are stored as "image" datatype from Sql Server to a FOLDER using c# asp.net 4.5

I have images stored in my database, there are about 500 of them. I have stored them as an "image" data type. There is also eid field in each row which is unique. I need to download ALL these images into a SINGLE folder. The name of the image should…
Azfar
  • 33
  • 5
-2
votes
1 answer

ASP.NET Web API 2 compatibility

I´m working with web servicesrest, I now that exist web api 2 but the question is, Is it possible to install WEB API II on a Windows Server 2012 64BITs, with framework 4.5, ISS v.8?
-2
votes
1 answer

MVC 4 ASP.NET 4.5 dynamic form builder options?

I have developed custom form builder type application using ASP.NET 3 years back. Now working on new project and it has similar requirement. I think there must be something new and easy to do same thing using MVC4 or ASP.NET 4.5 web forms. Any…
Nam
  • 1
  • 1
  • 1
-3
votes
1 answer

What happens when you assign int to a null in C#? And good practices

I'm developing in asp.net web forms 4.5. As I am using code-first entity framework, the code for models are made by the framework. Most of them are nullable, (I guess they are the default value) So visual studio gives me an error every time I want…
Jinmo Chong
  • 81
  • 11
-3
votes
2 answers

Mislead by Async and Await features

C# is a synchronous language, i.e process will block UI until result comes, now trouble is; this async with await looks like same thing as synchronous. async + await = synch I do understand the caller moves on, i.e the main thread is released.
Code Guru
  • 21
  • 1
-4
votes
1 answer

How to pass already stored data in the database each time the website is run in ASP.NET MVC?

How to pass already stored data in the database each time the website is run in ASP.net MVC?? I have a controller with methods, i want it to be executed for the already stored data each time i run the application. Also is there any way to change in…
1 2 3
40
41