I have been having problems doing a full-screen mode in Remote Desktop Connection in Windows 7 for a while now and it is pretty annoying. This happens every time I minimize the RDC Window. I tried to google solutions to this and Microsoft suggested some fixes which you need to download and install. Luckily I came across this solution.
Apparently, you only need to press CTRL+ALT+BREAK on your keyboard to force the Remote Desktop screen into full screen. I can't believe Microsoft didn't put this into once of their resolution options on their website. And if your keyboard doesn't have a BREAK key in it, there is another option.
I'm starting to blog every error that I encounter (with the solution of course), in the hope that they will become useful to other developers like me.
Today as I was deploying SQL Server Reporting Services 2005 in an IIS 7.5 environment, I encountered the following errors:
An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.
The solution to this is to change the Managed Pipeline mode of the Application Pool the SSRS sites are running and change it from Integrated to Classic.
In details, the following are the steps I did to do this:
- Open IIS Manager
- Browse for the SSRS Sites (usually located at Default Website\Reports and Default Website\ReportServer)
- View site settings and find out in which application pool are they using
- Click the Application Pool section in IIS and open the properties of the Application Pool the SSRS sites use
- Set the Manage pipeline mode to Classic and click OK
After this last step, go back and check the SSRS Report Server or Report Manager and it should be working now.
To add a JavaScript validation, an attribute or properties to an HTML form generated in ASP.NET MVC using Html.BeginForm(), you can pass null values to the action and controller parameters to get the same result as Html.BeginForm():
Sample:
using (Html.BeginForm(null, null, FormMethod.Post, new { onsubmit = "return validateForm();" })) { }