Suresh Behera

The Microsoft .Net Junkies

News

Blogroll

Reading

Browse by Tags

All Tags » ASP.NET (RSS)
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...
IE Developer Tool
I got chance to attend Dallas ASP.NET UG and came to know about IE Developer tool.It is great a great tool for debugging and troubleshooting.Specially when you work with highly scalable and high customer facing site.Here is few useful inks for this ....
Posted: Sep 24 2008, 06:47 PM by Suresh Behera | with 1 comment(s)
Filed under: ,
Introduction to Regular Expressions
I think it is a very use full link and just thought to dump it in my blog.. Regular Expressions Explains the concept of regular expressions. Early Beginnings Explains the history of regular expressions. Uses for Regular Expressions Illustrates circumstances...
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...
HTML tables sorting
Cool javascript code for HTML cliend side sorting http://www.mingyi.org/other/ts_demo.html#author - This work great.. Mingyi did a great job http://www.grainge.org/pages/authoring/tables/sorting_mingyi.org/sortrows.htm http://www.kryogenix.org/code/browser...
Option Strict On disallows late binding from Visual Studio 2005
If you get this surprise error after converting the asp.net project. This is what you need to do Original <% # Container.DataItem( "ID" ) %> Change to CType (Container.DataItem, DataRowView)( "ID" ).ToString This solve your problem. To set Option...
Web service VS non-serviced .NET component
I was reading a document on web service and came a very good point on when to use web service and when not. If you have something in your mind please feel free to put comment here... Use Web Services: o    Communicating through a Firewall...
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...
More Posts Next page »