Guest User

Untitled

a guest
Jun 18th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <asp:DropDownList id="ddlFoo" runat="server">
  2. ...
  3. </asp:DropDownList>
  4. <asp:TextBox id="txtBar" runat="server" Text='<%# ddlFoo.SelectedValue %>' />
  5.  
  6. <%-- For query string --%>
  7. <asp:TextBox id="txtBar" runat="server"
  8. Text='<%# Request.QueryString["Key_Value"] %>' />
  9.  
  10. <uc1:CompetitionClassification ID="CompetitionClassification" runat="server" OnlyTopFive="True" />
  11.  
  12. private bool onlyTopFive;
  13. public bool OnlyTopFive
  14. {
  15. get
  16. {
  17. return this.onlyTopFive;
  18. }
  19. set
  20. {
  21. this.onlyTopFive = value;
  22. }
  23. }
Add Comment
Please, Sign In to add comment