Search
Free Signup | Login
Search Blogs
Relevant Links
ASP.NET
Author: revindex Created: 7/10/2007 11:14 PM
ASP.NET Web Programming

Migrating IIS7 Site Settings
By revindex on 9/28/2008 5:05 AM
This article shows you how to migrate IIS 7 settings to a new machine using the new appcmd provided by IIS. (Web Server, ASP.NET, Windows)
Comments (6) More...

Microsoft Fiddler Web Debugging Proxy
By revindex on 10/17/2007 8:33 PM
Here's a great Microsoft tool that deserves more attention than it gets. Fiddler is a free debugger software that hooks onto your Internet Explorer or Firefox browser. It allows a programmer to see the HTTP packets passing through the machine in a nicely arranged way. (asp.net, programming, perl, php)
Comments (1) More...

Never Leave Source Code on the Server
By revindex on 9/9/2007 1:07 PM
I'm not a big fan when it comes to deploying source code on the Web server especially with the new Web Site projects that comes with VS.NET 2005. If your server got hacked before, you'll understand why source code on the server is a very bad idea. (c#, asp.net, php, perl, security, dotnetnuke)
Comments (0) More...

Nested Form in ASP.NET Page
By revindex on 7/24/2007 4:09 PM
It's common practice on the web to copy and paste a third party HTML code to add functionality to a page. To embed this kind of code is normally a breeze for even non-programmers. What appears to be easy is actually quite complicated to do on ASP.NET pages. The reason is because every ASP.NET page is wrapped in one big HTML Form.
Comments (1) More...

How to Create a Self-Signed SSL Certificate
By revindex on 7/10/2007 9:44 PM
When you're testing a web site on IIS either on your own development PC or on staging, you need a way to generate a self-signing certificate if you don't want to put out a few hundred dollars. In the past, Microsoft made available a tool called SelfSSL inside the IIS 6.0 Resource Kit. The tool works but there is a bug when you try to create more than one certificate on the same machine. You keep losing the first certificate you created. The better way is to use the new Microsoft SSL Diagnostics tool ... (ASP.NET, IIS)
Comments (3) More...