ASPWire

 SERVICES
 Tech Jobs
 Make Home Page

 OTHER WIRES
 Database Journal
 VBWire

internet.com
IT
Developer
Internet News
Small Business
Personal Technology
International

Search internet.com
Advertise
Corporate Info
Newsletters
Tech Jobs
E-mail Offers
internet.commerce
valign=middle>

Be a Commerce Partner










Welcome to ASPWire!

 Free Newsletter 

We offer a free weekly newsletter covering all news related to Active Server Pages! Subscribe today! Just enter your email address and press enter! 




Friday, July 3, 2009 Last Updated: 6:00 pm ET

New Additions to the ASP.NET Control Gallery!06/30 - ASP.NET: News
Work with Excel files, create charts, try out some web parts and more in this week's additions to the ASP.NET Control Gallery.

Examining ASP.NET's Membership, Roles, and Profile - Part 1506/30 - 4GuysFromRolla.com Headlines
When a visitor registers a new account on an ASP.NET website that uses the Membership system, they are prompted (by default) for their username, password, e-mail address, and other pertinent information. Along with functionality for registering new accounts, the ASP.NET Membership system provides page developers techniques for modifying information about users. For instance, with just a couple of lines of code you can change an existing user's e-mail address, approve a user, or unlock them (if their account was locked out). However, there are certain bits of user information that cannot be modified through the Membership API, such as the username.For most sites this is a non-issue. Once a visitor has registered an account that username is fixed; if they want a different username,

Interactive Sorting in SQL Server Reporting Services07/03 - 15Seconds.com Features
SQL Server 2005 Reporting Services has an interactive sorting feature built-in that allows you to click on the header of a column in a report to sort the report by that column. Unfortunately previous versions do not include this feature. This article will show you how to use the Render Report by URL technique to implement interactive sorting.

How to Build a .NET Solution or Project from a Command Prompt06/30 - DevX: Latest .NET News
You don't always have to use Visual Studio to compile your solution or project; you can build from a command prompt.

Introducing the Entity Framework07/02 - CodeGuru C#
The Entity Framework provides a .NET class-based model of a data store, letting you query the model with LINQ, while the model do the background grunt work of contacting the data store to add, update, or delete data.

3D Capabilities in Silverlight 306/29 - ASPAlliance: articles
In this article, Sergey examines the 3D capabilities in Silverlight 3 that were not supported in previous versions of Silverlight. It became possible in Silverlight 3 to create 3D projections of content in an application. Sergey provides a detailed explanation of the various aspects with relevant source code examples along with screen shots including the usage of animation.

A Taste of JavaFX for the Uninitiated07/02 - DevX: Latest Web Development Content 2
JavaFX is a scripting language that provides built-in properties for manipulating objects within a 2D coordinate system. Read this introduction to learn how to build apps that tap the full potential of JavaFX.

Examining ASP.NET's Membership, Roles, and Profile - Part 1506/30 - ASP 101 News
This article, by Scott Mitchell, shows how to customize ASP.NET's Membership system to allow users to change their username.

How to Test a Web Application07/02 - ASPFree: news
Welcome to the conclusion of a five-part article series on building web applications with ASP.NET. Now that we ve built our web application we need to test it. This article is excerpted from chapter two of em Murach s ASP.NET 3.5 Web Programming with VB 2 8 em written by Anne Boehm Murach 2 8 ISBN 189 774472 ....
Adobe Solutions for Higher Education Prepare Your Students for a Brighter Future.

New Podcasts!06/18 - ASP.NET: News
We've now added podcasts from the Coding QA Podcast, as well as Hanselminutes and .Net Rocks! Listen to popular community members discuss and debate issues of interest to all ASP.NET developers.

ASP.NET Master Page Advice, Tips, and Tricks06/23 - 4GuysFromRolla.com Headlines
Master pages are an important part of any ASP.NET website. In a nutshell, a master page allows the page developer to define a website template, indicating what portions of the template are to remain fixed across pages that use the template and what regions of the template are customizable on a page-by-page basis. Having the site design and layout centralized in one (or more) master pages makes it easy to add new pages to the site that inherit the same look and feel and greatly simplifies changing the site design or adding or removing content that is common to all pages, such as content in the <head> element, footers, and references to CSS and JavaScript

Introduction to Version Control with Subversion07/03 - 15Seconds.com Features
Whether you call it source control, version control, or source code management, if you're in the business of software development, providing a safe repository for your code is critical. This article offers a quick introduction to Subversion, an open-source version control system that you can get for free and have up and running in just a few minutes.

Convert Hashtable Keys or Values into an ArrayList06/30 - DevX: Latest .NET News
The key is to use the ArrayList constructor that takes an ICollection.

Using the Task Parallel Library and PLINQ to Go Parallel06/30 - CodeGuru C#
With more and more computers using a multi-core processor, the free lunch of increased clock speeds and the inherent performance gains are over. Software developers must instead make sure their applications take use of all the cores available in an efficient manner. New features in .NET 4.0 mean that managed code developers too can join the party.

How to handle multiple queries simultaneously in Crystal reports connecting from Business object Universe.06/23 - ASPAlliance: articles
We have come across a situation where we have to generate the report from more then 2 queries using crystal reports. All queries are different -- 2 transaction tables with relevant joins from dimension tables. So to make the report we have to create 2 different connections from the universe and it eventually gave performance problems when dealing with a large sets of records. In this case, we have to link each query with the others on the basis of common dimensions. While fetching a report with a large amount of data, it takes a lot of time to complete.

A Guide to Caching and Compression for High Performance Web Applications07/01 - DevX: Latest Web Development Content 2
Understanding HTTP's cache headers and compression capabilities is a prerequisite for building high-performance web applications.

Convert Hashtable Keys or Values into an ArrayList06/30 - ASP 101 News
The key is to use the ArrayList constructor that takes an ICollection.

How to Add Code and Validation Controls to a Form07/01 - ASPFree: news
Welcome to the fourth part of a five-part article series on building web applications with ASP.NET. In this part our form really starts taking shape as we add validation controls -- something which belongs on every web-facing form. This article is excerpted from chapter two of em Murach s ASP.NET 3.5 Web Programming with VB 2 8 em written by Anne Boehm Murach 2 8 ISBN 189 774472 ....
Automate Software Builds with Visual Build Pro Easily create an automated, repeatable process for building and deploying software.

Contribute to the ASP.NET Wiki06/16 - ASP.NET: News
Shared and expand your knowledge about the Report Viewer, GridViews, CheckBoxLists, and more in the ASP.NET Wiki. Earn Community Recognition points by contributing!

Using ASP.NET 3.5's ListView and DataPager Controls: Inserting Data06/16 - 4GuysFromRolla.com Headlines
The ListView control is similar to the GridView control in many ways: both display a set of records, both support built-in sorting, paging, editing, and deleting functionality with minimal effort. The ListView differs from the GridView in two key ways:
  • Rather than using fields, the ListView is rendered via templates, which offers the page developer much finer control over the emitted markup, and
  • The ListView supports built-in inserting support
The first installment in this series explored the ListView's template-based rendering. This installment looks at how to use the ListView's inserting functionality.In a

Examining ASP.NET's Membership, Roles, and Profile - Part 1506/30 - ASP 101 News
This article, by Scott Mitchell, shows how to customize ASP.NET's Membership system to allow users to change their username.

3D Capabilities in Silverlight 306/29 - ASPAlliance: articles
In this article, Sergey examines the 3D capabilities in Silverlight 3 that were not supported in previous versions of Silverlight. It became possible in Silverlight 3 to create 3D projections of content in an application. Sergey provides a detailed explanation of the various aspects with relevant source code examples along with screen shots including the usage of animation.

Introduction to Version Control with Subversion07/03 - 15Seconds.com Features
Whether you call it source control, version control, or source code management, if you're in the business of software development, providing a safe repository for your code is critical. This article offers a quick introduction to Subversion, an open-source version control system that you can get for free and have up and running in just a few minutes.

Using the Task Parallel Library and PLINQ to Go Parallel06/30 - CodeGuru C#
With more and more computers using a multi-core processor, the free lunch of increased clock speeds and the inherent performance gains are over. Software developers must instead make sure their applications take use of all the cores available in an efficient manner. New features in .NET 4.0 mean that managed code developers too can join the party.

Examining ASP.NET's Membership, Roles, and Profile - Part 1506/30 - 4GuysFromRolla.com Headlines
When a visitor registers a new account on an ASP.NET website that uses the Membership system, they are prompted (by default) for their username, password, e-mail address, and other pertinent information. Along with functionality for registering new accounts, the ASP.NET Membership system provides page developers techniques for modifying information about users. For instance, with just a couple of lines of code you can change an existing user's e-mail address, approve a user, or unlock them (if their account was locked out). However, there are certain bits of user information that cannot be modified through the Membership API, such as the username.For most sites this is a non-issue. Once a visitor has registered an account that username is fixed; if they want a different username,

A Taste of JavaFX for the Uninitiated07/02 - DevX: Latest Web Development Content 2
JavaFX is a scripting language that provides built-in properties for manipulating objects within a 2D coordinate system. Read this introduction to learn how to build apps that tap the full potential of JavaFX.

How to Test a Web Application07/02 - ASPFree: news
Welcome to the conclusion of a five-part article series on building web applications with ASP.NET. Now that we ve built our web application we need to test it. This article is excerpted from chapter two of em Murach s ASP.NET 3.5 Web Programming with VB 2 8 em written by Anne Boehm Murach 2 8 ISBN 189 774472 ....
MONITOR Your Virtual Infrastructure FREE Prevent and Solve Problems with vWire. Download Your 30-Day FREE TRIAL Today!

New Additions to the ASP.NET Control Gallery!06/30 - ASP.NET: News
Work with Excel files, create charts, try out some web parts and more in this week's additions to the ASP.NET Control Gallery.

How to Build a .NET Solution or Project from a Command Prompt06/30 - DevX: Latest .NET News
You don't always have to use Visual Studio to compile your solution or project; you can build from a command prompt.

Going Parallel with the Task Parallel Library and PLINQ06/30 - ASP 101 News
With more and more computers using a multi-core processor, the free lunch of increased clock speeds and the inherent performance gains are over. Software developers must instead make sure their applications take use of all the cores available in an efficient manner. New features in .NET 4.0 mean that managed code developers too can join the party.

How to handle multiple queries simultaneously in Crystal reports connecting from Business object Universe.06/23 - ASPAlliance: articles
We have come across a situation where we have to generate the report from more then 2 queries using crystal reports. All queries are different -- 2 transaction tables with relevant joins from dimension tables. So to make the report we have to create 2 different connections from the universe and it eventually gave performance problems when dealing with a large sets of records. In this case, we have to link each query with the others on the basis of common dimensions. While fetching a report with a large amount of data, it takes a lot of time to complete.

A Sneak Peek at the Windows 7 Beta07/03 - 15Seconds.com Features
With the Beta of Windows 7 scheduled to be made publicly available later today, I thought the timing was perfect to give you a sneak peek at what you can expect. This article will give you a quick overview of the new OS and will allow those of you who just want a quick look to forgo the large download. For those of you who decide to download it anyway, this will give you something to read while you're waiting.

Using Team Build to Build Database Projects06/23 - CodeGuru C#
Customize the Team Build project file to automatically deploy the database build script to a target database.

ASP.NET Master Page Advice, Tips, and Tricks06/23 - 4GuysFromRolla.com Headlines
Master pages are an important part of any ASP.NET website. In a nutshell, a master page allows the page developer to define a website template, indicating what portions of the template are to remain fixed across pages that use the template and what regions of the template are customizable on a page-by-page basis. Having the site design and layout centralized in one (or more) master pages makes it easy to add new pages to the site that inherit the same look and feel and greatly simplifies changing the site design or adding or removing content that is common to all pages, such as content in the <head> element, footers, and references to CSS and JavaScript

A Guide to Caching and Compression for High Performance Web Applications07/01 - DevX: Latest Web Development Content 2
Understanding HTTP's cache headers and compression capabilities is a prerequisite for building high-performance web applications.

How to Add Code and Validation Controls to a Form07/01 - ASPFree: news
Welcome to the fourth part of a five-part article series on building web applications with ASP.NET. In this part our form really starts taking shape as we add validation controls -- something which belongs on every web-facing form. This article is excerpted from chapter two of em Murach s ASP.NET 3.5 Web Programming with VB 2 8 em written by Anne Boehm Murach 2 8 ISBN 189 774472 ....
Adobe Solutions for Higher Education Prepare Your Students for a Brighter Future.

New Podcasts!06/18 - ASP.NET: News
We've now added podcasts from the Coding QA Podcast, as well as Hanselminutes and .Net Rocks! Listen to popular community members discuss and debate issues of interest to all ASP.NET developers.

Convert Hashtable Keys or Values into an ArrayList06/30 - DevX: Latest .NET News
The key is to use the ArrayList constructor that takes an ICollection.

Going Parallel with the Task Parallel Library and PLINQ06/30 - ASP 101 News
With more and more computers using a multi-core processor, the free lunch of increased clock speeds and the inherent performance gains are over. Software developers must instead make sure their applications take use of all the cores available in an efficient manner. New features in .NET 4.0 mean that managed code developers too can join the party.

Usage of VisualStateManager to Define User Interface in Silverlight 306/22 - ASPAlliance: articles
In this article, Sergey describes the role of VisualStateManager in defining user interfaces using Silverlight 3. He begins with a short introduction of the relevant concepts and then examines the basic anatomy of the VisualStateManager and the definition of states with the help of source code examples and supported figures. The whole concept simpler to use than triggers.



archives



  Back to top