-
Recent Posts
Archives
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
Categories
Meta
Monthly Archives: August 2010
Change Text Box background color in SQL Server Reporting Service – SSRS
If you double click the Text Box for example in below figure, Phase1_EndDt. The Placeholder Properties dialog appears. From there you will not able to see any background color property. You must make sure Text Box is selected but not … Continue reading
Posted in Uncategorized
Leave a comment
Trace the time taken from one web page (aspx) to another web site for layman
This is for ASP.NET but the idea can be taken to other platform provides the feature is available. Firstly, create a TimeTrace class. publicstaticclassTimeTrace { publicstaticStopwatch sw; static TimeTrace() { sw = newStopwatch(); } … Continue reading
AsParallel() in join LINQ statement
A question rose after the parallel programming session delivered during the Application Life Cycle User Conference 2010 at Kuala Lumpur Convention Center (KLCC) back in July 2010. The question is how many AsParallel method should we use in a LINQ … Continue reading
Posted in .Net
Leave a comment
EntityDataSource filter using where with LIKE keyword but Contains method.
If you have a SQL statement like this. SELECT * FROm Products WHERE ProductName LIKE ‘%Ch%’ In LINQ you might want to do. var pp = from p in db.Products where p.ProductName.Contains("Ch") select p; Yes, this … Continue reading
Posted in .Net
3 Comments
Ajax HTMLEditor read and write using Entity Framework
1. Create a table with a Text data type. 2. Create an Empty Web Application. 3. Create a webform with the following Web Control. Ajax Toolkit is required. <body> <form id="form1" runat="server"> <div> <asp:ScriptManager … Continue reading
Posted in .Net
Leave a comment