ASP.NET 4.0 potentially dangerous Request.Form value was detected

This was because .NET detected something in the entered text which looked like an HTML statement. This is a feature put in place to protect your application cross site scripting attack and followed accordingly. To disable request validation, I added the following to the existing “page” directive in that .aspx file. For .NET 4, we need to add requestValidationMode=”2.0″ to the httpRuntime configuration section of the web.config file like the following: But if there is no httpRuntime section in the web.config file, then this goes inside the <system.web> section. If anyone wants to turn off request validation for globally user, …

Continue Reading

Metro style app

A Metro style app is a new type of application that runs on Windows 8 Release Preview devices. Read on if you want to learn more about what makes Metro style apps different from traditional desktop apps. Apps have one window that supports multiple views Unlike traditional desktop apps, a Metro style app has a single, chromeless window that fills the entire screen by default, so there are no distractions.

Continue Reading

What is a PAD file?

PAD stands for Portable Application Description, and a PAD file is a clear and easy way for software authors to provide online sources with information about their products. The advantage of using a PAD file is that it enables you to store all the descriptions and specifications in one single place – system requirements, price, contact info, file names, download URL’s and more. Another great thing about PAD files is that they’re so easy to create – and that it doesn’t cost you anything! The Association of Shareware Professionals have put together a range of totally free tools that allow …

Continue Reading

MariaDB, SQL server

MariaDB strives to be the logical choice for database professionals looking for a robust, scalable, and reliable SQL server. To accomplish this, Monty Program works to hire the best and brightest developers in the industry, work closely and cooperatively with the larger community of users and developers in the true spirit of Free and open source software, and release software in a manner that balances predictability with reliability. Much more information is available on the Monty Program website, and we heartily encourage you to spend some time reading before installing or deploying MariaDB. Here are some important resources to get …

Continue Reading

MySQL, CREATE FUNCTION Syntax

The general syntax of Creating a Function is : func_name : Function name func_parameter : param_name type type : Any valid MySQL datatype routine_body : Valid SQL procedure statement  The RETURN clause is mandatory for FUNCTION . It used to indicate the return type of function. Now we are describing you a simple example a function. This function take a parameter and it is used to perform an operation by using an SQL function and return the result. In this example there is no need to use delimiter because it contains no internal ; statement delimiters. Example : Query OK, …

Continue Reading

Highcharts .Net (with vb sample)

Highcharts .Net is a charts library written in pure javascript, offering an easy way to add complex charts to your Web application. Highcharts .Net encapsulates the Highcharts API on ASP.net controls making it easier to use. Project page at codeplex: http://highcharts.codeplex.com You can see some Highcharts.Net examples at this link: http://highcharts.paulovich.com.br/ Install: After download the newest release, add it as reference on your web application, and then add it to the page controls on your web.config: After that, you only need to import the jQuery script. it’s ready to use 😉 aspx: VB Sample:

Continue Reading

Manually update and rebuild the Exchange 2003 GAL

This how-to walks through the process of manually updating offline address books for users from Exchange 2003 as well as the Global Address List. Open Exchange System Manager This how-to was actually made on a WS2003STD SP2. Expand Recipients and Select “Offline Address Lists” In the right pane, right click the “Default Offline Address List” and select “Rebuild” It will give you a prompt about how long it can take Just click “Yes” Repeat this for the “Global Address List” In the left pane, now click on “Recipient Update Services” In the right pane, right click on each choice, first …

Continue Reading