控件页面
<%@ Control Language="vb" AutoEventWireup="false" Codebehind="Bbshot10.ascx.vb" Inherits="Nill.ZL.Car.Bbshot10" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>控件源码Public Class Bbshot10
        Inherits System.Web.UI.UserControl 
        Private myiPar As Integer
        Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            
        End Sub
        Public Property piPar() As Integer
            Get
                Return myiPar
            End Get
            Set(ByVal value As Integer)
                myiPar = value
            End Set
        End Property
    End Class但是我没办法在页面给piPar属性输入值,提示说 变量没定义页面文件
<%@ Register TagPrefix="uc1" TagName="Bbshot10" Src="inc/Bbshot10.ascx" %>
<uc1:Bbshot10 id="Bbshot101" runat="server"></uc1:Bbshot10>页面源码bbshot101.pipar=3  这里就不行了,我试了 定义bbshot101 as UserControl但是也没pipar属性。我应该怎么做。