0

我想在 asp 端使用用户控件的成员。

这是c#

using DynoPartners.Data;
using System;

namespace DynoPartners.Controls
{
public partial class BusView : System.Web.UI.UserControl
{
private Business bus;
public Business Bus
{
        get
        {
            return bus;
        }
        set
        {
            bus = value;
        }
}
}
}

用户控制代码是:

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="BusView.ascx.cs" Inherits="DynoPartners.Controls.BusView" %>
<%= Bus  %>

错误消息是 Error: The name 'Bus' does not exist in the current context

这是为什么?

4

0 回答 0