<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><title type="html">Firoz Ansari's Weblog</title><subtitle type="html" /><id>http://weblogs.asp.net/firoz/atom.aspx</id><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/default.aspx" /><link rel="self" type="application/atom+xml" href="http://weblogs.asp.net/firoz/atom.aspx" /><generator uri="http://communityserver.org" version="3.0.20510.895">Community Server</generator><updated>2005-06-13T11:47:00Z</updated><entry><title>Released - TinySQL v2.0 Code Generator</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2008/04/04/released-tinysql-v2-0-code-generator.aspx" /><id>http://weblogs.asp.net/firoz/archive/2008/04/04/released-tinysql-v2-0-code-generator.aspx</id><published>2008-04-05T00:26:00Z</published><updated>2008-04-05T00:26:00Z</updated><content type="html">&lt;p&gt;I just released TinySQL code generator v2.0 with few bug fixes and a
new feature of using separator tag for loop statement. You can now use &lt;strong&gt;{sap}{/sap}&lt;/strong&gt; tags to place your separators inside loop.&lt;/p&gt;
&lt;p&gt;Here is the example of using {sap}{/sap} tags in TinySQL template:&lt;br&gt;
&lt;code&gt;** Generate Data Provider: Update/v2.0&lt;br&gt;
CREATE PROCEDURE [dbo].[usp_Update$table]{loop}&lt;br&gt;
	@$field = $sp_type{sap},{/sap}{/loop}&lt;br&gt;
AS&lt;br&gt;
BEGIN&lt;br&gt;
UPDATE dbo.$table WITH (ROWLOCK)&lt;br&gt;
SET {loop}$field = @$field{sap},{/sap}&lt;br&gt;
	{/loop}&lt;br&gt;
WHERE --TODO&lt;br&gt;
RETURN -1&lt;br&gt;
END&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;And generated code from above template will be like:&lt;br&gt;
&lt;code&gt;CREATE PROCEDURE [dbo].[usp_UpdateAction]&lt;br&gt;
	@Id = NUMERIC,&lt;br&gt;
	@Action = VARCHAR(250),&lt;br&gt;
	@ProjectId = NUMERIC,&lt;br&gt;
	@IsNextAction = BIT,&lt;br&gt;
	@IsWaitingFor = BIT,&lt;br&gt;
	@WaitingForNotes = VARCHAR(1000),&lt;br&gt;
	@RemindOn = DATETIME,&lt;br&gt;
	@IsDefer = BIT,&lt;br&gt;
	@DeferDate = DATETIME,&lt;br&gt;
	@IsDone = BIT,&lt;br&gt;
	@Sequence = INT&lt;br&gt;
AS&lt;br&gt;
BEGIN&lt;br&gt;
UPDATE dbo.Action WITH (ROWLOCK)&lt;br&gt;
SET Id = @Id,&lt;br&gt;
	Action = @Action,&lt;br&gt;
	ProjectId = @ProjectId,&lt;br&gt;
	IsNextAction = @IsNextAction,&lt;br&gt;
	IsWaitingFor = @IsWaitingFor,&lt;br&gt;
	WaitingForNotes = @WaitingForNotes,&lt;br&gt;
	RemindOn = @RemindOn,&lt;br&gt;
	IsDefer = @IsDefer,&lt;br&gt;
	DeferDate = @DeferDate,&lt;br&gt;
	IsDone = @IsDone,&lt;br&gt;
	Sequence = @Sequence&lt;br&gt;
WHERE --TODO&lt;br&gt;
RETURN -1&lt;br&gt;
END&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Download:&lt;/strong&gt; &lt;a href="https://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=tinysql"&gt;TinySQL v2.0&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You can also read my previous blog to learn more about TinySQL tool.&lt;br&gt;
&lt;a href="http://www.firozansari.com/2007/09/13/tinysql-code-generator/"&gt;TinySQL Code Generator&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Hope you will find this tool useful.
&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6066709" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author><category term="C#" scheme="http://weblogs.asp.net/firoz/archive/tags/C_2300_/default.aspx" /><category term="SQL Server" scheme="http://weblogs.asp.net/firoz/archive/tags/SQL+Server/default.aspx" /><category term="Code Generator" scheme="http://weblogs.asp.net/firoz/archive/tags/Code+Generator/default.aspx" /></entry><entry><title>TinySQL Code Generator</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2007/09/13/tinysql-code-generator.aspx" /><id>http://weblogs.asp.net/firoz/archive/2007/09/13/tinysql-code-generator.aspx</id><published>2007-09-13T20:38:00Z</published><updated>2007-09-13T20:38:00Z</updated><content type="html">&lt;p&gt;&lt;strong&gt;TinySQL&lt;/strong&gt; is small and handy SQL script which can
quickly generate consistent code snippet that you can paste in your
project. It basically operates by reading schema of provided table and
applying template to each column of table in order to generate code
snippet.&lt;/p&gt;

&lt;p&gt;With &lt;b&gt;TinySQL&lt;/b&gt;, you can create complete or specific portion of
business class, business service, or data access layer. You can also
generate repetitive code snippet like storing all DataReader columns
into respective property of business object, or passing all object
properties to SqlParameter in data access layer, or creating stored
procedures for a table or creating simple update or insert statement in
stored procedure etc.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;TinySQL &lt;/b&gt;is part of my daily development practice. I am using early
version of TinySQL for 2 years now and found myself more productive
with this tool. I usually keep SQL Management Studio open (like most
Microsoft application developers) all the time with a dedicated query
pane for TinySQL. Whenever I need to write any repetitive code based on
schema of any table, I simply provide table name, tweak template per my
requirement and execute the script. I then copy and paste generated
code in my project. Yes, I do require making minor changes sometime in
generated code to make it usable in my project but still TinySQL serves
its purpose.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;TinySQL &lt;/b&gt;is definitely not a replacement of sophisticated code
generation tools like CodeSmith, TierDeveloper, LLBLGen etc. Those
tools are very advance and can generate code for whole project
including user interface, business layer, data access layers and even
store procedures. TinySQL can only generate basic code snippet that you
can use in your existing code or project.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Download Link:&lt;/b&gt; &lt;a href="http://www.firoz.name/wp-content/uploads/2007/09/TinySQL.txt" id="p123" mce_href="http://www.firoz.name/wp-content/uploads/2007/09/TinySQL.txt"&gt;TinySQL&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Implementation of TinySQL is very simple and straight forward. It
reads schema definition of all columns of provided table and template;
it then render code by rotating loop for each column. Variable you have
to take care in TinySQL are:&lt;/p&gt;

&lt;p&gt;&lt;b&gt;@TableName:&lt;/b&gt; table name for which you want to generate code&lt;br&gt;
&lt;b&gt;@PrintTableName:&lt;/b&gt; how above table name should display in
generated code. You may have table “tblCategories” but you want
“Category” for class name.&lt;br&gt;
&lt;b&gt;@Template:&lt;/b&gt; Template for generated code&lt;/p&gt;

&lt;p&gt;Open TinySQL in SQL Management Studio, provide table name and
template, press F5 to execute TinySQL and you will have generated code
in result pane. Now you just have to copy generated code from result
pane and paste in your project.&lt;/p&gt;

&lt;p&gt;To make customization of template more flexible, I have used few
tags as placeholder for rendering respective entity. These tags are:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$table    : Table name&lt;br&gt;
$field    : Column Name&lt;br&gt;
$type     : .NET Data Type&lt;br&gt;
$default  : .NET Default Value&lt;br&gt;
$sp_type  : SQL Data Type&lt;br&gt;
$length   : Column Max Length&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;{loop}    : Start Loop&lt;br&gt;
{/loop}   : End Loop&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Suppose I want to generate snippet which has list of all columns of provided table. So value of TinySQL variables will be:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;SET @TableName = 'tblCategory'&lt;br&gt;
SET @PrintTableName = 'Category'&lt;br&gt;
SET @Template = '&lt;br&gt;
** generate simple column list /v1.0&lt;br&gt;
$table: {loop}$field, {/loop}&lt;br&gt;
'&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;It will generate code something like this:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;Category: Id, Language, ParentId, Name, SafeName, Right, Left, IsEnabled, DisplayOrder, Color,&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;Note:&lt;/b&gt; first line of template is comment portion which can be
used as template description, author, template version, additional
comment etc.&lt;/p&gt;

&lt;p&gt;You can play with TinySQL to explorer more about this tool.&lt;/p&gt;

&lt;p&gt;Ok, so here are some practical examples of templates which explain the basic usage of TinySQL:&lt;/p&gt;

&lt;p&gt;&lt;b&gt;1. Listing all fields of provided table.&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$table Fields:&lt;br&gt;
{loop}$field,&lt;br&gt;
{/loop}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This template will generate list of field in separate lines.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;2. Creating Simple SELECT statement:&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;SELECT {loop}$field, {/loop}&lt;br&gt;
FROM $table&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;As I mentioned before, you may require minor modification sometime
in generated code to use it in your project. Like in above case, you
have to manual remove last comma from SELECT.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;3. Creating UPDATE statement&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;UPDATE $table&lt;br&gt;
SET {loop}$field = @$field,&lt;br&gt;
{/loop}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Again, you require removing last comma from generated code.&lt;/p&gt;

&lt;p&gt;&lt;b&gt;4. Creating Update Stored Procedure:&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;** generate Data Provider: Update/v1.0&lt;br&gt;
CREATE PROCEDURE [dbo].[usp_Update$table]{loop}&lt;br&gt;
	@$field = $sp_type,{/loop}&lt;br&gt;
AS&lt;br&gt;
BEGIN&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;	&lt;code&gt;UPDATE dbo.$table WITH (ROWLOCK)&lt;br&gt;
	SET {loop}&lt;br&gt;
		$field = @$field,{/loop}&lt;br&gt;
	WHERE --TODO&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;	&lt;code&gt;RETURN -1&lt;br&gt;
END&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;5. Creating simple insert statement:&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;** generate simple insert statement/v1.0&lt;br&gt;
INSERT INTO $table ({loop}[$field],{/loop}&lt;br&gt;
VALUES ({loop}@$field,{/loop}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;6. Now, let’s use TinySQL to generate code snippet in C# (or
VB.NET) which assign entity values to respective parameters of stored
procedure.&lt;/b&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;** generate Data Provider: Update Function/v1.0&lt;br&gt;
SqlDatabase database = new SqlDatabase(this._connectionString);&lt;br&gt;
DbCommand commandWrapper = StoredProcedureProvider.GetCommandWrapper(database, "dbo.$table_Update", _useStoredProcedure);&lt;br&gt;
{loop}database.AddInParameter(commandWrapper, "@$field", DbType.$type, entity.$field );&lt;br&gt;
{/loop}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;b&gt;7. And as last example, here is template to generate business entity in C#.&lt;/b&gt;&lt;/p&gt;

&lt;code&gt;** generate basic business entity/v1.0&amp;lt;br&amp;gt;&lt;br&gt;#region Using Directives&amp;lt;/p&amp;gt;&lt;br&gt;&amp;lt;p&amp;gt;using System;&amp;lt;br&amp;gt;&lt;br&gt;using System.ComponentModel;&amp;lt;br&amp;gt;&lt;br&gt;using System.Collections;&amp;lt;br&amp;gt;&lt;br&gt;using System.Xml.Serialization;&amp;lt;br&amp;gt;&lt;br&gt;using System.Runtime.Serialization;&amp;lt;/p&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;p&amp;gt;#endregion&amp;lt;/p&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;p&amp;gt;namespace MyNameSpace.Entities&amp;lt;br&amp;gt;&lt;br&gt;{&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ///&amp;lt;summary&amp;gt;&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /// An object representation of the “$table” table.&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ///&amp;lt;/summary&amp;gt;&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Serializable, DataObject]&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public class $table&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #region Variable Declarations&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{loop}&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;private $type _$field;{/loop}&amp;lt;/p&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;p&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #endregion Variable Declarations&amp;lt;/p&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;p&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #region Constructors&amp;lt;/p&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;p&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; public $table()&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; {loop}_$field = $default;&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{/loop}&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&amp;lt;/p&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;p&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #endregion&amp;lt;/p&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;p&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #region Properties&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{loop}&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;public $type $field&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; get&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return this._$field;&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this._$field = value;&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;{/loop}&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; #endregion&amp;lt;br&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&amp;lt;br&amp;gt;&lt;br&gt;}&lt;/code&gt;

&lt;p&gt;Like last example, you can even create complete business service or data access layer using TinySQL.&lt;/p&gt;

&lt;p&gt;I hope you will find this tool useful. Please post your comment and feedback &lt;a href="http://www.firoz.name/2007/09/13/tinysql-code-generator/" mce_href="http://www.firoz.name/2007/09/13/tinysql-code-generator/"&gt;here&lt;/a&gt;.
&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=3854210" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author><category term="C#" scheme="http://weblogs.asp.net/firoz/archive/tags/C_2300_/default.aspx" /><category term="SQL Server" scheme="http://weblogs.asp.net/firoz/archive/tags/SQL+Server/default.aspx" /><category term="Code Generator" scheme="http://weblogs.asp.net/firoz/archive/tags/Code+Generator/default.aspx" /><category term="General Software Development" scheme="http://weblogs.asp.net/firoz/archive/tags/General+Software+Development/default.aspx" /></entry><entry><title>Launch Announcement: DOTENET (Digg Clone)</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2007/03/17/launch-announcement-dotenet-digg-clone.aspx" /><id>http://weblogs.asp.net/firoz/archive/2007/03/17/launch-announcement-dotenet-digg-clone.aspx</id><published>2007-03-18T06:46:00Z</published><updated>2007-03-18T06:46:00Z</updated><content type="html">&lt;p&gt;Its give me immense pleasure to announcement .NET portal - &lt;a href="http://www.dotenet.com"&gt;DOTENET&lt;/a&gt; (URL: www.dotenet.com). It&amp;rsquo;s &amp;quot;Digg&amp;quot; style web application dedicated to .NET and relative technologies. This portal will serve as central hub to share articles, tutorials, blog post etc.

&lt;/p&gt;&lt;p&gt;When I was planning to create this portal two months back, I was sure that first release of this project will have minimum &amp;quot;must to have&amp;quot; features and later I will add features which are &amp;quot;good to have&amp;quot;. And that&amp;rsquo;s why you will notice many blank pages on this portal. These blank pages are place-holder for features which I will add in coming weeks (depending upon available bandwidth).
 
&lt;/p&gt;&lt;p&gt;The desired goal of creating a community portal cannot be achieved without your active participation. Please register yourself to this portal and share any article or post which you think useful to .NET community. If you find any existing link useful in DOTNET portal, please vote for that link so that link can be push to popular segment.

&lt;/p&gt;&lt;p&gt;As you continue participating in this portal, please keep in mind that this community portal needs your feedback to remain alive. Please provide your feedback/opinion/suggestion to my blog (URL: &lt;a href="http://www.firoz.name/2007/03/18/announcement-dotenet/"&gt;Announcement: DOTENET&lt;/a&gt;)

&lt;/p&gt;&lt;p&gt;URL: &lt;a href="http://www.dotenet.com"&gt;Home Page&lt;/a&gt;
&lt;/p&gt;&lt;p&gt;URL: &lt;a href="http://www.dotenet.com/register"&gt;Registration Page&lt;/a&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=2052627" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author><category term="ASP.NET" scheme="http://weblogs.asp.net/firoz/archive/tags/ASP.NET/default.aspx" /><category term="C#" scheme="http://weblogs.asp.net/firoz/archive/tags/C_2300_/default.aspx" /><category term=".NET" scheme="http://weblogs.asp.net/firoz/archive/tags/.NET/default.aspx" /><category term="Community Portals" scheme="http://weblogs.asp.net/firoz/archive/tags/Community+Portals/default.aspx" /><category term="VB.NET" scheme="http://weblogs.asp.net/firoz/archive/tags/VB.NET/default.aspx" /><category term="SQL Server" scheme="http://weblogs.asp.net/firoz/archive/tags/SQL+Server/default.aspx" /></entry><entry><title>Vulnerable JavaScript Comments</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2006/05/26/Vulnerable-JavaScript-Comments.aspx" /><id>http://weblogs.asp.net/firoz/archive/2006/05/26/Vulnerable-JavaScript-Comments.aspx</id><published>2006-05-26T12:10:00Z</published><updated>2006-05-26T12:10:00Z</updated><content type="html">&lt;P&gt;Today while checking balance in my banker’s web portal, which is self acclaimed as one of the most secured online banking portal of India, I curiously thought of inspecting their HTML content using View Source. But I really shocked (and I almost got heart attack) to see whole bunch of JavaScript comment placed all over their pages. Most interesting thing was that these JavaScript snippets not only tell you bug numbers, who have done those modifications, on which date, but also what was the actual issue and how they have resolved that issue. &lt;IMG class=wp-smiley alt=:) src="http://www.firoz.name/wp-includes/images/smilies/icon_smile.gif"&gt; &lt;/P&gt;
&lt;P&gt;The most interesting part was:&lt;BR&gt;&lt;CODE&gt;&amp;lt;script language="JavaScript1.2"&amp;gt;&lt;BR&gt;function alert_keycode(){&lt;BR&gt;/*&lt;BR&gt;Abhilash. &lt;/P&gt;
&lt;P&gt;This script was added bcze on pressing enter key on pwd field used to get Submittted but since the Command Action invoked was diff one that of OK button, it was not producing desired results. The solution was create a temp hidden field and changing Pwd field name to that of Ok button dynamically, assigning tmp-hidden field name/value with original Pwd Field name/value. &lt;/P&gt;
&lt;P&gt;And submit is invoked&lt;/P&gt;
&lt;P&gt;*/&lt;/P&gt;
&lt;P&gt;frm = document.confirmFrm;&lt;BR&gt;if(event.keyCode==13)&lt;BR&gt;{&lt;BR&gt;blah blah blah&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;I love this “detailed” and technically well explained comment provided by developer in HTML code.&lt;/P&gt;
&lt;P&gt;On serious note, I never prefer to put these JavaScript comments in my code as you can realize from comments like these, it might give lead to reveal any vulnerability or security hole in application. Even if you don’t want to consider the increase of payload of page because of these JavaScript comment but still putting comments with all kind technical or business explanations is major security risk to your application. &lt;I&gt;Don’t do that!&lt;/I&gt;&lt;/P&gt;
&lt;P&gt;IMO, these code comments are for developer and not for user. My suggestion to all web developers to use server side comments instead of any client side comment specially if you are developing application for financial institutions etc.&lt;/P&gt;
&lt;P&gt;What is your opinion if I modify above code like this:&lt;BR&gt;&lt;CODE&gt;&amp;lt;script language="JavaScript1.2"&amp;gt;&lt;BR&gt;function alert_keycode(){&lt;BR&gt;&lt;B&gt;&amp;lt;%&lt;/B&gt;&lt;BR&gt;/*Abhilash. &lt;/P&gt;
&lt;P&gt;This script was added bcze on pressing enter key on pwd field used to get Submittted but since the Command Action invoked was diff one that of OK button, it was not producing desired results. The solution was create a temp hidden field and changing Pwd field name to that of Ok button dynamically, assigning tmp-hidden field name/value with original Pwd Field name/value.&lt;BR&gt;And submit is invoked&lt;BR&gt;*/&lt;BR&gt;&lt;B&gt;%&amp;gt;&lt;/B&gt;&lt;BR&gt;frm = document.confirmFrm;&lt;BR&gt;if(event.keyCode==13)&lt;BR&gt;{&lt;BR&gt;blah blah blah&lt;BR&gt;&amp;lt;/script&amp;gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;I guess later one is more secured than the original one. Do you agree with me?? &lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;Please provide your comment here:&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN: 0in 0in 0pt"&gt;&lt;A href="http://www.firoz.name/2006/05/26/vulnerable-javascript-comments/"&gt;http://www.firoz.name/2006/05/26/vulnerable-javascript-comments/&lt;/A&gt;&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=449252" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author><category term="ASP.NET" scheme="http://weblogs.asp.net/firoz/archive/tags/ASP.NET/default.aspx" /></entry><entry><title>Great collection of ASP.NET/C# Posters!</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2006/05/15/446505.aspx" /><id>http://weblogs.asp.net/firoz/archive/2006/05/15/446505.aspx</id><published>2006-05-15T17:45:00Z</published><updated>2006-05-15T17:45:00Z</updated><content type="html">&lt;p&gt;&lt;a href="http://www.bbd.co.za/"&gt;Barone, Budge &amp;amp; Dominick&lt;/a&gt; has great collection of posters relating to ASP.NET, C#, Design Patterns, Software Process etc. &lt;a href="http://www.drp.co.za/default.asp?id=technologies/content_technologies_a"&gt;Here&lt;/a&gt; is the link to these postors. Just check out this first:&lt;/p&gt; &lt;p&gt;&lt;a title="Permanent Link to Great collection of ASP.NET/C# Posters!" href="http://www.firoz.name/2006/05/15/great-collection-of-aspnetc-posters/" rel="bookmark"&gt;Great collection of ASP.NET/C# Posters!&lt;/a&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=446505" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author></entry><entry><title>Google Trends - .NET, ASP.NET, C#, VB.NET</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2006/05/14/446361.aspx" /><id>http://weblogs.asp.net/firoz/archive/2006/05/14/446361.aspx</id><published>2006-05-14T10:45:00Z</published><updated>2006-05-14T10:45:00Z</updated><content type="html">&lt;p&gt;I was just exploring &lt;a href="http://www.google.com/trends"&gt;Google Trends&lt;/a&gt; and I have found a very interesting search pattern for .NET, ASP.NET, C#, VB.NET.&lt;/p&gt; &lt;p&gt;&lt;a title="Permanent Link: Google Trends - .NET, ASP.NET, C#, VB.NET" href="http://www.firoz.name/2006/05/13/google-trends-net-aspnet-c-vbnet/" rel="bookmark"&gt;Google Trends - .NET, ASP.NET, C#, VB.NET&lt;/a&gt;&lt;/p&gt; &lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=446361" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author></entry><entry><title>Murphy’s Laws of .NET</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2006/05/07/445491.aspx" /><id>http://weblogs.asp.net/firoz/archive/2006/05/07/445491.aspx</id><published>2006-05-07T16:52:00Z</published><updated>2006-05-07T16:52:00Z</updated><content type="html">&lt;p&gt;&lt;font face="Verdana" size="2"&gt;Here is the Murphy’s Laws of .NET. Its based on my previous experience with .NET. I am sure most of the .Net developers will identify themselves somewhere in these laws.&lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;font face="Verdana" color="#0000ff" size="2"&gt;&lt;a title="Permanent Link: Murphy’s Laws of .NET" href="http://www.firoz.name/2006/05/07/murphys-laws-of-net/" rel="bookmark"&gt;Murphy’s Laws of .NET&lt;/a&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;Actually, it should be Firoz’s Laws of .NET. :)&lt;/font&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=445491" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author></entry><entry><title>Color in Motion</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2006/01/16/435556.aspx" /><id>http://weblogs.asp.net/firoz/archive/2006/01/16/435556.aspx</id><published>2006-01-16T13:54:00Z</published><updated>2006-01-16T13:54:00Z</updated><content type="html">&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;Do you know each color has its own personality and attitude? Like, blue color is known for its authority, calmness and confidence and can easily complemented with orange color. Or, red color which is known for it’s ambitious, alert and impatient. Or, yellow color which is known more for aspiration, forgiveness and happiness. &lt;a href="http://www.mariaclaudiacortes.com/"&gt;Claudia Cortés&lt;/a&gt; has created a great movie “&lt;a href="http://www.mariaclaudiacortes.com/colors/Colors.html"&gt;Color In Motion&lt;/a&gt;” starring some major colors. Very nice approach of depicting nature of each colors its communication and symbolism. And what a storyline of this movie!&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;font face="Verdana" size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;font face="Verdana" size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=435556" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author></entry><entry><title>Google Advanced Operators (Cheat Sheet)</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2006/01/15/435514.aspx" /><id>http://weblogs.asp.net/firoz/archive/2006/01/15/435514.aspx</id><published>2006-01-16T04:20:00Z</published><updated>2006-01-16T04:20:00Z</updated><content type="html">&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;In continuation of my &lt;A href="http://weblogs.asp.net/firoz/archive/2006/01/15/435418.aspx"&gt;previous&lt;/a&gt; blog, here is another useful cheat sheet.&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="http://www.googleguide.com/advanced_operators_reference.html"&gt;Google Advanced Operators (Cheat Sheet)&lt;/a&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;font face="Verdana" size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;Take a print out and mount it at your workstation.&lt;/font&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=435514" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author></entry><entry><title>Web Development Cheat Sheets</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2006/01/15/435418.aspx" /><id>http://weblogs.asp.net/firoz/archive/2006/01/15/435418.aspx</id><published>2006-01-15T09:25:00Z</published><updated>2006-01-15T09:25:00Z</updated><content type="html">&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="http://www.ilovejackdaniels.com/misc/about-ilovejackdaniels/"&gt;Dave Child&lt;/a&gt; has written some great cheat sheets which really a good reference for me as ASP.NET developer.&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;Here is the list of some cheat sheets:&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="http://www.ilovejackdaniels.com/article/javascript-cheat-sheet/"&gt;JavaScript Cheat Sheet&lt;/a&gt;&lt;br /&gt;&lt;/font&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="http://www.ilovejackdaniels.com/article/css-cheat-sheet/"&gt;CSS Cheat Sheet&lt;/a&gt;&lt;br /&gt;&lt;/font&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="http://www.ilovejackdaniels.com/article/html-character-entities-cheat-sheet/"&gt;HTML Character Entities Cheat Sheet&lt;/a&gt;&lt;br /&gt;&lt;/font&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="http://www.ilovejackdaniels.com/article/mysql-cheat-sheet/"&gt;MySQL Cheat Sheet&lt;/a&gt;&lt;/font&gt;&lt;/p&gt; &lt;p&gt;&lt;font face="Verdana" size="2"&gt;It’s really helpful to me.&lt;/font&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=435418" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author></entry><entry><title>10 Big Myths about copyright explained</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2006/01/14/435324.aspx" /><id>http://weblogs.asp.net/firoz/archive/2006/01/14/435324.aspx</id><published>2006-01-14T09:38:00Z</published><updated>2006-01-14T09:38:00Z</updated><content type="html">&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;Brad Templeton has written an excellent FAQ on some of the common myths regarding copyright. &lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;Visit @ &lt;/font&gt;&lt;font face="Verdana" size="2"&gt;&lt;a href="http://www.templetons.com/brad/copymyths.html"&gt;10 Big Myths about copyright explained&lt;/a&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=435324" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author></entry><entry><title>Window Live Mail - Usability Issues!!</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2005/12/10/432817.aspx" /><id>http://weblogs.asp.net/firoz/archive/2005/12/10/432817.aspx</id><published>2005-12-10T07:33:00Z</published><updated>2005-12-10T07:33:00Z</updated><content type="html">&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;I got invitation to use Live Mail (beta) last week. And after playing with its UI and exploring all of the new features, I have discovered lot of usability issue with UI. Its seems to me that Microsoft developers is more interested in showcasing latest mechanism (or technology) like AJAX to display content on page and they just wanted to forget that user sitting at other end and struggling to read/manage his mail.&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;font face="Verdana" size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;There is lot of scroll bars in mail page now. Scroll bar for mail listing panel, scroll bar (count two here) for actual mail content panel and there is a scroll bar for main page.&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;font face="Verdana" size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;And because of these scroll bars, there is very limited space for actual content. Notice the small “window” for mail listing panel. And notice the small “window” for your actual mail content. Even for reading smaller mail you really have to scroll many times. Only 50% of the space has been utilized in the page and rest of the space is full of margin and scroll bars. And some time I feel like I have opened text documents in two PDAs placed next to each other. Very very limited space to work!!&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;font face="Verdana" size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;If Live developer, really wanted to get out of these scroll full page then they have to remove those bottom margins, right margin and also top margin of the page. May be they are placeholder for advertisement content..but bottom margin??? And also I think they have to remove the scroll bar of main page. Its really leads to confusion for average user who wanted to use scroll wheel to scroll mail.&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;o:p&gt;&lt;font face="Verdana" size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" size="2"&gt;I still like the distribution of panels in Outlook Web Access then this Live Mail, if you wanted to show mail listing and mail content in the same page.&lt;/font&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=432817" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author></entry><entry><title>Using TextPad to view source in IE!</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2005/11/28/431749.aspx" /><id>http://weblogs.asp.net/firoz/archive/2005/11/28/431749.aspx</id><published>2005-11-29T04:27:00Z</published><updated>2005-11-29T04:27:00Z</updated><content type="html">&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font size="2"&gt;&lt;font color="#0000ff"&gt;&lt;font face="Verdana"&gt;This IE tweak is based on the &lt;/font&gt;&lt;A href="http://weblogs.asp.net/dvravikanth/archive/2005/11/28/431651.aspx"&gt;&lt;font face="Verdana"&gt;bug&lt;/font&gt;&lt;/a&gt;&lt;font face="Verdana"&gt; reported by Ravikanth. I thought I can use this bug for more productive feature. I always wanted to use &lt;/font&gt;&lt;a href="http://www.textpad.com"&gt;&lt;font face="Verdana"&gt;TextPad&lt;/font&gt;&lt;/a&gt;&lt;font face="Verdana"&gt; to view source of the site. So now I can do that &lt;span style="FONT-FAMILY: Wingdings; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'; mso-char-type: symbol; mso-symbol-font-family: Wingdings"&gt;&lt;span style="mso-char-type: symbol; mso-symbol-font-family: Wingdings"&gt;J&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;font face="Verdana" color="#0000ff" size="2"&gt;Here are the steps:&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1; tab-stops: list .5in"&gt;&lt;font color="#0000ff" size="2"&gt;&lt;font face="Verdana"&gt;&lt;/font&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1; tab-stops: list .5in"&gt;&lt;font color="#0000ff" size="2"&gt;&lt;font face="Verdana"&gt;1. Create a shortcut of &lt;/font&gt;&lt;a href="http://www.textpad.com"&gt;&lt;font face="Verdana"&gt;TextPad&lt;/font&gt;&lt;/a&gt;&lt;font face="Verdana"&gt; in your Desktop with name “NotePad”.&lt;/font&gt;&lt;/font&gt; &lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1; tab-stops: list .5in"&gt;&lt;font face="Verdana" color="#0000ff" size="2"&gt;2. Open any site in IE.&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1; tab-stops: list .5in"&gt;&lt;font face="Verdana" color="#0000ff" size="2"&gt;3. View the source code of the page (View &amp;gt; Source).&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1; tab-stops: list .5in"&gt;&lt;font face="Verdana" color="#0000ff" size="2"&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1; tab-stops: list .5in"&gt;&lt;font face="Verdana" color="#0000ff" size="2"&gt;Yes, sometime bugs are also a kind of feature!!!&lt;/font&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1; tab-stops: list .5in"&gt;&lt;font face="Verdana" color="#0000ff" size="2"&gt;&lt;/font&gt;&amp;nbsp;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt; mso-list: l0 level1 lfo1; tab-stops: list .5in"&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=431749" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author></entry><entry><title>Test Post!</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2005/11/27/431607.aspx" /><id>http://weblogs.asp.net/firoz/archive/2005/11/27/431607.aspx</id><published>2005-11-27T11:59:00Z</published><updated>2005-11-27T11:59:00Z</updated><content type="html">&lt;P&gt;&lt;FONT size="2"&gt;Test post from &lt;A href="http://rssfeederdotnet.sourceforge.net"&gt;RSS  Feeder&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=431607" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author></entry><entry><title>PowerMenu – Minimizing application to system tray</title><link rel="alternate" type="text/html" href="http://weblogs.asp.net/firoz/archive/2005/06/13/412094.aspx" /><id>http://weblogs.asp.net/firoz/archive/2005/06/13/412094.aspx</id><published>2005-06-13T15:47:00Z</published><updated>2005-06-13T15:47:00Z</updated><content type="html">&lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-FAMILY: Verdana"&gt;&lt;font size="2"&gt;I would like to share one of my favorite utility tools with you. &lt;/font&gt;&lt;a href="http://www.veridicus.com/tummy/programming/powermenu"&gt;&lt;font size="2"&gt;PowerMenu&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; is the collection of extensions to the window menu which really save me when I am working with lot of application at a time. Following are the listing of those extensions:&lt;?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 12pt; FONT-FAMILY: Verdana"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 12pt; FONT-FAMILY: Verdana"&gt;&lt;o:p&gt;&lt;font size="2"&gt;&lt;strong&gt;Priority&lt;/strong&gt; &amp;gt; Changes the priority of the window's parent process&lt;br /&gt;&lt;strong&gt;Transparency&lt;/strong&gt; &amp;gt; Changes the transparency level of the window (Windows 2K/XP only) &lt;br /&gt;&lt;strong&gt;Always On Top&lt;/strong&gt; &amp;gt; Makes the window sit on top of other windows even if it doesn't have focus.&lt;br /&gt;&lt;strong&gt;Minimize To Tray&lt;/strong&gt; &amp;gt; Remove the window from the task-list and places the window's on the system tray.&lt;br /&gt;&lt;/font&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 12pt; FONT-FAMILY: Verdana"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;span style="FONT-FAMILY: Verdana"&gt;&lt;font size="2"&gt;Most of the time&amp;nbsp;my task bar is filled with some of the applications every time. These applications like CVS, Explorer, TextPad, Browser (IE2) and some word documents etc. Even though I need CVS once in a hour, but I prefer to keep open every time. It’s my habit!!! :) Same goes to utilities TextPad (with very small size and always on top mode) and IE2 as well. This results with lot of application taking my “precious” place in task bar. So PowerMenu utility comes handy to move some of the “required” application to system bar to make task bar more cleaner.&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-FAMILY: Verdana"&gt;&lt;o:p&gt;&lt;font size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-FAMILY: Verdana"&gt;&lt;font size="2"&gt;You can download it from following URL:&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-FAMILY: Verdana"&gt;&lt;a href="http://www.veridicus.com/tummy/programming/powermenu/"&gt;&lt;font size="2"&gt;http://www.veridicus.com/tummy/programming/powermenu/&lt;/font&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="FONT-SIZE: 12pt; FONT-FAMILY: Verdana"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-FAMILY: Verdana"&gt;&lt;o:p&gt;&lt;font size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-FAMILY: Verdana"&gt;&lt;font size="2"&gt;I have created a small batch file and placed it into the Startup folder so that I don’t need to run every time. Batch file contains following command:&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 12pt; FONT-FAMILY: 'Courier New'"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-FAMILY: 'Courier New'"&gt;&lt;font size="2"&gt;PowerMenu.BAT&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-FAMILY: 'Courier New'"&gt;&lt;font size="2"&gt;"E:\Utilities\PowerMenu\PowerMenu.exe" -hideself on&lt;o:p&gt;&lt;/o:p&gt;&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-SIZE: 12pt; FONT-FAMILY: Verdana"&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-FAMILY: Verdana"&gt;&lt;font size="2"&gt;Thanks &lt;/font&gt;&lt;a href="http://www.veridicus.com/tummy/about/"&gt;&lt;font size="2"&gt;Thong Nguyen&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; for this handy utility!!&lt;/font&gt;&lt;/span&gt;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-FAMILY: Verdana"&gt;&lt;font size="2"&gt;&lt;/font&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt; &lt;p class="MsoNormal" style="MARGIN: 0in 0in 0pt"&gt;&lt;span style="FONT-FAMILY: Verdana"&gt;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=412094" width="1" height="1"&gt;</content><author><name>firoz.ansari</name><uri>http://weblogs.asp.net/members/firoz.ansari.aspx</uri></author></entry></feed>