Open-Source WilsonWebForm for Multiple Server Forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've finally decided to make my WilsonWebForm open-source on SourceForge at
http://sourceforge.net/projects/wilsonwebform/:

The ASP.NET WilsonWebForm enables Multiple Forms and Non-PostBack Forms,
finally allowing you to overcome this built-in ASP.NET restriction. This is a
real Server Form that supports WebControls, ViewState, and Events, as well as
the Action attribute to Post to other pages/sites. The only limitation is
that Validation controls are not supported, but a single regular server form
can still be used at the same time. The typical usage is to continue to use
the regular server form for the main page content, with validators, while
using the WilsonWebForm for small side forms for things like search, login,
or preferences. The source code of this control is available in both C# and
VB.NET, along with a simple demo application that fully show's how to use it.

I've had several in the past mention they would like to add support for
validators -- so here's your chance!
 
download produces this error:

Parser Error Message: Could not load type 'Wilson.WebForm.Demo.HomePage'.

Source Error:


Line 1: <%@ Page language="C#" Codebehind="Default.aspx.cs"
AutoEventWireup="false" Inherits="Wilson.WebForm.Demo.HomePage" %>
Line 2: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
Line 3: <html>
 
That means you have to first compile the demo -- and set it up in IIS as an
application (virtual directory).
 
it was set up in IIS

I found I had to change all the "codebehind=" to "src="

then it worked
 
Back
Top