Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/01/11 01:47:33 (14 years ago)
Author:
cfleisch
Message:

#1439 Example implementation of method GetFilters() in view Filter added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Views/Query/Filter.aspx

    r5910 r5919  
    1111<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
    1212
     13    <form id="form1" runat="server">
    1314    <h2>Filter</h2>
    1415
     16    <p>
     17        <asp:ListBox ID="lbxQueryFilters" runat="server" DataSourceID="dsQueryFilters"
     18            DataTextField="Label" DataValueField="Label" Height="350px" style="margin-top: 0px"
     19            Width="400px">
     20        </asp:ListBox>
     21        <asp:ObjectDataSource ID="dsQueryFilters" runat="server"
     22            SelectMethod="QueryFilterGetAll"
     23            TypeName="HLWebPluginHost.Models.QueryModel">
     24        </asp:ObjectDataSource>
     25       
     26
     27    </p>
     28    </form>
     29
    1530</asp:Content>
Note: See TracChangeset for help on using the changeset viewer.