FineUI 官方论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

本论坛已关闭(禁止注册、发帖和回复)
请移步 三石和他的朋友们

FineUI首页 WebForms - MVC & Core - JavaScript 常见问题 - QQ群 - 十周年征文活动

FineUI(开源版) 下载源代码 - 下载空项目 - 获取ExtJS - 文档 在线示例 - 版本更新 - 捐赠作者 - 教程

升级到 ASP.NET Core 3.1,快、快、快! 全新ASP.NET Core,比WebForms还简单! 欢迎加入【三石和他的朋友们】(基础版下载)

搜索
查看: 1830|回复: 1
打印 上一主题 下一主题

用户控件引入页面,后台找不到属性

[复制链接]
跳转到指定楼层
楼主
发表于 2013-8-20 09:52:56 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
问题如题。
<xabel ID="Label5" Text="政治面貌:" runat="server" CssClass="mleft"></xabel>
                                        <x:UserControlConnector ID="UserControlConnector1" runat="server">
                                            <uc2:UCZZMMList ID="UCZZMMList1" runat="server" zzmmcode="" />
                                        </x:UserControlConnector>


       this.UCZZMMList1.zzmmcode=


用户控件:
  1. <%@ Control Language="C#" AutoEventWireup="true" ClassName="SAMS.WEB.UC.UCZZMMList" %>
  2. <script runat="server">
  3.     /// <summary>
  4.     /// 政治面貌代码
  5.     /// </summary>
  6.     public string zzmmcode
  7.     {
  8.         get { return this.dplZZMM.SelectedValue; }
  9.         set { this.dplZZMM.SelectedValue = value; }
  10.     }  
  11.     protected void Page_Load(object sender, EventArgs e)
  12.     {
  13.         if (!IsPostBack)
  14.         {
  15.             Dictionary<int, string> ds = new SAMS.BLL.BLLCommon().getZZMMList();
  16.             this.dplZZMM.DataValueField = "Key";
  17.             this.dplZZMM.DataTextField = "Value";
  18.             this.dplZZMM.DataSource = ds;
  19.             this.dplZZMM.DataBind();
  20.         }
  21.     }
  22. </script>


  23. <x:DropDownList ID="dplZZMM" runat="server" Label="政治面貌" EnableEdit="true" Width="100px">
  24. </x:DropDownList>
复制代码
沙发
 楼主| 发表于 2013-8-20 10:40:20 | 只看该作者
咋没有人回复呢?
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|FineUI 官方论坛 ( 皖ICP备2021006167号-1 )

GMT+8, 2024-11-28 07:39 , Processed in 0.042942 second(s), 17 queries , Gzip On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表