asked on
<asp:UpdatePanel ID="SeriesUpdatePanel" runat="server"
UpdateMode="Conditional" ChildrenAsTriggers="False" >
<Triggers>
<asp:AsyncPostBackTrigger ControlID="ButtonIndexChanged" EventName="Click" />
<asp:AsyncPostBackTrigger ControlID="RemoveSeriesButton" EventName="Click" />
<asp:PostBackTrigger ControlID="SeriesEditOK" />
</Triggers>
<ContentTemplate>
<asp:Panel ID="seriespopuppanel" runat="server" class="seriespopuppanel"
Height="339px" Width="281px">
<table>
</tr>
<tr>
<td class="style2" colspan="3" style="width:80%;">
<table style="width:100%;border:solid"><tr><th>Edit Data Series</th></tr></table></td>
</tr>
<tr>
<td class="style1">
<asp:ListBox ID="SeriesListBox" rowspan="3" runat="server" onchange="IndexChanged()"></asp:ListBox>
</td>
<td class="style2">
</td>
<td>
</td>
</tr>
<tr>
<td class="style1">
</td>
<td class="style2">
Visible</td>
<td>
<input ID="VisibleCheckbox" type="checkbox" runat="server"/></td>
</tr>
<tr>
<td class="style1">
</td>
<td class="style2">
Show Limits</td>
<td>
<input ID="ShowLimitsCheckbox" type="checkbox" runat="server" /></td>
</tr>
<tr>
<td class="style1">
<asp:Button ID="SeriesEditOK" Text="OK" Width="60px" runat="server" onclientclick="UpdateSeriesProperties()"/>
</td>
<td class="style2">
Show Marker</td>
<td>
<input ID="ShowMarkerCheckbox" type="checkbox" runat="server" /></td>
</tr>
<tr>
<td class="style1">
</td>
<td class="style2">
Y Axis</td>
<td>
<select ID="YAxisSelect" name="D2" runat="server">
<option>1</option>
<option>2</option>
</select></td>
</tr>
<tr>
<td class="style1">
</td>
<td class="style2">
Autoscale</td>
<td>
<input ID="AutoScaleCheckbox" type="checkbox" runat="server" /></td>
</tr>
<tr>
<td class="style1">
</td>
<td class="style2">
Y Axis Min</td>
<td>
<asp:TextBox ID="AxisMinTextBox" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style1">
</td>
<td class="style2">
Y Axis Max</td>
<td>
<asp:TextBox ID="AxisMaxTextBox" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td class="style1">
<asp:Button ID="SeriesEditCancel" runat="server" Text="Cancel" Width="60px" />
</td>
<td class="style2">
<asp:Button ID="RemoveSeriesButton" runat="server" Text="Remove" />
</td>
<td>
<asp:Button id="ButtonIndexChanged" Text="Index Changed" style="display: none;" OnClick="SeriesListBox_SelectedIndexChanged" runat="server" />
</td>
</tr>
</tr>
<tr>
<td class="style1">
</td>
<td class="style2">
</td>
<td>
</td>
</tr>
</table>
</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>
The successor to Active Server Pages, ASP.NET websites utilize the .NET framework to produce dynamic, data and content-driven web applications and services. ASP.NET code can be written using any .NET supported language. As of 2009, ASP.NET can also apply the Model-View-Controller (MVC) pattern to web applications
TRUSTED BY
ASKER
The website I had open was the same name but different version and folder than one I had previously opened in VS. When I opened it originally VS put a (2) after the name.
I closed the website, saved it with a new name. Then restarted my computer and when I opened the website up again in VS I could add new controls and get to them in code behind.