Thursday, January 7, 2010

Common Type System

http://aspalliance.com/1530_Understanding_Common_Type_System_in_NET.all

interview questions

http://interviews.c-sharpcorner.com/Default.aspx

username: som.rajat
password: rajat314

Thursday, July 16, 2009

Dynamically set Pagetitle,meta tags

when master page has "head content place holder"
then each page has head content place holder

then use this code:

Page.Header.Title = "Houses to rent in Birmingham, Student accommodation ";

HtmlMeta tagDescription = new HtmlMeta();
tagDescription.Name = "Description";
tagDescription.Content = "EzeeHOME ";
Header.Controls.Add(tagDescription);

HtmlMeta tagKeywords = new HtmlMeta();
tagKeywords.Name = "Keywords";
tagKeywords.Content = "Student ";
Header.Controls.Add(tagKeywords);

Tuesday, May 26, 2009

Delegates Study

http://www.akadia.com/services/dotnet_delegates_and_events.html
http://www.c-sharpcorner.com/UploadFile/Ashush/Delegates02152008155757PM/Delegates.aspx
http://www.codersource.net/csharp_delegates_events.html
http://www.developerfusion.com/article/3057/events-and-delegates/
http://www.csharp-station.com/Tutorials/lesson14.aspx

Monday, May 11, 2009

Radio button in Repeater Control Issue

Only one radio button should be checked.
Solution

http://stackoverflow.com/questions/290018/how-to-find-checked-radiobutton-inside-repeater-item

For Fixing the Issue

http://www.codeguru.com/csharp/csharp/cs_controls/custom/article.php/c12371/

Wednesday, April 22, 2009

Share Point Tutorial

http://searchwindevelopment.techtarget.com/generic/0,295582,sid8_gci1274280,00.html
http://www.cmswire.com/cms/cms-reviews/sharepoint-2007-review-six-pillars-of-moss-000922.php

Speed Up site/Code Optimization

http://msdn.microsoft.com/en-us/magazine/cc163901.aspx
http://dotnetslackers.com/articles/aspnet/ImproveWebApplicationPerformance.aspx