Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
----------------------------------------------------
<asp:DataList ID=OptionsList HorizontalAlign="Center" Width=100% Runat=server DataSource='<%#oDR%>' DataKeyField="SubjectsSchool_ID" GridLines=None>
<ItemTemplate>
<table width="100%" cellpadding="5" cellspacing="0" border="0">
<tr>
<td align="left" width="300" valign=top>
<asp:dropdownlist id="ddlSubjects" Runat="server"
DataSource="<%#GetDropDown()%>"
DataValueField="Subject_id" DataTextField="ddText"
Enabled="true" Width=300
SelectedIndex='<%# GetSelIndex(Container.DataItem("Subject_ID")) %>'>
</asp:dropdownlist>
</td>
<td valign=top width="200">
<asp:TextBox ID="tbxTitleTailored" Runat=server Columns="30" value='<%#Container.DataItem("TailoredTitle")%>'></asp:TextBox>
</td>
<td valign=top width="300">
<asp:textbox id="tbxDescriptionTailored" Runat="server" TextMode=MultiLine Rows=2 Columns="30" value='<%#Container.DataItem("TailoredDescription")%>'></asp:TextBox>
</td>
</tr>
</table>
</ItemTemplate>
</asp:DataList>
----------------------------------------------------