V
vncntj
I've tested this project locally, by running it
http://localhost:1436/Data/gift.aspx and everything is perfect. But if
it onto the remote server I get "The type or namespace name could not
be found"
this is my gift.aspx.cs
***************************************
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;
using CampaignsTableAdapters;
public partial class gift : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
tcampaignsTableAdapter campaignsAdapter = new
tcampaignsTableAdapter();
CampaignGI.DataSource = campaignsAdapter.GetCampaigns();
CampaignGI.DataBind();
}
}
this is my gift.aspx
*******************************************************
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="gift.aspx.cs"
Inherits="gift" %>
<html>
<body>
<asp
ropDownList ID="CampaignGI" runat="Server"
DataTextField="Campaign" DataValueField="Campaign" />
</body>
</html>
I've read other post on the topic, but I don't understand compiling and
the dll approach to the solution
thanks in advance,
V
http://localhost:1436/Data/gift.aspx and everything is perfect. But if
it onto the remote server I get "The type or namespace name could not
be found"
this is my gift.aspx.cs
***************************************
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;
using CampaignsTableAdapters;
public partial class gift : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
tcampaignsTableAdapter campaignsAdapter = new
tcampaignsTableAdapter();
CampaignGI.DataSource = campaignsAdapter.GetCampaigns();
CampaignGI.DataBind();
}
}
this is my gift.aspx
*******************************************************
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="gift.aspx.cs"
Inherits="gift" %>
<html>
<body>
<asp
![Big Grin :D :D](/styles/default/custom/smilies/grin.gif)
DataTextField="Campaign" DataValueField="Campaign" />
</body>
</html>
I've read other post on the topic, but I don't understand compiling and
the dll approach to the solution
thanks in advance,
V