Problem importing namespace
Hi guys, not sure this is the right place but...
I'm working on a system that charges credit cards with a third party website and I have this page "pay.aspx.cs" which includes some functions for the connection with their site.
this is the file:
using System.Collections.Specialized;
using System.IO;
using System.Net;
using System.Text;
namespace Pay
{
public class SynchronizeCall : System.Web.UI.Page
{
public bool Load_Page(object sender, System.EventArgs e)
...
I compiled it with csc.exe and put it in my bin folder, but can't import it. i used
<%@ Import Namespace =Pay %>
but i get this error
BC30466: Namespace or type 'Pay' for the Imports 'Pay' cannot be found.
any help... please...?
|