Advertisement
Guest User

Untitled

a guest
Jul 31st, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. <%@ Assembly Name="$SharePoint.Project.AssemblyFullName$" %>
  2. <%@ Assembly Name="Microsoft.Web.CommandUI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
  3. <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
  4. <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
  5. <%@ Register Tagprefix="asp" Namespace="System.Web.UI" Assembly="System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" %>
  6. <%@ Import Namespace="Microsoft.SharePoint" %>
  7. <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
  8. <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="YandexWeather-VisualWebPart.ascx.cs" Inherits="InfoTable_SP2013WebPart.YandexWeather_VisualWebPart.YandexWeather_VisualWebPart" %>
  9.  
  10. <div id="Weather" class="b-weather">
  11. <asp:Image ID="WeatherImg" runat="server" ImageUrl="http://info.weather.net/moscow/4.ru.png" />
  12.  
  13. <asp:Label ID="Label2" runat="server" Text="Ajax"></asp:Label>
  14.  
  15. <asp:Timer ID="Timer2" runat="server" Interval="1000" OnTick="Timer2_Tick" OnLoad="Timer2_Load" >
  16. </asp:Timer>
  17. <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">
  18. <ContentTemplate>
  19.  
  20. <asp:TextBox ID="NewItemTitle" runat="server"></asp:TextBox><br/>
  21. <asp:Button ID="uxSubmit" runat="server" onclick="Timer2_Tick" Text="Добавить" />
  22. <asp:Label ID="IbIResult" runat="server" Text="Ajax"></asp:Label>
  23. <!-- Ajax ends here with -->
  24.  
  25.  
  26. </ContentTemplate>
  27.  
  28. </asp:UpdatePanel>
  29.  
  30. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement