Advertisement
Advertisement
| 07.24.2008 at 09:57AM PDT, ID: 23592828 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: |
<asp:DropDownList ID="DropDownList2" runat="server" AutoPostBack="True" DataSourceID="SqlDataSource4"
DataTextField="PropertyID" DataValueField="PropertyID">
</asp:DropDownList>
<asp:SqlDataSource ID="SqlDataSource4" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
SelectCommand="SELECT DISTINCT [PropertyID] FROM [tblWorkOrders] ORDER BY [PropertyID]">
</asp:SqlDataSource>
<br />
<br />
<br />
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" Font-Size="8pt"
Height="400px" Width="400px">
<LocalReport ReportPath="StaleRPT_0.rdlc">
<DataSources>
<rsweb:ReportDataSource DataSourceId="ObjectDataSource3"
Name="MCP_DevUseOnlyDataSet_tblWorkOrders" />
</DataSources>
</LocalReport>
</rsweb:ReportViewer>
<asp:ObjectDataSource ID="ObjectDataSource3" runat="server"
OldValuesParameterFormatString="original_{0}" SelectMethod="GetData"
TypeName="MCP_DevUseOnlyDataSetTableAdapters.tblWorkOrdersTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="DropDownList2" DefaultValue="-1"
Name="PropertyID" PropertyName="SelectedValue" Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
|