[karsten samaschke]

ASP.NET daily. Or weekly.

Browse by Tags

All Tags » ASP.NET » VB.NET (RSS)
VS.NET 2005 Express
At TechEd Europe, Microsoft is announcing some new products targeting beginners, enthusiasts, hobbyists and students: The VS.NET 2005 Express products. These products consist of: Visual Web Developer 2005 Express Edition , a lightweight tool for building...
Recreate the controls!
Two very important rules if you work with dynamically added controls: Recreate the controls! Recreate every single control on PostBack if you want to react on any events. If you "forget" just one control, your ViewState may become invalid and no event...
How to change the text in a panel
A tricky question is this one: How can I change the text in an asp:Panel? Let's assume, a panel like this is given in your ASPX-page: <asp:Panel ID="thePanel" runat="server">Hi, this is some text</asp:Panel> Usually, you would start searching...
How to handle dynamically created buttons in ASP.NET
This problem is very often discussed in Newsgroups: How can I handle clicks on dynamically created buttons? Ususally you're adviced to declare the buttons in the CodeBehind of your aspx-Page. But this is not the way to create buttons (or other controls...
More Posts