Natty Gur
Enterprise Architect on Enterprise Architecture
-
Comment on WinFS and XAML that combine animation with video.
One of my presentation feedbacks was to combine video with the animation XAML that I post. So here it is (it much more vivid when everything is moving)…
-
XAML - Rotating textbox and button while changing Panel background color.
-
Creating simple viewer to display controls data preserved in Viewstate
In the following lines I’ll show how to create very simple viewer that display the content controls store in view state. It’s NOT just a tree holding all the viewstate data as stored in __VIEWSTATE filed. It’s a list of all controls that store data in the view state and the data saved in the view state by each control.
-
Creating simple viewer to display controls data preserved in Viewstate
Yet, another ViewState viewer
-
NDOC - Code Documentation Generator for .NET - Recommended!
NDoc generates class libraries documentation from .NET assemblies and the XML documentation files generated by the C# compiler (or an add-on tool for VB.NET).
-
What goes in ViewState when page EnableViewState property is set to false?
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 off?
-
X# - Interesting
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 integrated. X# aim is to overcome this shortcoming.
-
Getting “Could not find any resources “error while using some resource files to make the internationalization of a ASP.NET application
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 it’s usually caused by loading the Resource file with this code:
-
Products: digital camera, TabletPC, cellular modem - Sunset in Eilat (Israel)
-
Behind the scenes of ASPX files
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) and the page life cycle is well documented (http://www.15seconds.com/issue/020102.htm) this is not the case of ASPX files.