PageRenderTime 44ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/BlogEngine.NET/Playground.aspx

#
ASP.NET | 21 lines | 19 code | 2 blank | 0 comment | 0 complexity | a952b6261d5848ebbd18674561b284da MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Playground.aspx.cs" Inherits="Playground" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <title></title>
  6. </head>
  7. <body>
  8. <form id="form1" runat="server">
  9. <div>
  10. <asp:FileUpload runat="server" ID="fileUpload" />
  11. <asp:Button runat="server" ID="btnUpload" Text="Upload" OnClick="btnUpload_Click" />
  12. <br />
  13. <asp:HyperLink runat="server" ID="hprLink" />
  14. <br />
  15. <asp:Image runat="server" ID="img" Visible="false" />
  16. </div>
  17. </form>
  18. </body>
  19. </html>