December 2003 - Posts

6
Comments

What goes in ViewState when page EnableViewState property is set to false? by nattYGUR

I bet that many of you sow that the __viewstate filed still holding data even if all page controls and the page itself EnableViewState property set to false. Well, what’s going on, what is saved by the page in the ViewState although we turn ViewSate...
4
Comments

X# - Interesting by nattYGUR

Today WEB applications business logic tier responsible to transform Structure data into hierarchical data. Business Logic deals with objects graphs, Structure data from databases and hierarchical data (XML/HTML). Those three worlds aren’t very well...
32
Comments

Getting “Could not find any resources “error while using some resource files to make the internationalization of a ASP.NET application by nattYGUR

If you getting this error “Could not find any resources appropriate for the specified culture (or the neutral culture) in the given assembly. Make sure …” while trying to load Resources using ResourceManager from multi language assemblies...
9
Comments
21
Comments

Behind the scenes of ASPX files by nattYGUR

ASP.NET pages usually made up from two files the ASPX file which contain the page visualization declaration and *.cs file which contain code to handle page events (Code behind). While all the *.cs files compile into one DLL (with the application name...
3
Comments

Display HTML controls inside MS Treeview control. by nattYGUR

This is the final product, looks very nice ;-). Well, if you will add decode HTML to a TreeView node text the browser will render that HTML into visual controls inside the tree: Microsoft.Web.UI.WebControls.TreeNode oNode1 = new Microsoft.Web.UI.WebControls...
0
Comments

Longhorn, Windows applications navigation abilities. by nattYGUR

After checking the web navigation abilities it’s the windows application turn. As part of dressing windows application as web application windows application got their own navigation abilities. Avalon enables you to create navigation applications...
0
Comments

Starting ASP.NET state service result in error message. by nattYGUR

One of my customers didn’t succeed to start the ASP.NET state service. Every time he tries to start the service an error message pops up. Well that service occupied a port to supply it services and the problem was that other process on the computer...
1
Comments

Do you know LosFormatter ? by nattYGUR

Stoneware in the obscurity of System.WEB.UI the class LosFormatter is hiding. ASP.NET uses this class to serialize web controls state into string presentation inside hidden field inside the page Form. ASP.NET also uses LosFormatter on post back to de...
4
Comments

ToString() is it really cause boxing ? by nattYGUR

More and more times I found myself arguing about ToString() as boxing. As you all know Tostring() is one of the object methods. Well, many programmers tend to believe that when they use ToSting() on value types (int, long, etc’) the CLR should box...
More Posts Next page »