Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
  2.  
  3. <!DOCTYPE html>
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head runat="server">
  7. <title></title>
  8. <style type="text/css">
  9. .ebin{
  10. padding: 0.5em 1em 0.5em 1em;
  11.  
  12. }
  13. div{
  14.  
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <form id="form1" runat="server">
  20.  
  21.  
  22. <br />
  23. Energialuokka&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Paikkakunta&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Huoneiston kuutiometrit&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Päivämäärä<br />
  24. <div><asp:DropDownList CssClass="ebin" ID="Energyclasses" runat="server" Width="48px" AutoPostBack="true" OnSelectedIndexChanged="Energyclasses_Selection_Change">
  25. <asp:ListItem > </asp:ListItem>
  26. <asp:ListItem Value = "0">A</asp:ListItem>
  27. <asp:ListItem Value = "1">B</asp:ListItem>
  28. <asp:ListItem Value = "2">C</asp:ListItem>
  29. <asp:ListItem Value = "3">D</asp:ListItem>
  30. <asp:ListItem Value = "4">E</asp:ListItem>
  31. <asp:ListItem Value = "5">F</asp:ListItem>
  32. <asp:ListItem Value = "6">G</asp:ListItem>
  33. </asp:DropDownList>
  34. <asp:DropDownList ID="Cities" CssClass="ebin" runat="server" AutoPostBack="true" OnSelectedIndexChanged="Cities_Selection_Change">
  35. <asp:ListItem>lahti</asp:ListItem>
  36. <asp:ListItem>Helsinki</asp:ListItem>
  37. </asp:DropDownList>
  38. <asp:TextBox CssClass="ebin" ID="Squaremeters" runat="server" ></asp:TextBox>
  39. <asp:TextBox CssClass="ebin" ID="Date" runat="server" ></asp:TextBox>
  40. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  41. <asp:Button CssClass="ebin" ID="Calculatebutton" runat="server" OnClick="Calculatebutton_Click" Text="Button" />
  42. <br />
  43. <br />
  44. <br />
  45. </div>
  46.  
  47. </form>
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement