Thursday, May 19, 2011

ASP.NET: Use sitemap to control menu in a page

While creating a web site we might have several pages and those pages might have several links in the menu. ASP.NET provides an easy way to manage this which is called sitemap. If you are looking for how to use sitemap in your application, this msdn tutorial has everything for you.

http://msdn.microsoft.com/en-us/library/ms178418.aspx

http://msdn.microsoft.com/en-us/library/ms178428.aspx


http://msdn.microsoft.com/en-us/library/aa581781.aspx

Have a look at it :)


** I believe when there are so many quality tutorials over the web, I do not really need to write one of my own unless the topic is something unique**

Tuesday, May 17, 2011

ASP.NET : Creating a Global Class

If you are wanting to create a global class in your ASP.NET application, then this is how it is done, check the following link:

http://www.dotnetperls.com/global-variables-aspnet

** I believe when there are so many quality tutorials over the web, I do not really need to write one of my own unless the topic is something unique**

Thursday, May 12, 2011

ASP.NET Gridview : Get the row number from the linkbutton in a grid cell

Hi All,

Suppose you have a link button. When you click on that, you want to navigate to a different page. Before that you want to detect which row's linkbutton has been clicked. This is how it is done:

http://forums.asp.net/t/1250848.aspx/1

** I believe when there are so many quality tutorials over the web, I do not really need to write one of my own unless the topic is something unique**