About me:
Denis Bauer is an Application Platform Consultant at Microsoft Germany’s Enterprise Services
where he is working on large .NET projects.
Denis specializes on web application development with ASP.NET and the .NET Framework.
Before joining Microsoft in 2001, he received his bachelor degree in business administration.
News from my Weblog:
Interview with Scott Guthrie from The Architecture Journal
Sun, 18 Mar 2007 18:10:14 GMT
I just found an intersting interview with Scott
Guthrie, the General Manager for .NET:
http://msdn2.microsoft.com/en-us/arcjournal/bb266332.aspx
It contains some nice anecdotes about the early days of .NET ('The only
compiler they had was this thing called "simple managed C," which we affectionately
called "smack."'), talks about the role of
an architect ('The super-senior architects who have the biggest impact can marry
deep, deep technical and design skills with people skills and collaborative abilities.')
and the status of .NET ('I think the hallmark of a good framework doesn't
lie in the applications people build on it that you had expected them to build, but
in the fact that customers and developers were able to take it far beyond what you
had imagined').
Add-ins updated for .NET Reflector 5.0
Wed, 21 Feb 2007 17:12:52 GMT
Lutz released a cool new version 5.0 of .NET Reflector. You can find details about the
new features here: http://www.aisto.com/roeder/paper/reflector5.ppt
Updated versions of the FileDisassembler and the SQLBrowser are located here on my
website: http://www.denisbauer.com/NETTools.aspx
Please let me know, if you run into any issues.
Scott wrote a nice post about the coolest of the new features: The "code://" protocol
handler.
http://www.hanselman.com/blog/Reflector5ReleasedWorldDominationAssured.aspx
How to access controls in the child template
Sat, 16 Dec 2006 22:04:00 GMT
The following code in C# works for my sample:
for(int i = 0;
i < HG1.Items.Count; i++)
{
HierarGrid c = (HierarGrid)
HG1.Items[i].Cells[1].FindControl("DCP").FindControl("Panel_Author_Title").FindControl("ChildTemplate_Author_Title").FindControl("HG1");
for(int j = 0;
j < c.Items.Count; j++)
{
string title = c.Items[j].Cells[2].Text;
}
}
Remark: “Author_Title” is the name of the DataRelation that I am using.
Version 2.2 of the HierarGrid and DCP
Fri, 12 May 2006 18:34:48 GMT
I just published a new version 2.2 of the HierarGrid and the DynamicControlsPlaceholder
that hopefully fixes all problems with reloading UserControls under ASP.NET 1.0-2-0.
As before, both components are compiled against .NET 1.0 but tested with 1.1 and 2.0.
V2.2.0.0 (published 2006-05-12)
-
Bugfix: Under some conditions, UserControls still could not be reloaded when the application
is configured as a website
Download here
read more >
|