FineUI 官方论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

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

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

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

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

搜索
查看: 1309|回复: 0
打印 上一主题 下一主题

关于FineUI中文本内容不显示问题

[复制链接]
跳转到指定楼层
楼主
发表于 2013-11-28 09:44:15 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
错误的问题:在浏览中显示为空白在IE和Chrome浏览器中显示为
配置文件Code:
<configuration>
    <configSections>
        <section name="FineUI" type="FineUI.ConfigSection,FineUI" requirePermission="false"/>
    </configSections>
    <FineUI DebugMode="true" />
    <appSettings></appSettings>
    <connectionStrings>
        <add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient"/>
    </connectionStrings>
    <system.web>
        <compilation debug="true" targetFramework="4.0">
            <assemblies>
                <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/></assemblies></compilation>
        <authentication mode="Forms">
            <forms loginUrl="~/Account/Login.aspx" timeout="2880"/>
        </authentication>
        <membership>
            <providers>
                <clear/>
                <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/"/>
            </providers>
        </membership>
        <profile>
            <providers>
                <clear/>
                <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/>
            </providers>
        </profile>
        <roleManager enabled="false">
            <providers>
                <clear/>
                <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/"/>
                <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/"/>
            </providers>
        </roleManager>
        <pages controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID">
            <controls>
                <add assembly="FineUI" namespace="FineUI" tagPrefix="x"/>
            </controls>
        </pages>
        <httpModules>
            <add name="FineUIScriptModule" type="FineUI.ScriptModule, FineUI"/>
        </httpModules>
        <httpHandlers>
            <add verb="GET" path="res.axd" type="FineUI.ResourceHandler, FineUI"/>
        </httpHandlers>
        <httpRuntime maxRequestLength="102400 "/>
        <customErrors mode="Off"/>
    </system.web>
    <system.webServer>
        <modules runAllManagedModulesForAllRequests="true"/>
    </system.webServer>
</configuration>
Asp.net中的代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="UserHome.aspx.cs" Inherits="owerManager.UserHome" %>

<%@ Register Assembly="FineUI" Namespace="FineUI" TagPrefix="x" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>首页</title>
</head>
<body>
    <form id="form1" runat="server">
    <xageManager ID="ageManager1" runat="server" />
    <x:TabStrip ID="TabStrip1" runat="server" ActiveTabIndex="0" ShowBorder="True">
        <Tabs>
            <x:Tab ID="Tab1" runat="server" BodyPadding="5px" Title="Tab1">
               <Items>
                   <x:Button ID="Button1" runat="server" Text="Button">
                   </x:Button>
               </Items>
            </x:Tab>
            <x:Tab ID="Tab2" runat="server" BodyPadding="5px" EnableBackgroundColor="true" Title="Tab2">
               <Items>
                   <x:Button ID="Button2" runat="server" Text="Button">
                   </x:Button>
               </Items>
            </x:Tab>
        </Tabs>
    </x:TabStrip>
    </form>
</body>
</html>

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-27 15:56 , Processed in 0.043861 second(s), 17 queries , Gzip On.

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

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