Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. <%-- 4 poniższe wiersze to dyrektywy ASP.NET wymagane w przypadku korzystania ze składników programu SharePoint --%>
  2.  
  3. <%@ Page Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage, Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" MasterPageFile="~masterurl/default.master" Language="C#" %>
  4.  
  5. <%@ Register TagPrefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
  6. <%@ Register TagPrefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
  7. <%@ Register TagPrefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
  8.  
  9. <%-- The markup and script in the following Content element will be placed in the <head> of the page --%>
  10. <asp:Content ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server">
  11. <script type="text/javascript" src="../Scripts/jquery-1.9.1.min.js"></script>
  12. <SharePoint:ScriptLink Name="sp.js" runat="server" OnDemand="true" LoadAfterUI="true" Localizable="false" />
  13. <meta name="WebPartPageExpansion" content="full" />
  14.  
  15. <!-- Add your CSS styles to the following file -->
  16. <link rel="Stylesheet" type="text/css" href="../Content/App.css" />
  17.  
  18. <!-- Add your JavaScript to the following file -->
  19. <script type="text/javascript" src="../Scripts/App.js"></script>
  20. </asp:Content>
  21.  
  22. <%-- The markup in the following Content element will be placed in the TitleArea of the page --%>
  23. <asp:Content ContentPlaceHolderID="PlaceHolderPageTitleInTitleArea" runat="server">
  24. E-BPNT faktury
  25. </asp:Content>
  26.  
  27. <asp:Content ContentPlaceHolderID="PlaceHolderLeftNavBar" runat="server">
  28. <a href="#">Lista faktur</a>
  29. <br />
  30. <br />
  31. <a href="WprowadzanieFaktury.aspx">Wprowadzanie nowej faktury</a>
  32. </asp:Content>
  33.  
  34. <%-- The markup and script in the following Content element will be placed in the <body> of the page --%>
  35. <asp:Content ContentPlaceHolderID="PlaceHolderMain" runat="server">
  36. <div>
  37. <asp:Label ID="Label1" runat="server" Text="Numer faktury"></asp:Label>
  38. <input id="Text1" type="text" />
  39.  
  40. <asp:Label ID="Label2" runat="server" Text="Kontrahent"></asp:Label>
  41. <input id="Text2" type="text" />
  42.  
  43. <br />
  44.  
  45. <asp:Label ID="Label3" runat="server" Text="Data wystawienia"></asp:Label>
  46. <input id="Text3" type="text" />
  47.  
  48. <asp:Label ID="Label4" runat="server" Text="Data wpływu"></asp:Label>
  49. <input id="Text4" type="text" />
  50.  
  51. <br />
  52.  
  53. <asp:Label ID="Label5" runat="server" Text="Kwota netto"></asp:Label>
  54. <input id="Text5" type="text" />
  55.  
  56. <asp:Label ID="Label6" runat="server" Text="Kwota VAT"></asp:Label>
  57. <input id="Text6" type="text" />
  58.  
  59. <asp:Label ID="Label7" runat="server" Text="Kwota brutto"></asp:Label>
  60. <input id="Text7" type="text" />
  61.  
  62. <br />
  63.  
  64. <asp:Label ID="Label8" runat="server" Text="Termin zapłaty"></asp:Label>
  65. <input id="Text8" type="text" />
  66.  
  67. <asp:Label ID="Label9" runat="server" Text="Rodzaj finansowania"></asp:Label>
  68. <input id="Text9" type="text" />
  69.  
  70. <br />
  71.  
  72. <asp:RadioButton ID="RadioButton1" runat="server" /><asp:Label ID="Label10" runat="server" Text="Umowa"></asp:Label>
  73. <br />
  74. <asp:RadioButton ID="RadioButton2" runat="server" /><asp:Label ID="Label11" runat="server" Text="Wniosek"></asp:Label>
  75.  
  76. </div>
  77.  
  78. </asp:Content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement