我是 ASP.NET 的新手。
我真的需要帮助,因为我被困住了。我在谷歌上做了很多阅读,无法弄清楚我做错了什么。
错误:CS0103:当前上下文中不存在名称“MyClass”
我有一个 MyClass.cs 文件,我喜欢在该文件的任何页面上重用该函数。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MyNameSpace
{
public static class MyClass
{
//
// TODO: Add constructor logic here
//
public static string FormatDateNoTime(string input)
{
string thedate;
DateTime strDate = DateTime.Parse(input);
thedate = strDate.ToString("MM/dd/yyyy");
return thedate;
}
public static string test()
{
return "1234";
}
}
}
另一个Page2.aspx.cs调用了这个函数,但是报错
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Configuration;
using System.Data.SqlClient;
using System.Data;
using MyNameSpace;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
Response.Write(MyClass.FormatDateNoTime("02/01/2012"));
}
}
有人可以帮忙吗,我只是想在任何页面中重用这个功能。