.NET
aspnet.txt
Associated article: ASP.NET Server Components
Tags: .NET Mobile
Published code accompanying the article by Douglas Reilly in which he examines ASP.NET which lets you create components in the same languages as the web form logic, notably VB.NET and C#. And since these components are not COM components, many COM overhead and deployment issues disappear. Also see ASPNET.ZIP.
ASP.NET Server Components
by Douglas Reilly
Example 1:
<td>
<asp:TextBox runat="server" TextMode="Password"
Width="100"
ID="NewPassword2"></asp:TextBox>
</td>
<td>
&...


