Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <form id="ScAdminPageForm" class="wf-container" runat="server">
  2. <div class="wf-content">
  3. <h1>CSV Exporter</h1>
  4. <p>
  5. Item Path or ID of an item
  6. </p>
  7. <ul>
  8. <li>/sitecore/system</li>
  9. <li>{13D6D6C6-C50B-4BBD-B331-2B04F1A58F21}</li>
  10. </ul>
  11. <div>
  12. <asp:TextBox ID="TargetTextBox" runat="server" Placeholder="/sitecore/system" Width="100%"/>
  13. </div>
  14. <div class="buttons">
  15. <asp:Button ID="ExportButton" runat="server" Text="Export Starten" OnClick="ExportButtonClick" />
  16. <asp:Button ID="PreviewButton" runat="server" Text="Preview" OnClick="PreviewButtonClick" />
  17. </div>
  18. <p class="summary">
  19. <asp:Literal ID="SummaryLiteral" runat="server"/>
  20. </p>
  21.  
  22. <div class="preview">
  23. <table>
  24. <tr>
  25. <th>Item Name</th>
  26. <th>Display Name</th>
  27. <th>Created</th>
  28. <th>Created by</th>
  29. </tr>
  30. <asp:Literal ID="PreviewLiteral" runat="server"/>
  31. </table>
  32. </div>
  33. <hr/>
  34. </div>
  35. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement