Author: admin

  • Blog
  • Author: admin

Mouse Hover effect on asp.net datagrid.

Here is the code for mouse hover effect in ASP.NET using C#. I have written a another code for mouse hover effect in asp.net data gird. You can do both for alternating item and item rows. First You have to create a item created event of datagrid and paste the following… private void datagrid_ItemCreated(object sender,

ASP.NET Friendly URLs – Cleaner, SEO friendly URLs

Search Engine optimization is one of the key factor for your site. If you spend millions of dollars on making your website looks good and bug free then also its possible that you will not get attention of search engine because of your URLs.  For example you’re having shopping cart created in asp.net and you

Install Go Language and Lite IDE on Ubuntu

Note: I’m not moving to Another world. Still C# and ASP.NET is my bread and butter. Recently I have installed Ubuntu as Virtual OS in Oracle Virtual Box. This was one of first exposure I got Linux base operating system.  Earlier I have used Linux when I was doing my masters as part of their

Three common mistake while creating application with ajax

I have found a great article about developing a application with ajax enabled rich text website. Here is the three mistakes we are making.. Page events still fire during partial postbacks. UpdatePanel events fire, even when not updating. Control event handlers fire after Load events Dave has posted a very good article on above mistake.