Внёс примеры использования веб-службы

This commit is contained in:
2016-04-08 15:08:20 +10:00
parent 5cd7c46cd7
commit 8c8885bf96
39 changed files with 6455 additions and 1 deletions

View File

@ -0,0 +1,24 @@
<%@ Control Language="C#" AutoEventWireup="true" ClassName="Lers.Web.Client.FooterRight" %>
<%@ Import Namespace="Lers.Web.Api" %>
<style type="text/css">
#footer_right_userName
{
float: Right;
padding-right: 10px;
}
</style>
<div id="footer_right_userName">
<asp:Label ID="userDisplayName" runat="server" Text="Label"></asp:Label>
</div>
<script runat="server">
protected void Page_PreRender(object sender, EventArgs e)
{
this.userDisplayName.Text = User.DisplayName;
}
</script>

View File

@ -0,0 +1,8 @@
<html>
<head>
<title>�������� ��������</title>
</head>
<body>
�������� ��������
</body>
</html>

View File

@ -0,0 +1,7 @@
<%@ Page Title="�������� ��������" Language="C#" AutoEventWireup="true" MasterPageFile="~/Main.Master" %>
<asp:Content ID="fullColumnContent" ContentPlaceHolderID="FullColumnContent" runat="server">
�������� ��������
</asp:Content>