nielsh

Stories kicked by nielsh

HOW TO: Navigate quickly back and forth between Definitions (thoughtblog.com)

submitted by nielshnielsh(55) 6 years, 1 month ago

How many times have you viewed a defintiion of a class only to have to cycle through all the tabs to find where you previously were? This how to shows how to use the back and forth buttons on the mouse and its hot keys to quickly navigate in your code. read more...

add a comment |category: |Views: 1

tags: another

Upcoming ASP.NET Releases in April (weblogs.asp.net)

submitted by k000derk000der(4765) 6 years, 1 month ago

Upcoming ASP.NET Releases in April by ScottGu read more...

add a comment |category: |Views: 0

tags: another

Save Your Visual Studio 2003 Settings(haacked.com)

submitted by kimshureekimshuree(120) 6 years, 1 month ago

Need a way to save your Visual Studio 2003 settings when going to another computer? read more...

add a comment |category: |Views: 1

tags: another

HOW TO: Do Column Text Selection in Visual Studio 2003/2005(thoughtblog.com)

submitted by kimshureekimshuree(120) 6 years, 1 month ago

Ever need to do a Column Selection of Text in Visual Studio 2003 or 2005? Check out this Tip on how to dit. read more...

3 comments |category: |Views: 17

tags: another

Encoding and Decoding a string to Base64 for QueryStrings(community.devpinoy.org)

submitted by keithrullkeithrull(70) 6 years, 1 month ago

A friend of mine asked me today about encoding a string Base64. The scenario was that he has some files that he wants to be allowed for download on their company website and that he doesn't want the people who are downloading the files from his website to see where the downloads are coming from. The files are located in a folder inside the webserver outside of the virtual directory. The decision that the came up with was just to Base64 encode all the paths, pass ito to a new page via querystring and then decode that value on the download page. I gave it a shot and this is the code i gave him to serve as a guide on how he can effectively implement this. read more...

add a comment |category: |Views: 12

tags: another

HOW TO: Using Surrounds with in Visual Studio 2005(thoughtblog.com)

submitted by kimshureekimshuree(120) 6 years, 2 months ago

Kick guide on how to use the Surrounds with feature in Visual Studio 2005 read more...

add a comment |category: |Views: 4

tags: another

Using SharePoint Web Services to Change Subsite Permissions(aspalliance.com)

submitted by dbteqdbteq(115) 6 years, 2 months ago

Microsoft has provided SharePoint class libraries and web services for not only creating and updating a SharePoint site and its contents manually, but also programmatically. This article introduces how to use SharePoint web services to loop through all the sub sites to add roles, add users to site roles, and update role permissions on site and list levels. read more...

add a comment |category: |Views: 40

tags: another

Eric's weblog - Update User's Session with AJAX(radio.javaranch.com)

submitted by ColdChilliColdChilli(55) 6 years, 2 months ago

Shows how to warn or update a users ASP.Net session using AJAX/Atlas read more...

add a comment |category: |Views: 5

tags: another

4 ways to send a PDF file to the IE Client in ASP.NET(blogs.msdn.com)

submitted by itzrahulsoniitzrahulsoni(745) 6 years, 2 months ago

This blog entry shows you four different ways to send a PDF file to the IE Client. You also have the full source code zipped along. read more...

add a comment |category: |Views: 2

tags: another

Constructors in C#(aspalliance.com)

submitted by dbteqdbteq(115) 6 years, 2 months ago

This article covers the basic concepts of constructors in C# and discusses constructor overloading, types of constructors, and the behavior of constructors in inheritance, with some sample programs. A constructor is used to provide initialization code that gets executed every time the class is instantiated. Constructors cannot be "virtual". A good understanding of constructors is a prerequisite for all class designers. read more...

add a comment |category: |Views: 4

tags: another

Design Patterns in C#(dofactory.com)

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

The Gang of Four (GoF) patterns are generally considered the foundation for all other patterns. They are categorized in three groups: Creational, Structural, and Behavioral. Here you will find information on these important patterns. read more...

1 comment |category: |Views: 10

tags: another

Using MySQL with .NET(developerfusion.co.uk)

submitted by cainfotechcainfotech(460) 6 years, 3 months ago

It is realy amazing to combine a powerful platform like .net with a free database like MySql. Well the credit goes to the ODBC database functions in ADO .net. You install it and its ready for the action and rollover to build a simple application for reading a table built in MySQ. Read to know more about using My SQL with . NET..... read more...

add a comment |category: |Views: 24

tags: another

Awesome ASP.NET 2.0 RSS Tool-Kit Released(weblogs.asp.net)

submitted by firstbytefirstbyte(175) 6 years, 3 months ago

It provides support for both consuming and exposing RSS from ASP.NET 2.0 applications with full source code. Some of the features: - RSS Data-binding Control Support - Strongly Typed RSS API Support - RSS Publishing Support - Personalized RSS Feed Integration with ASP.NET Authentication System - Automatic Caching of RSS Feed read more...

1 comment |category: |Views: 1

tags: another

Paging Records Using SQL Server 2005 Database - ROW_NUMBER Function(davidhayden.com)

submitted by gavinjoycegavinjoyce(25.7k) 6 years, 4 months ago

SQL Server 2005 has a ROW_NUMBER Function that can help with paging records for you database applications. ROW_NUMBER returns a sequential number, starting at 1, for each row returned in a resultset. David Hayden outlines its use in VB.NET. read more...

add a comment |category: |Views: 33

tags: another