0
votes
0answers
64 views

Update Panel not working properly causing full postback

I have moved to visual studio 4.5 and at first my update panels worked just fine but one day they just seemed to stop altogether even if I start a new project. Code Behind: public partial class ...
11
votes
6answers
400 views

Add color options to System.Drawings.Color

In visual studio, when creating controls in the markup(or in code-behind) you can specify colors in HEX format like this: "#FFFFFF", but you also can select from the list of preset colors like: White, ...
2
votes
1answer
155 views

How to detect IIS Express version?

I have found that our ASP.NET application runs differently on different machines in IIS Express. All have VS 2012, .Net 4.5 and Integrated mode. But some has VS 2012 Update 1, some not. How do I find ...
0
votes
0answers
194 views

Visual Studio 2012. Logon failure: unknown user name or bad password

Well this is very strange. I am able to connect to Sql Server 2008 from Management studio, but i am unable to establish connection from Visual Studio 2012 (website project). I always get the error: A ...
0
votes
1answer
183 views

ASP.NET 4.5 features don't seem available in VS2012

I'm checking out some of the new features in asp.net 4.5, and they don't seem available in VS 2012. Specifically, I was trying out the strongly typed data controls. VS doesn't resolve "Item" in this ...
0
votes
0answers
188 views

EditIemTemplate in GridView that is contained in a ListView shows only after Edit is clicked twice

I'm using EntityFramework to show a list of students (Referral), each student can have one or more siblings (Sibling is a Navigation Property of Referral). In order to display the sibings for the user ...
1
vote
1answer
51 views

Is it possible to make aspnet ModelBinding work in .Net Framework 4.0 Web Forms?

We have a couple of relatively large Web Forms web application projects, but we are limited on using the .net 4.0 because some of our clients are still using Windows Server 2003, and the .net4.5 is ...
0
votes
0answers
104 views

Trouble with some asp.net controls not showing in the browser

I have a simple asp.net website but for some pages, the asp.net controls like the login control, dataGridView and hyperlinks are not shown in the browser when the pages are displayed. All those ...
0
votes
0answers
95 views

Dropdownlist to Insert Child Records

I am trying to insert child records into a junction table using ASP.NET 4.5 web application. Ideally, I want the user to be able to select the records to insert from a dropdownlist. For example, if ...
0
votes
1answer
198 views

Table Valued Function in Entity Framework 5 VS 2012 not mapping

Just installed Visual Studio Web Express 2012 just so that I could map TVFs. But I find that, while the functions import to the model as the expected complex types, they do not show up in the model ...
1
vote
2answers
689 views

With C#, WCF SOAP consumer that uses WSSE plain text authentication?

I have a WCF SOAP consumer that is implemented by Visual Studio 2012 from a WSDL. The WSDL was generated by PeopleTools. The base object is of type System.ServiceModel.ClientBase. I need the SOAP ...
0
votes
0answers
108 views

Format of the initialization string does not conform to specification starting at index 0

In trying to integrate OAuth for Facebook in my web application, I receive the above error after the user signs in to Facebook. I am using the SqlMembershipProvider and the SqlRoleProvider. ...
2
votes
2answers
132 views

The cast to value type 'DateTime' failed because the materialized value is null

My project is the throwing the above error because the Ship Date in my table is null. I am using Code First, and the DateTime field is declared as nullable both in the generic set and the SQL table. ...
1
vote
2answers
697 views

Can't find the Publish Website Option in Visual Studio 2012 Express Web

I created an Empty Website (not a project) using File > New Website > Aps.net Empty Web Site. Usually when I click on Build, there is an option to "Publish Web Site". However, I don't see it here. All ...
1
vote
1answer
459 views

How do you edit styles in WPF 4.5 under Windows 7?

I just realised that Blend for Visual Studio 2012 does not support WPF apps under W7. Once I opened a window I can only see raw XAML. I need to edit a style for a chart dataseries ...
1
vote
1answer
437 views

WCF and Shared Reference Library Between Client & Service

Visual Studio and SvcUtil can be used to generate proxy code to integrate with a service. In VS 2010 and prior there were issues if you wanted to maintain a cross tier reference library of shared ...
1
vote
1answer
503 views

Bundle registration for jquery maskedinput not working

What am I doing wrong?...... I'm registering the jquery.maskedinput-1.3.min.js in a bundle script the exact same way I'm registering several other scripts but for some reason the bundle for this ...
11
votes
2answers
3k views

Build ASP.NET 4.5 without Visual Studio on Build Server

Its been a while since I setup a Build Server so maybe I've forgotten something or maybe .NET 4.5 is different from whatever version I did this with last time, but here is my problem. I'm trying to ...
0
votes
1answer
339 views

VS2012 - Button Not Posting Back

This has to be simple. Still, I've noticed VS2012 acting very erratic - sometimes it won't generate the designer file entries for example. Has anyone got any idea what might be going on here? I've ...
2
votes
2answers
1k views

VS2012 RTM missing .net 4.5 and mvc project templates

On Windows 8 RTM and just installed Vs2012 Ultimate RTM, I'm unable to create a .net 4.5 project nor a .net 4 or 4.5 ASP.NET MVC project. I've done a repair of VS2012, which did not fix it. Is there ...
0
votes
1answer
2k views

Visual Studio 2012, ASP.NET Web Forms & HTML5

I have a question related to Web Forms. Do the ASP.NET Web Controls provided in Visual Studio 2012 emit HTML5 as output? I understand we can use custom controls or content adapters to make web ...
2
votes
1answer
773 views

ASP.NET 4.5 MVC4 Model Binding Issue - Cannot define any models

I'm having trouble with MVC4 not being able to bind to anything. For Example: public class Question { [Key] [Required] public Int32 QuestionID { get; set; } [Required] ...
1
vote
2answers
4k views

AjaxControlToolkit Error: AjaxControlToolkit requires ASP.NET Ajax 4.0 scripts. Ensure the correct version of the scripts are referenced

I am using Visual Studio 2012 trial. I Created Sample Application and Added AjaxControlToolkit Reference Using NUget to Latest Build of toolkit. I am already using Toolscriptmanager on my webpage ...
2
votes
1answer
596 views

Using the new Model Binding in asp.net 4.5 to format date fields

In the olden days before asp.net 4.5 we could easily bind a date to a Gridview, Formview or other databound control and make it look presentable with a simple format string. ...
0
votes
1answer
338 views

MVC3 routing with period in .NET 4.5 / VS2012

A route I had working in VS2010/.NET 4/MVC3 seems broken in VS2012 and .NET 4.5 (although with MVC3 still). Previously I had a route like this:- routes.MapRoute("TMS", ...