⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 default.aspx.cs

📁 水晶报表详细资料水晶报表详细资料水晶报表详细资料
💻 CS
字号:
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {
        ConnectionZone1.CancelVerb.Description = "取消当前操作";
        ConnectionZone1.CloseVerb.Description = "关闭连接编辑器";
        ConnectionZone1.ConfigureVerb.Description = "修改连接的配置";
        ConnectionZone1.ConnectVerb.Description = "连接 Web 部件";
        ConnectionZone1.DisconnectVerb.Description = "断开 Web 部件连接";
        ConnectionZone1.ConfigureConnectionTitle = "配置连接";
        ConnectionZone1.ConnectToConsumerInstructionText = "创建此 Web 部件的使用者连接";
        ConnectionZone1.ConnectToConsumerText = "创建使用者连接";
        ConnectionZone1.ConnectToConsumerTitle = "将数据发送到 Web 部件";
        ConnectionZone1.ConnectToProviderInstructionText = "创建此 Web 部件的提供者连接";
        ConnectionZone1.ConnectToProviderText = "创建提供者连接";
        ConnectionZone1.ConnectToProviderTitle = "从 Web 部件获取数据";
        ConnectionZone1.ConsumersInstructionText = "当前的 Web 部件将信息发送到的 Web 件部";
        ConnectionZone1.ConsumersTitle = "使用者";
        ConnectionZone1.GetFromText = "自:";
        ConnectionZone1.GetText = "获取:";
        ConnectionZone1.HeaderText = "连接区域";
        ConnectionZone1.InstructionText = "管理当前 Web 部件的连接";
        ConnectionZone1.InstructionTitle = "管理 {0} 的连接"; ConnectionZone1.NoExistingConnectionInstructionText = "Web 部件中没有可用的活动连接。如果该页上有兼容的 Web 部件,您可以通过选择上面的链接来创建新的连接。";


        ConnectionZone1.NoExistingConnectionTitle = "没有活动连接";
        ConnectionZone1.ProvidersInstructionText = "当前的 Web 部件从中获取信息的 Web 部件:";
        ConnectionZone1.ProvidersTitle = "提供者";
    }
    protected void LinkButton1_Click(object sender, EventArgs e)
    {
        WebPartManager1.DisplayMode = WebPartManager.BrowseDisplayMode;
    }
    protected void LinkButton2_Click(object sender, EventArgs e)
    {
        WebPartManager1.DisplayMode = WebPartManager.ConnectDisplayMode;
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -