Does anyone have any clue on how/where to solve this error. I tried 
deleting all the controls on the page and still get it.

Thanks for any input!



code below:

<%@ Page Language="C#" MasterPageFile="~/LeapFrogging.master" 
AutoEventWireup="true"
    CodeFile="UpdateRss.aspx.cs" Inherits="UpdateRss" Title="Update 
RSS" %>

<asp:Content ID="Content1" 
ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
    <table>
        <tr>
            <td>
                <asp:Label ID="GroupLabel" runat="server" 
Text="Group:"></asp:Label>
            </td>
            <td>
                <asp:DropDownList ID="GroupCombo" runat="server">
                    <asp:ListItem>Adm</asp:ListItem>
                    <asp:ListItem>MgCop</asp:ListItem>
                    <asp:ListItem>MgExpress</asp:ListItem>
                    <asp:ListItem>MgPatterns</asp:ListItem>
                    <asp:ListItem>MgPlus</asp:ListItem>
                    <asp:ListItem>MgPPC</asp:ListItem>
                    <asp:ListItem>MgUnit</asp:ListItem>
                    <asp:ListItem>MgWeb</asp:ListItem>
                    <asp:ListItem>OffsiteDev</asp:ListItem>
                    <asp:ListItem>OffsiteJobs</asp:ListItem>
                    <asp:ListItem>PairProg</asp:ListItem>
                    <asp:ListItem>All</asp:ListItem>
                </asp:DropDownList></td>
            </tr>
        <tr>
            <td>
                <asp:Label ID="Label1" runat="server" 
Text="Title:"></asp:Label>
            </td>
            <td>
              <asp:TextBox ID="Title" runat="server" 
Width="948px"></asp:TextBox>
            </td>
        </tr>
        <tr>
            <td>
                <asp:Label ID="Label2" runat="server" 
Text="Description:"></asp:Label>
            </td>
            <td>
              <asp:TextBox ID="Description" runat="server" 
Height="257px" Width="948px"></asp:TextBox>
            </td>
        </tr>
        <tr>
            <td>
                <asp:Label ID="Label3" runat="server" 
Text="Link:"></asp:Label>
            </td>
            <td>
                <asp:TextBox ID="Link" runat="server" 
Width="948px"></asp:TextBox> 
            </td>
        </tr>
    </table>
    <asp:Button ID="Update" runat="server" OnClick="B_Update_Click" 
Text="Button" />     
</asp:Content>

===code beside:

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class UpdateRss : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void B_Update_Click(object sender, EventArgs e)
    {
    }
}





 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to