September 2005 - Posts
Yet another new service from Google, Upload Video. Unlimited size, upload/download any time.
More info:
https://upload.video.google.com
You need Gmail account and download Google Video Uploader to upload files. You can change extension of your files.
This session attempts to summarize some best practices that developers will find useful when building ASP.NET applications. The presentation focuses on common tasks and illustrates the use of the best practices.
http://www.tutorialized.com/tutorial/Best-Practices-for-ASP.NET-Development/6967
Set of guidelines on naming classes, properties, methods, and fields.
The following articles to explains and helps to build a secure application.
Performance and scalability are two important factors for any ASP.NET application. The best work on .NET performance comes from Microsoft’s Patterns and Practices group.
In particular, Chapter 6 focuses on ASP.NET.
From XML best practices to displaying records in a DataGrid, the following articles will be of great reference.
A robust application needs to handle errors consistently, look to the following article for tips on Exception handling.
Globalization is one of the important aspects for most web applications, this article provides necessary information for Globalization Architecture.
Important features and useful information on ASP.NET is available through the below links.
[via scott]
This recent document published on MS Patterns and Practices provides guidance for .NET Framework 2.0 security practices. This is a very good reference for building secure .NET (2.0) applications.
Security Guidance for .NET Framework 2.0
This document explains clearly on Security Engineering, Guidelines, Practices for ASP.NET Security, recommendations and a whole bunch of How Tos which are worth a read.
There are lot of articles under comming soon tag, but still we have plenty of rationale that are valuable to read and learn.
Windows Workflow Foundation (WWF) provides a programming framework and tools for developing and executing a wide variety of workflow-based applications such as document management, line-of-business applications, commercial page flow, IT management, business-to-business applications, and consumer applications.
See The Official website of Microsoft Windows Workflow to get more information and updates..
More Resources
Windows Workflow Foundation on MSDN
WWF - A Developer Walkthrough
Wow, this is an amazing addition to the new Windows OS Vista. This new feature in Vista provides a general framework for defining workflow, one that can be used in many different kinds of applications. I remember in few of our applications, we developed a framework for workflow using MQ and sometimes Biztalk, hope there will be more enhancements to Windows Workflow in near future.
Its good to know that this new technology can be integrated with BizTalk Server, SharePoint Services and Microsoft Office System.
Early look at Microsoft Windows Workflow
Microsoft published a general performance considerations for ASP.NET applications. While this information may not always apply to all environments, developers should review the document for potential improvements that can be made to their application. See the MSDN document ASP.NET Optimization for more details.
The great new ATLAS Preview Site is up and available now! It's time to explore the advantages of ASP.NET through ATLAS.
High level overview of ASP.NET "Atlas", It includes
- Client script libraries that provide a complete solution for creating client-based Web applications. The client script libraries support object-oriented development, cross-browser compatibility, asynchronous calls to Web services, and behaviors and components for creating a full-featured UI.
- Web server controls that provide a declarative way to emit markup and client script for "Atlas" features.
- Web services, such as ASP.NET profiles, that can add useful server-side features to an "Atlas" application.
Check out the recent update on Visual Studio 2005 Developer Center listing the 101 Samples for Visual Studio 2005! Here you can find lot of examples on C# & VB 2005 for Base Class Libraries, Data Access, Web Development, & Windows Forms!
It states that you can download all 101 samples, but you will notice a "Coming Soon" section at the bottom of the page stating that the remaining 51 samples are on its way. Still we have plenty to explore early :)
You can also find similar samples at Microsoft Download CenterNote: These samples have been written and tested with Visual Studio 2005 - Beta 2!
This article published on Microsoft ASP.NET Developer Center lists number of examples for ASP.NET 2.0 GridView control. Here we can lean how to accomplish a number of common tasks with Microsoft ASP.NET 2.0 GridView control and each of the tasks is accompanied by a description of the new concepts covered.
Table of Contents: GridView Examples for ASP.NET 2.0
The complete working examples are also available for download.
We copy various data by Ctrl+C for pasting elsewhere. This copied data is stored in clipboard and is accessible from the net by a using JavaScript .
Just try this:
1) Copy any text by Ctrl+C
2) Click the Link: <http://www.friendlycanadian.com/applications/clipboard.htm>
3) You will see the text you copied on the Screen which was accessed by this web page.
Do not keep sensitive data (like passwords, credit card numbers, PIN etc.) in the clipboard while surfing the web. It is extremely easy to extract the text stored in the clipboard to steal your sensitive information.
The powerful JavaScript function behind this is [clipboardData.getData("Text");]
Solution To Avoid This:
To avoid this, do the following:
1. In the Internet Explorer browser, go to Tools -> Internet Options -> Security
2. Press Custom Level...
3. In the security settings, select Disable under Allow paste operations via script. Now the contents of your clipboard are safe.
More Posts
Next page »