在C#中编写完成的程序与前台的页面相连接。
你是说前台调用后台程序,还是其它的意思?
只要不是private的对象前台都能调用。
比如
aspx
<%string a = getString();%>
aspx.cs
protected string getString()
{
return "hello word";
}