Everyday I am discovering something new with Visual Studio 2010 and today Once again I have discovered a new feature called “Surround with” feature. This feature is quite useful when you have very big HTML element and You want to surround it some HTML or ASP.NET element i.e. Suppose there is one very...
Showing posts with label ASP. Show all posts
Showing posts with label ASP. Show all posts
Tuesday, August 2, 2011
Monday, February 11, 2008
GetYear Function in Java Script is not working properly in firefox
Hi Folks, I have found that some times in firefox getyear function is not working properly. For example.We define a date value with following. var dtTo = new Date("11-Feb-2007"); Now if you do alert like Alert(dtTo.getYear()); But in firefix year is displaying like 107.So to fix this issue. I have used getFullYear function like Alert(dtTo.getYear()); And It's working fine......
Thursday, November 15, 2007
Free ASP.NET Icons
We need icon to display various operations. Actually a image can speak more virtually then the text. I have found a great free collection of icons for asp.net and other applications.Here is the link for that...http://www.aspneticons.com/You can download it free from above li...
Tuesday, August 21, 2007
Great Developer Resources.
As a web developer we all face the some problems related to web development, because web development far different then the windows development. I have found great link which will contain 99 problem that a web developer can face. It also contains great links to solve the problems.here is the link for that article..http://www.softwaredeveloper.com/features/i-got-99-problems-0807...