Dev Notes

Suspended Indefinetly...

News

<script type="text/javascript"><!-- google_ad_client = "pub-9887566656700242"; google_ad_width = 120; google_ad_height = 600; google_ad_format = "120x600_as"; google_ad_type = "text"; //2006-12-28: Savvy google_ad_channel = "6620623950"; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> <script type="text/javascript"><!-- google_ad_client = "pub-9887566656700242"; google_ad_width = 120; google_ad_height = 60; google_ad_format = "120x60_as_rimg"; google_cpa_choice = "CAAQxZqazgEaCMOiwb9yonQWKIHD93M"; google_ad_channel = ""; //--></script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>

Favourites

Friends

India MVP & CS

My Blog Roll

Publicity

August 2003 - Posts

Give me a string for this server please!
Roy pointed me to this ultimate connection string repository.

Great effort.
Roads for Developer from Sun and MS

Some of my mind waves...

“Sun lays very fine, architecturally strong roads for developers, but it will start in Earth and end up with Neptune.“ which is very costly and needs a great thrust.

“Microsoft lays cheap, weak and somewhat patchy roads for developers but between you and your Neighborhood“ which is very cheaper and faster.

[Edited based on a response :) ]

Posted: Aug 25 2003, 06:34 PM by sudhakar[mvp] | with 3 comment(s)
Filed under:
ASP to ASP.NET Migration? check out these links

Got these links from a MS resource via Uday in a mail trail.

Some interesting information about ASP to ASP.net migration:

http://www.microsoft.com/net/casestudies/casestudy.asp?CaseStudyID=14163

Migrating to ASP.NET: Key Considerations.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/aspnetmigrissues.asp

Migrating ASP Pages to ASP.NET Pages
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconmigratingasppagestoasp.asp

Converting ASP to ASP.NET

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/convertasptoaspnet.asp

Upgrading to ADO.NET

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/upgradingtodotnet.asp

ADO.NET for the ADO programmer

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dndotnet/html/adonetprogmsdn.asp

Migrate Classic ASP to ASP.NET

http://www.aspalliance.com/anjum/ASPMigration.aspx

An experience in migrating from ASP to ASP.NET

http://www.mindfiresolutions.com/download/Porting=ASP%20to%20dotNET.pdf

Preparing your ASP Pages to migrate to ASP.NET

http://www.4guysfromrolla.com/webtech/041601-1.shtml

 

Watch like NASA Do...
Bit away from .NET but :) ...posting to personal category

Amazing view from NASA eye...
http://dannysdesktop.themesunlimited.com/nasa.html

Worth a download
Posted: Aug 22 2003, 02:46 PM by sudhakar[mvp] | with 1 comment(s)
Filed under:
Folder.JPG Tip

A Nice Tip from TweakUI PowerToy...

“If you create a file called Folder.jpg, that image will be used as the thumbnail for the folder. 
What's more, that image will also be used as the album art in Windows Media Player for all media files in that folder.”

Encrypted Connection String
This is better than what we have developed before for the same :) Encrypted Connection String by DonXML
Non Software examples for Design patterns

Seems very cool in understanding patterns from real life

examples like this..

Sanskrit lessons online from Indian Institute of Technology, Madras

Anil from Oracle Corp pointed me to this online tutor for Sanskrit (The Language of Gods)

Interesting...I am going to refresh my sanskrit skills again :)

The True cost of free software

Alan MacCormack , an associate professor of business administration at Harvard Business School estimated the

True cost of free Linux here

My Old Custom Button

Found an old snippet from my KB :)

using System.Windows.Forms;

/// <summary>
///  Responds to enter key and performs click
action on button.
/// </summary>
/// <author>Sudhakar Sadasivuni
</author>
public class CustomButton : Button
{
/// <summary>
/// 
/// </summary>
public CustomButton()
{
}
public void hitEnter(object sender,
KeyPressEventArgs kpArgs)
{
  if(kpArgs.KeyChar == '\r')
  {
   this.PerformClick();
  }      kpArgs.Handled = true ;
}
}

use this as a button and add keypressEventHandler

this.btnView.KeyPress += new KeyPressEventHandler(this.btnView.HitEnter);
More Posts Next page »