Создал папку Bin, туда закинул dll с прокси. Как из aspx сделать reference. Вот начало файла моего — обычная форма:
<%@ Page Language="c#" %>
<script runat = server>
public void sButton_Click(Object sender,EventArgs E)
{
es_log myLog = new es_log();// уже писал выше здесь возникает ошибка
}
</script>
<html>
<head>
</head>
<body bgcolor="#f2f2f2">
<form method="post" runat="server">
<div align="center">
<table align="center">
<tbody>
<tr>
<td>
<asp:Label id="Label1" runat="server" width="135px" text="Имя пользователя:"></asp:Label></td>
<td>
<asp:TextBox id="Login" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
<asp:Label id="Label2" runat="server" text="Пароль:"></asp:Label></td>
<td>
<asp:TextBox id="Password" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td colspan="2">
<div align="center">
<asp:Button id="sButton" onclick="sButton_Click" runat="server" BackColor="Lavender" ForeColor="Transparent" Text="Вход в систему"></asp:Button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</form>
</body>
</html>
Как здесь сделать референс.