Hello
I am not doing very well as far as I know I need to align the button section at the bottom to be on the same line as this section just below. I have tried moving ( cut/paste) but keep getting module errors, very frustrating. Has anybody managed to move the GO button onto the same line as the dropdown menu, in the sqlselectedview.ascx file?
more code.................
<!--THIS IS THE SECTION I WANT TO EDIT -->
<TABLE cellSpacing="2" cellPadding="2" border="0">
<TR>
<TD vAlign="top">
<asp:Label id="lblParm1_Label" EnableViewState="true" runat="server"></asp:Label></TD>
<TD>
<asp:DropDownList id="ddlParm1" runat="server"></asp:DropDownList>
<asp:ListBox id="lstParm1" Runat="server" Visible="False" Rows="5"></asp:ListBox></TD>
<TD vAlign="bottom">
<asp:Button id="btnParm1_Go" onclick="btnGo_Clicked" runat="server" Text="Go" cssclass="SGSV_Normal"></asp:Button></TD>
</TR>
<TR>
<TD vAlign="top">
<asp:Label id="lblParm2_Label" EnableViewState="true" runat="server"></asp:Label></TD>
<TD>
<asp:DropDownList id="ddlParm2" runat="server"></asp:DropDownList>
<asp:ListBox id="lstParm2" Runat="server" Visible="False" Rows="5"></asp:ListBox></TD>
<TD vAlign="bottom">
<asp:Button id="btnParm2_Go" onclick="btnGo_Clicked" runat="server" Text="Go" cssclass="SGSV_Normal"></asp:Button></TD>
</TR>
<TR>
<TD vAlign="top">
<asp:Label id="lblParm3_Label" EnableViewState="true" runat="server"></asp:Label></TD>
<TD>
<asp:DropDownList id="ddlParm3" runat="server"></asp:DropDownList>
<asp:ListBox id="lstParm3" Runat="server" Visible="False" Rows="5"></asp:ListBox></TD>
<TD vAlign="bottom">
<asp:Button id="btnParm3_Go" onclick="btnGo_Clicked" runat="server" Text="Go" cssclass="SGSV_Normal"></asp:Button></TD>
</TR>
<TR>
<TD vAlign="top">
<asp:Label id="lblParm4_Label" EnableViewState="true" runat="server"></asp:Label></TD>
<TD>
<asp:DropDownList id="ddlParm4" runat="server"></asp:DropDownList>
<asp:ListBox id="lstParm4" Runat="server" Visible="False" Rows="5"></asp:ListBox></TD>
<TD vAlign="bottom">
<asp:Button id="btnParm4_Go" onclick="btnGo_Clicked" runat="server" Text="Go" cssclass="SGSV_Normal"></asp:Button></TD>
</TR>
<TR>
<TD vAlign="top">
<asp:Label id="lblParm5_Label" EnableViewState="true" runat="server"></asp:Label></TD>
<TD>
<asp:DropDownList id="ddlParm5" runat="server"></asp:DropDownList>
<asp:ListBox id="lstParm5" Runat="server" Visible="False" Rows="5"></asp:ListBox></TD>
<TD vAlign="bottom">
<asp:Button id="btnParm5_Go" onclick="btnGo_Clicked" runat="server" Text="Go" cssclass="SGSV_Normal"></asp:Button></TD>
</TR>
</TABLE>
<!--END OF EDIT SECTION -->
</asp:panel><asp:panel id="pnlConditions" Runat="server">
<TABLE cellSpacing="2" cellPadding="2" border="0">
<TR>
<TD>
<asp:CheckBox id="chkCond1_Label" Runat="server" Visible="False" EnableViewState="True"></asp:CheckBox></TD>
<TD>
<asp:Button id="btnCond1_Go" onclick="btnGo_Clicked" Visible="False" runat="server" Text="Go"
cssclass="SGSV_Normal"></asp:Button></TD>
</TR>
<TR>
<TD>
<asp:CheckBox id="chkCond2_Label" Runat="server" Visible="False" EnableViewState="True"></asp:CheckBox></TD>
<TD>
<asp:Button id="btnCond2_Go" onclick="btnGo_Clicked" Visible="False" runat="server" Text="Go"
cssclass="SGSV_Normal"></asp:Button></TD>
</TR>
<TR>
<TD>
<asp:CheckBox id="chkCond3_Label" Runat="server" Visible="False" EnableViewState="True"></asp:CheckBox></TD>
<TD>
<asp:Button id="btnCond3_Go" onclick="btnGo_Clicked" Visible="False" runat="server" Text="Go"
cssclass="SGSV_Normal"></asp:Button></TD>
</TR>
<TR>
<TD>
<asp:CheckBox id="chkCond4_Label" Runat="server" Visible="False" EnableViewState="True"></asp:CheckBox></TD>
<TD>
<asp:Button id="btnCond4_Go" onclick="btnGo_Clicked" Visible="False" runat="server" Text="Go"
cssclass="SGSV_Normal"></asp:Button></TD>
</TR>
<TR>
<TD>
<asp:CheckBox id="chkCond5_Label" Runat="server" Visible="False" EnableViewState="True"></asp:CheckBox></TD>
<TD>
<asp:Button id="btnCond5_Go" onclick="btnGo_Clicked" Visible="False" runat="server" Text="Go"
cssclass="SGSV_Normal"></asp:Button></TD>
</TR>
</TABLE>
</asp:panel><asp:panel id="pnlTopCount" Runat="server">
<TABLE cellSpacing="2" cellPadding="2" border="0">
<TR>
<TD>
<asp:Label id="lblTopCount_Label" EnableViewState="True" runat="server"></asp:Label></TD>
<TD>
<asp:DropDownList id="ddlTopCount" runat="server"></asp:DropDownList></TD>
<TD>
<asp:Button id="btnTopCount_Go" onclick="btnGo_Clicked" runat="server" Text="Go" cssclass="SGSV_Normal"></asp:Button></TD>
</TR>
</TABLE>
*****THIS IS THE BUTTON SECTION THAT I NEED TO ALIGN ABOVE *******
<asp:panel id="pnlSingleGoButton" Runat="server">
<asp:Button id="btnSingleGo" onclick="btnGo_Clicked" runat="server" Text="Go" cssclass="Normal"></asp:Button>
<asp:Label id="lblButtonSpace1" Runat="server"></asp:Label>
<asp:Button id="btnReset" onclick="btnReset_Clicked" runat="server" Text="Reset" cssclass="Normal"></asp:Button></asp:panel>
******END EDIT **********
Thanks