Suresh Behera

The Microsoft .Net Junkies

News

Blogroll

Reading

Browse by Tags

All Tags » .NET FAQ (RSS)
ValidatorCalloutExtender does not kick flyout after first submit click
If you have multiple validation control and using ValidatorCalloutExtender,You might have exprience that it does not kick fly out all the time after your first submit click. Well, this sounds like bug and does not have straight fix on it. Solution: The...
DataTable filter on DateTime coloum
I was surprise to know that 'DateTime.Parse' does not parse fractions of a second and this was messing up our Dataview filter.Here is nice tips from furum. The Select expression you are using uses DateTime.Parse internally. DateTime.Parse does not parse...
Modern Analyst | Interview Questions for the Business Analyst and Systems Analyst
This is very interesting post on subject of Technical Interview.This is very help full information for .Net Developer .     Interview Questions for Business Analysts and Systems Analysts Modern Analyst | Interview Questions for the Business...
How to makeuse of IsPostPack Method inside UserControl?
How to makeuse of IsPostPack Method inside UserControl? IsPostBack method will always be true inside user control. You can use following alternate method to by pass this isse protected override void OnLoad( EventArgs e) { base .OnLoad(e); if (!IsUserControlPostBack...
Clear Project List from Start Page
Here is a nice tips to clear the Recent project list or File list from Visual Studio .Net Run--> RegEdit and navigate to HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\<your version>\ProjectMRUList delete unnecessary list. similarly for FileMRuList...
More Posts