Thomas goes .NET - RoleManagement mit eigener oder bestehender Datenbank nutzen
Thursday, August 11, 2005
Thomas goes .NET - RoleManagement mit eigener oder bestehender Datenbank nutzen
at
5:43 PM
0
comments
Posted by
roni schuetz
Wednesday, July 27, 2005
SQL Server 2005, SPROC
well i were wondering how to make sprocs in C# and i found the following page:
http://www.dotnetfun.com/articles/sql/sql2005/SQL2005CLRSProc.aspx
at
11:34 PM
0
comments
Posted by
roni schuetz
Tuesday, July 26, 2005
Monday, July 25, 2005
Thursday, July 21, 2005
Page directive
The page directive in the code behind version contains the attribute to corresponding source code file over attribute CompileWith="xxxx" and the class in the source code attribute="xxxx"
<@% Page CompileWith="YourPage.aspx.cs" ClassName="YourClassName"%>
Notice that the new class is a partial class which doesn't contains all information
you were used to it in version 1.x.
partial classes derives from System.Web.UI.Page.
Sample:
using System;
using System.Web;
.....
public partial class YourWebSite_aspx
{
void foo()
{
// your stuff goes here.....
}
}
the following link describes you this and some additional new features:
http://www.c-sharpcorner.com/Code/2004/July/WhidbeyFeatures.asp
If you wonder how the whole construct works you can do a research about
"Dynamic Page Compilation".
at
11:26 AM
0
comments
Posted by
roni schuetz