T
Tom
Hi all,
I posted the same question one week ago in
http://communities.microsoft.com/newsgroups/previewFrame.as
p?
ICP=msdn&sLCID=us&sgroupURL=microsoft.public.dotnet.framewo
rk.aspnet&sMessageID=%253C7d8d01c3b4a1%2524412f7770%
(e-mail address removed)%253E
The problem has not fixed till now.
Here is a register.aspx page:
<%@ Page language="c#" Codebehind="register.aspx.cs"
AutoEventWireup="false" Inherits="web.register" %>
<%@ Register TagPrefix="house" TagName="register"
Src="_register.ascx" %>
<!-- #include virtual="./top.aspx" -->
<table align="center" width="800" border="0"
cellspacing="0" cellpadding="0">
<tr valign="top">
<td width="160">
<!-- #include virtual="./left.aspx" -->
</td>
<td width="640">
<form id="_register" method="post" runat="server">
<web:register ID="register1" runat="server" />
</form>
</td>
</tr>
<!-- #include virtual="./bottom.aspx" -->
In top and left.aspx pages and _register.ascx, there are
user controls which need form tag to submit data.
Each form tag has it's corresponding function.
But, in a register.aspx page, it only allows one server-
side Form tag.
How should I fix it?
Thanks for any sound advice.
I posted the same question one week ago in
http://communities.microsoft.com/newsgroups/previewFrame.as
p?
ICP=msdn&sLCID=us&sgroupURL=microsoft.public.dotnet.framewo
rk.aspnet&sMessageID=%253C7d8d01c3b4a1%2524412f7770%
(e-mail address removed)%253E
The problem has not fixed till now.
Here is a register.aspx page:
<%@ Page language="c#" Codebehind="register.aspx.cs"
AutoEventWireup="false" Inherits="web.register" %>
<%@ Register TagPrefix="house" TagName="register"
Src="_register.ascx" %>
<!-- #include virtual="./top.aspx" -->
<table align="center" width="800" border="0"
cellspacing="0" cellpadding="0">
<tr valign="top">
<td width="160">
<!-- #include virtual="./left.aspx" -->
</td>
<td width="640">
<form id="_register" method="post" runat="server">
<web:register ID="register1" runat="server" />
</form>
</td>
</tr>
<!-- #include virtual="./bottom.aspx" -->
In top and left.aspx pages and _register.ascx, there are
user controls which need form tag to submit data.
Each form tag has it's corresponding function.
But, in a register.aspx page, it only allows one server-
side Form tag.
How should I fix it?
Thanks for any sound advice.