我正在使用 C# 和 ASP.NET 在 Windows Azure 中进行开发。
我想做一个全局方法来验证字段,我的想法是做一个全局方法(例如在 Site.Master 中)
static Regex dateRegex = new Regex("^\\d{2}/\\d{2}/\\d{4}$");
public boolean validate( string type, string stringToValdate)
{
boolean valid = NO;
if (type = "date")
{
Match m = fechaRegex.Match(stringToValdate);
if(m.Success)
{
valid = true;
}
}
return valid;
}
然后在另一个网络表单中使用它
using ????
Site.Master.validate("date",TextBox1.Text);