Suresh Behera

The Microsoft .Net Junkies

News

Blogroll

Reading

Browse by Tags

All Tags » .Net (RSS)
Internet Explorer 8 developer tools debugging on Windows XP
Although , Microsoft officially not going support Windows XP  but still many healthcare companies preferred to use windows XP internally. They buy windows 7 laptop and convert to Windows XP.This sounds funny but it true. I was trying to use IE’s...
Posted: Nov 18 2011, 01:04 AM by Suresh Behera | with 3 comment(s)
Filed under:
ReportViewer configuration
Some of my team member was facing configuring report viewer.Most of the post are confusing or not able to understand properly. This is what we concluded and thought to put a quick note on it. No 1 Section : This is the report name No 2 Section : ReportServer...
Posted: Nov 16 2011, 05:43 PM by Suresh Behera | with 2 comment(s)
Filed under: ,
Javascript : Modifying parent element from child block the web site to display
Well recently i was working with Dotnetnuke and we are using lots of JavaScript around this project. Internally, dotnetnuke use lot of asp.net user control which lead to have a situation where child element accessing/modifying data of parent. Here is...
Easy way to write WHERE IN clause in Linq
I found many links to write IN clause in Linq but following is the simplest way achieve this public IEnumerable<Products> GetProductsByIds(List<int > ids) {     from id in Products     where (x => ids.Contains...
Posted: Apr 29 2011, 02:54 PM by Suresh Behera | with 1 comment(s)
Filed under: ,
Converting SQL To Linq
After working so long on I SQL ,you always need little trick to write you Linq Quires.Here is few tools which might help to generate your linq quries. SQL to LINQ converter http://www.sqltolinq.com/ Code Generation in LINQ to SQL http://msdn.microsoft...
Posted: Apr 29 2011, 02:08 PM by Suresh Behera | with no comments
Filed under: ,
101 LINQ Samples
Awesome list of LINQ sample Restriction Operators Where - Simple 1 Where - Simple 2 Where - Simple 3 Where - Drilldown Where - Indexed Projection Operators Select - Simple 1 Select - Simple 2 Select - Transformation Select - Anonymous Types 1 Select ...
Posted: Apr 13 2011, 11:37 AM by Suresh Behera | with 2 comment(s)
Filed under: ,
KeyMaps for ReSharper 5.1
ReSharper is very nice tool and I am still learning the shortcuts.I thought to install kepmay plugin for ReSharper and try my luck.Well the batch file installed it under 5.0 but failed to copy other directories.So I manually copied but still no hope....
Double click on Visual Studio short cut
Well, for some unfortunate reason double click to visual studio 2010 shortcut does guarantee it will work all time.I had this situation n-no of time before and today.I wish I would know why and this can be reproduce easily on any windows 7 enterprise...
Delete bin and obj folder from projects directories
You always have problem to debug when you do latest from source control.You might end up deleting bin/obj folder sometime.Here is nice bat file which delete bin/obj folder(s). 1. copy this on notepad and save it as clean.bat file 2. Keep this file on...
Posted: Sep 02 2010, 06:26 PM by Suresh Behera | with no comments
Filed under:
Deselect first row on gridview onload
I had situation to deselect the first gridview row on load and came to know IsSynchronizedWithCurrentItem on Gridview should able to that but some how i missed on gridview. Mean while below one should work void gvMain_RowLoaded( object sender, RowLoadedEventArgs...
More Posts Next page »