English 中文(简体)
asp.net 用户控制下调下载选定索引和选定值为空
原标题:asp.net usercontrol dropdown selectedindex and selectedvalue empty

正在将新的用户控制编码 下调我的代码是

        <%@ Control Language="C#" AutoEventWireup="true" CodeFile="StylishDDL.ascx.cs" Inherits="JDropDown.Controls_StylishDDL" %>   
     <script src="Jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
        <script src="Jquery/jquery.selectbox-0.5.js" type="text/javascript"></script> 
        <script type="text/javascript">
                    $(document).ready(function () {
                        $( #ddlStytlish ).selectbox();
                    });
        </script>
        <asp:DropDownList ID="ddlStytlish" runat="server" ClientIDMode="Static">
        </asp:DropDownList>

namespace JDropDown
{
    public partial class Controls_StylishDDL : UserControl
    {
        public string _selectedvalue = "";
        public int _selectedIndex = 0;
        public Controls_StylishDDL( )
        {

        }
        public Controls_StylishDDL(int selectedIndex , string selectedval)
        {
            SelectedIndx = selectedIndex;
            SelectedVal = selectedval;
        }

        public string SelectedVal
        {
            get
            {
                _selectedvalue = this.ddlStytlish.SelectedValue;
                return _selectedvalue;
            }
            set { _selectedvalue = value; }
        }

        public int SelectedIndx
        {
            get
            {
                _selectedIndex = this.ddlStytlish.SelectedIndex;
                return this._selectedIndex;
            }

            set { this._selectedIndex = value; }
        }
        protected void Page_Load(object sender, EventArgs e)
        {
            this.ddlStytlish.AutoPostBack = false;
            LoadStates();
        }

当我使用此控件时, 它工作正常, 除了它被删除的索引总是 0, 选中的值总是无效 。

问题回答

对于用户控制,有两种持续状态的选择:

  1. 用户控制属性只是环绕其中包含的控件属性(这些属性保持其状态)

  2. 用户控制维持了自己的状态

在此情况下, 用户控制( 更像是另一控件周围的包装纸) 正在读取取取时 {} 中的下载列表中的一些属性, 但它并没有将其放回 {} 。 } 一种选项是 : {}

public string SelectedVal
{
    get
    {
        _selectedvalue = this.ddlStytlish.SelectedValue;
        return _selectedvalue;
    }
    set 
    { 
        _selectedvalue = value; 
        this.ddlStytlish.SelectedValue = value; 
    }
}  

另一个选择是维持用户控制特性,

http://www.asp.net/web-forms/vicens/how-do-i/how-do-do-i/how-do-persist-the-state-a-user-control-during-during- a-pack" rel=“nofollow'>http://www.asp.net/web-forms/vivices/how-do-i/how-do-i-persist-the-state-state-a-user-control-during-a-pack backpack





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签