Quantcast
750×100
Read WebProNews
With Friends!
 
Microsoft Releases Windows Azure SDK 2.0 For .NET

Microsoft Releases Windows Azure SDK 2.0 For .NET

By Zach Walton May 10, 2013

In its latest earnings report, Microsoft said Windows Azure and related products hit $1 billion in sales. It shows that Microsoft’s cloud platform is starting to really take off. In its efforts to get more developers to use Azure, Microsoft …

ASP.NET Going Open Source Thanks To Microsoft ASP.NET Going Open Source Thanks To Microsoft

Microsoft is becoming increasingly more and more one of the good guys within the tech community. Their latest move is definitely going to make a lot of developers happy. Scott Hanselman, a Microsoft employee, announced Tuesday that Microsoft is making …

When To Assembly

Over the years, I’ve used a lot of third-party components and self built control libraries. It an easy way to add functionality to your code projects – just reference the dll file and that’s it. This encapsulated functionality comes in most cases at a high cost. Imaging that you have an assembly of your homemade ASP.NET controls that you wish to use in your new website. In there you have a custom version of the GridView control that does something smart. On your new website this is exactly what you need, but you need it to behave a little different in a certain situation.

ASP.NET: Working with Query Strings
· 2 Comments

In many cases we write our ASP.NET logic around query strings in order to show the right product page or what not.

ASP.NET: Access Client Info Server-side
· 1 Comment

I was playing around with HTTP request headers and for some reason started thinking about how limited information they provide about the requesting browser.

ASP.NET: Make GridView Control Accessible
· 12 Comments

The GridView is a new web control in ASP.NET 2.0 and is an improvement of the old DataGrid.

ASP.NET: HttpModule for Query String Encryption
· 20 Comments

URL parameters or query strings are often used to carry information that can be used by hackers to do identity theft or other unpleasant things.

Noteworthy Videos
Postbacks with Parameters in JavaScript
· 4 Comments

Whenever you use a Button or LinkButton it is because you want to be able to do a postback when it is clicked.

ASP.NET: Keep the Content-type in Sync

Most websites include a meta-tag that tells the browser what content-type the document is. It looks like this:

ASP.NET: Easily Block DoS Attacks

Denial of Service (DoS) attacks are becoming a more and more common way to bring websites and servers down.

ASP.NET: Choose a Standard Number Format

Today, I ran into an issue regarding the way numbers are parsed in different cultures, which resulted in very wrong numbers.

ASP.NET – Block IP Addresses from Your Site
· 2

Recently, one of my readers asked me how to block certain IP addresses from accessing his ASP.NET website.

ASP.NET – Toggle Non-server Control Visibility

Since ASP.NET 1.0 you had the ability to toggle the visibility of any HTML tag with the runat=”server” attribute.

ASP.NET: Parse Controls Dynamically
· 1

Most of the primitive types in the CLR have a Parse method that takes a string and parses it into its own data type.

ASP.NET: machineKey Generator

Whenever you make use of ViewState, Session, Forms authentication, or other encrypted and/or secured values, ASP.NET uses a set of keys to do the encryption and decryption.

ASP.NET: Maintain Scroll Position After Postbacks

To maintain the scroll position after postbacks is important for larger web pages in order to let the user know exactly what is going on.

Validating Strong Passwords in C# and ASP.NET
· 1

It’s always a good idea to have a password policy when creating new applications. A password policy can vary from project to project, but the important part is just to have one to begin with.