A
Artunc
Hi,
I have a form that people enter their 9 digit account numbers and hit submit
to email them to me. They have option of up to 4 different account numbers to
enter, (4 text boxes). When they hit submit, it opens a new popup window
that says congratulations.
What I need to accomplish is to calculate how many account numbers they
entered (1,2,3, or 4) and put that into that popup. So it would say 'thank
you for entering X number of accounts'. Belows is how I do the popup.
In server side .cs page:
string url = "cwbpopup.html";
RegisterStartupScript("OpenWin", "<script>openNewWin('" + url +
"')</script>");
In client side .aspx page:
<asp:button id="btnSubmit" runat="server" Text="Submit"
onclick="btnSubmit_Click" CssClass="button" tabIndex="19"></asp:button>
Thank you in advance.
I have a form that people enter their 9 digit account numbers and hit submit
to email them to me. They have option of up to 4 different account numbers to
enter, (4 text boxes). When they hit submit, it opens a new popup window
that says congratulations.
What I need to accomplish is to calculate how many account numbers they
entered (1,2,3, or 4) and put that into that popup. So it would say 'thank
you for entering X number of accounts'. Belows is how I do the popup.
In server side .cs page:
string url = "cwbpopup.html";
RegisterStartupScript("OpenWin", "<script>openNewWin('" + url +
"')</script>");
In client side .aspx page:
<asp:button id="btnSubmit" runat="server" Text="Submit"
onclick="btnSubmit_Click" CssClass="button" tabIndex="19"></asp:button>
Thank you in advance.