November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
So, it is that difficult ... =/
I have looked at some code we have from developers, for something similar. It seems that a new page is created for every comment. Is it neccesary?
Hi all!
A bit of a newbie question here I guess =/
I have a form, like this
<!-- form -->
<asp:TextBox ID="Name" TextMode="SingleLine" Columns="50" Rows="1" runat="server"></asp:TextBox>
<asp:DropDownList ID="MyDropDownList" runat="server">
<asp:ListItem Text="ListOption01" Value="ListOption01"></asp:ListItem>
<asp:ListItem Text="ListOption02" Value="ListOption02"></asp:ListItem>
</asp:DropDownList>
<asp:RadioButtonList ID="MyRadioButtonGroup" runat="server">
<asp:ListItem Text="RadioOption01" Value="RadioOption01"></asp:ListItem>
<asp:ListItem Text="RadioOption02" Value="RadioOption02"></asp:ListItem>
</asp:RadioButtonList>
<asp:Button ID="SendForm" Text="SendIt" runat="server" />
<!-- /form -->
When a visitor fills out the form and clicks the send button I want the values to be written to the page, bellow the form.
In the front end code, bellow the form, do I need a repeater of some kind? I guess this involves backend code also? Is it difficult? =)