47 lines
2.3 KiB
Plaintext
47 lines
2.3 KiB
Plaintext
<%@ Page Title="" Language="C#" MasterPageFile="~/WebMasterPages/AjaxSimpleFull.Master"
|
|
AutoEventWireup="true" CodeBehind="testMast.aspx.cs" Inherits="ETS_WS.testMast" %>
|
|
|
|
<%--<%@ Register src="WebUserControls/mod_fileUpload.ascx" tagname="mod_fileUpload" tagprefix="uc1" %>--%>
|
|
<%@ Register Src="WebUserControls/mod_textAutocomplete.ascx" TagName="mod_textAutocomplete"
|
|
TagPrefix="uc1" %>
|
|
<%--<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>--%>
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
|
|
<%--<uc1:mod_fileUpload ID="mod_fileUpload1" runat="server" />--%>
|
|
<uc1:mod_textAutocomplete ID="mod_textAutocomplete3" runat="server" ServicePath="~/WS/AutoCompletamento.asmx"
|
|
ServiceMethod="elencoFonti" MinimumPrefixLength="3" showKey="true" />
|
|
<br />
|
|
<asp:TextBox runat="server" ID="txtSel" />
|
|
<asp:Button runat="server" ID="btnOk" Text="Sumbit"/>
|
|
<%-- <div>
|
|
<div id="radio">
|
|
<input type="radio" id="radio1" name="radio" /><label for="radio1">Choice 1</label>
|
|
<input type="radio" id="radio2" name="radio" checked="checked" /><label for="radio2">Choice
|
|
2</label>
|
|
<input type="radio" id="radio3" name="radio" /><label for="radio3">Choice 3</label>
|
|
</div>
|
|
</div>
|
|
Please fill out your information:
|
|
<div>
|
|
Name:
|
|
<asp:TextBox ID="Name" runat="server"></asp:TextBox></div>
|
|
<div>
|
|
Sex:<asp:RadioButtonList ID="sex" runat="server" CssClass="radioBtn" RepeatDirection="Horizontal"
|
|
OnSelectedIndexChanged="sex_SelectedIndexChanged" AutoPostBack="true">
|
|
<asp:ListItem Text="Male"></asp:ListItem>
|
|
<asp:ListItem Text="Female"></asp:ListItem>
|
|
</asp:RadioButtonList>
|
|
</div>
|
|
<div>
|
|
Age:
|
|
<asp:RadioButtonList ID="age" runat="server" RepeatDirection="Horizontal" CssClass="radioBtn"
|
|
OnSelectedIndexChanged="age_SelectedIndexChanged" AutoPostBack="true">
|
|
<asp:ListItem>10-20</asp:ListItem>
|
|
<asp:ListItem>21-35</asp:ListItem>
|
|
<asp:ListItem>36-50</asp:ListItem>
|
|
<asp:ListItem>50+</asp:ListItem>
|
|
</asp:RadioButtonList>
|
|
</div>
|
|
<div>
|
|
<asp:Button ID="Button1" runat="server" Text="Submit" CssClass="submit" /></div>--%>
|
|
</asp:Content>
|