meekob

Stories kicked by meekob

HttpModule for query string encryption(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 4 months ago

Plug this simple HttpModule to your existing web application and all your query strings will automatically be encrypted without you have to change your code. read more...

add a comment |category: |Views: 357

tags: another

IE7 BETA 3 Released(blog.lotas-smartman.net)

submitted by tiernanotiernano(1674) 5 years, 10 months ago

downloads for XP x32 and x64 and Windows Server (x32, X64 and Itanium builds) read more...

2 comments |category: |Views: 0

tags: another

DotNetKicks.com v2 Sneak Preview(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 10 months ago

DotNetKicks.com v2 will go live this weekend. Here is a sneak preview. read more...

8 comments |category: |Views: 5

tags: another

Vista using less .NET than expected(grimes.demon.co.uk)

submitted by dovedove(735) 6 years, 2 months ago

MS seems to have gone for more native code than even in XP. read more...

add a comment |category: |Views: 1

tags: another

How to use Web Site Administration Tool without installing VS 2005(blogs.msdn.com)

submitted by mxmissilemxmissile(45) 6 years, 2 months ago

Ever needed to use the new Asp.Net 2.0 Web Site Administration tool on a production site? Don’t want to install VS 2005 on your production server? Rahul Soni has posted a quick walkthrough to accomplish just this. read more...

1 comment |category: |Views: 51

tags: another

ASP.NET Popup Control(codeproject.com)

submitted by harlevharlev(290) 6 years, 2 months ago

This article describes an ASP.NET popup control. This control imitates MSN Messenger alert, but it is designed for use in a web page. Graphical appearance of this control can be completely changed by using one of predefined styles or by modifying all colors used on the control. Control supports Drag&Drop, so user can move control on the page, where he wants. read more...

add a comment |category: |Views: 100

tags: another

What is The Regulator?(regex.osherove.com)

submitted by j.montyj.monty(1868) 6 years, 2 months ago

The Regulator is an advanced, free regular expressions testing and learning tool written by Roy Osherove. It allows you to build and verify a regular expression against any text input, file or web, and displays matching, splitting or replacement results within an easy to understand, hierarchical tree. read more...

add a comment |category: |Views: 4

tags: another

Visual Studio 2005 Code Snippets(msdn.microsoft.com)

submitted by dereklakindereklakin(1565) 6 years, 2 months ago

IntelliSense Code Snippets are reusable, task-oriented blocks of code. Visual Studio 2005 includes code snippets covering tasks ranging from creating a custom exception, to sending an e-mail message, to drawing a circle. read more...

add a comment |category: |Views: 7

tags: another

Consuming WebServices with SSL and HTTP BASIC Authentication (eggheadcafe.com)

submitted by j.montyj.monty(1868) 6 years, 2 months ago

Excellent article on how to have web services check SSL certificate status and over-ride that default behavior based on the CertificateProblem enum. It also covers how to use BASIC authentication with SSL on the web service as well. read more...

add a comment |category: |Views: 183

tags: another

Best Practices for High Performance ASP.NET Applications(codeproject.com)

submitted by orangecrushorangecrush(50) 6 years, 3 months ago

Here are some tips to help improve the performance of your ASP.Net application. This article lists the techniques that you can use to maximize the performance of your ASP.NET applications. It provides a few important tips on common issues, design guidelines, and coding tips to build optimal and robust solutions. read more...

add a comment |category: |Views: 35

tags: another

ASP .NET 2.0 Wizard Control(weblogs.asp.net)

submitted by dereklakindereklakin(1565) 6 years, 3 months ago

Round up of useful posts/videos/etc about the ASP .NET 2.0 Wizard Control. read more...

add a comment |category: |Views: 6

tags: another

Atlas Task List : New feature added(weblogs.asp.net)

submitted by pinkylano83pinkylano83(85) 6 years, 3 months ago

Now here comes a New release with Atlas..Task List.. It is a simple to do list..where u can ceate/manage/delete lists (something like tadalist.com), and then items within those lists. What is neat is that all of the inserts, updates, deletes, sorts, and paging operations within the application are done in an Ajax way read more...

add a comment |category: |Views: 5

tags: another

Encrypting Configuration Information in ASP.NET 2.0 Applications(aspnet.4guysfromrolla.com)

submitted by RobChappelRobChappel(2720) 6 years, 3 months ago

When creating ASP.NET 2.0 applications, developers commonly store sensitive configuration information in the Web.config file. The cannonical example is database connection strings, but other sensitive information included in the Web.config file can include SMTP server connection information and user credentials, among others. While ASP.NET is configured, by default, to reject all HTTP requests to resources with the .config extension, the sensitive information in Web.config can be compromised if a hacker obtains access to your web server's file system. For example, perhaps you forgot to disallow anonymous FTP access to your website, thereby allowing a hacker to simply FTP in and download your Web.config file. Eep. Fortunately ASP.NET 2.0 helps mitigate this problem by allowing selective portions of the Web.config file to be encrypted, such as the <connectionStrings> section, or some custom config section used by your application. Configuration sections can be easily encrypted using code or aspnet_regiis.exe, a command-line program. Once encrypted, the Web.config settings are safe from prying eyes. Furthermore, when retrieving encrypted congifuration settings programmatically in your ASP.NET pages, ASP.NET will automatically decrypt the encrypted sections its reading. In short, once the configuration information in encrypted, you don't need to write any further code or take any further action to use that encrypted data in your application. read more...

add a comment |category: |Views: 5

tags: another

13 Productivity Tips for ADO.NET 2.0(devx.com)

submitted by k000derk000der(4765) 6 years, 3 months ago

13 Productivity Tips for ADO.NET 2.0 read more...

2 comments |category: |Views: 2

tags: another

Url Rewriting with Regex for ASP.NET 2.0(devel.oping.net)

submitted by jxlarreajxlarrea(225) 6 years, 3 months ago

A new feature in ASP.NET 2.0 is it's built-in url rewriting support. When i looked into this new feature i found out it lacked regular expressions support, wich is really the point of an Url Mapper. ScottGlu at his blog, explains the reason why the ASP.NET team didn't implemented this feature. Basically they realized that a full featured version would want to take advantage of the next IIS 7.0 new features, specially the support for all content-types (images and directories). Anyway, it's really simple to implement a Url Rewriting Module with Regex support in ASP.NET. I wrote a quick and simple HttpModule for this. read more...

add a comment |category: |Views: 6

tags: another

Extend Team Foundation Server To Enable Continuous Integration(msdn.microsoft.com)

submitted by MarthaBassMarthaBass(490) 6 years, 3 months ago

Many development teams have adopted "agile" methodologies to manage change and to improve software quality. These methodologies promote continuous integration as a practice to build and test software products incrementally as new features are included, bugs are fixed, and code is refactored. So how does Visual Studio® 2005 Team System and Team Foundation Server facilitate the process of agile development and continuous integration? This article answers that question by creating an example project using agile concepts such as test-driven development (TDD) using the new unit testing features in Visual Studio 2005 Team System. After the project is completed, I'll show how to create a team project using Team Foundation Server and use this technology's extensibility features to build a custom Web service that enables continuous integration to build the application as code is checked into source control. read more...

add a comment |category: |Views: 8

tags: another