[I]Server.aspx[/I]
<%@ Page Language="C#" CodeBehind="Server.aspx.cs" AutoEventWireup="false" Inherits="AMChat.Server" %>
<p>
</p>
[I]Server.aspx.cs(excerpt)[/I]
namespace AMChat
{
/// <summary>
/// Summary description for Server.
/// </summary>
public class Server : System.Web.UI.Page
{
private void Page_Load(object sender, System.EventArgs e)
{
.
.
.
When I build this application, I get an error:
Missing partial modifier on declaration of type 'AMChat.Server'; another partial declaration of this type exists
How can I remove this ...... ???
Please Help !