宝玉

专注于web开发技术
随笔 - 114, 评论 - 4863 , 引用 - 594

.Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

我下载的是最新的95.2004.102带源码版,有几种方式配置,基本都差不多,我简单将我自己的安装过程说一下:

1、解压源程序到硬盘某个目录,然后将IIS默认站点指向Code\DottextWeb目录
2、创建一个新的数据库DotTextDB,打开sql查询分析器,运行data\Dottext_095_FullDB.sql,创建数据

库和存储过程。
3、根据你的需要在Configs目录下选择一个配置文件,我选择的是第一个Multiple1_Web.config,将里面

的内容替换Code\DottextWeb下面的web.congfig里面的内容,同时作以下改动:
<DbProvider type = "Dottext.Framework.Data.SqlDataProvider, Dottext.Framework"

connectionString = "Edit" />
改成
<DbProvider type = "Dottext.Framework.Data.SqlDataProvider, Dottext.Framework"

connectionString = "server=localhost;database=DotTextDB;uid=sa;pwd=;App=Blog" />
<ServerTimeZone>-5</ServerTimeZone>
改成
<ServerTimeZone>8</ServerTimeZone>

  <!-- Aggregate Blog Stuff -->
  <add key="AggregateTitle" value = "A .Text Community" />
  <add key="AggregateUrl" value = "http://localhost/dottextweb" />
  <add key="AggregateDescription" value = ".NET by .Text" />
  <add key="AggregateHost" value = "localhost" />


这个上面的如果是在本地则改成
  <!-- Aggregate Blog Stuff -->
  <add key="AggregateTitle" value = "我们自己的Blog" />
  <add key="AggregateUrl" value = "http://localhost/" />
  <add key="AggregateDescription" value = "我们自己搭建自己的Blog" />
  <add key="AggregateHost" value = "localhost" />

如果是传到服务器,比如我的是www.webuc.net
  <!-- Aggregate Blog Stuff -->
  <add key="AggregateTitle" value = "我们自己的Blog" />
  <add key="AggregateUrl" value = "http://www.webuc.net/" />
  <add key="AggregateDescription" value = "我们自己搭建自己的Blog" />
  <add key="AggregateHost" value = "webuc.net" />

  <!--UI Text -->  
  <add key="PostCollection" value = "Post Categories" />
  <add key="ArticleCollection" value = "Article Categories" />
  <add key="ImageCollection" value = "Image Galleries" />
  <add key="Archives" value = "Archives" />
上面的内容是显示在个人Blog首页上的,所以需要汉化一下
  <!--UI Text -->  
  <add key="PostCollection" value = "随笔分类" />
  <add key="ArticleCollection" value = "文章分类" />
  <add key="ImageCollection" value = "相册分类" />
  <add key="Archives" value = "档案" />
基本就是这样

4、新建Blog,开始我是用的DottextHelper.exe(在DottextHelper目录下,记得使用前先修改

DottextHelper.exe.config里面连接数据库的字符串)来添加,后来发现其实只要自己手动在

[blog_Config]表里面添加。在数据库里面添加完了,然后根据Application字段的名字,比如我的是

dotey,然后在Code\DottextWeb目录下新建一个dotey的目录,在里面新建一个空白的default.aspx文件

5、不出意外的话你的Blog就算是建好了,你就可以通过http://localhost/dotey,或者如果你是放在服

务器上,比如我的就可以通过http://www.webuc.net/dotey来访问我的Blog了,登陆后就可以管理自己的

Blog了。

6、以上步骤是按照说明一步一步来的,不过这样很快就会发现问题:Blog明明加上了,为什么首页不能

显示?为什么Blog不能打开?为什么博客列表会出现xml错误?还是就是英文界面太不爽了!至少这就是

我刚装上时候的困惑。

7、首先是首页不能正常显示Blog的问题,这个主要原因是[blog_Config]表中通过DottextHelper.exe增

加的纪录中BlogGroup项的值是null,而首页访问[blog_Config]默认只读取BlogGroup=1的纪录,所以需

要将数据库中BlogGroup默认值改为1,并且将所有BlogGroup项的值是null的改为1就好了。建议将

[Language]字段默认值改为zh-CHS。[TimeZone]字段默认值改成8。

8、根据Blog的链接地址,不能打开Blog,链接地址一般格式为:

http://www.webuc.net/dotey/archive/2004-04-04/156.aspx,打开就出错,在源码里面,在

default.aspx.cn里面我找到了对应的代码:
protected string GetEntryUrl(string host, string app, string entryName, DateTime dt)
{  
 return string.Format("{0}archive/{1}/{2}.aspx",GetFullUrl(host,app),dt.ToString

("yyyy/MM/dd"),entryName);
}
明明是dt.ToString("yyyy/MM/dd"),为什么日期格式还是会变成yyyy-MM-dd的样子呢?原来是是服务器

的中文日期格式惹的祸,把代码作如下改动就好了:
dt.ToString("yyyy/MM/dd",new CultureInfo("en-US"))
并且把所有类似于dt.ToString("yyyy/MM/dd")和dt.ToString("yyyy/MM")的代码全部像上面加上new

CultureInfo("en-US")就好了。

9、xml的错误主要是因为默认编码是utf-16的缘故,在上一个随笔里
我已经说明了如何解决。

10、.Text的汉化是个很麻烦的事情,需要汉化的内容分布在各个目录的各个.aspx,.aspx.cs,.config文

件下,在这点上,aspnetforums2.0就处理得非常好,将所有界面上显示的文字都放在.xml里面,这样汉

化起来就非常方便了,最近就在帮aspnetforums2.0汉化,也着实让我头大,还有很多没有翻译完,内容

实在太多了,而我英语又不是很好,呵呵,希望到时候不要有人骂我就好,这次汉化.Text,博客堂的源

码(在.Text 0.94基础上汉化的)帮了我的大忙,基本都是参照他的翻译的,谢谢开心提供的博客堂源码

下载。

这是我在调试过程中的一点心得体会,拿出来和大家一起分享分享,明天再把源码打包一份放到网上提供

下载(家里小猫拨号,网速实在太慢了),供大家学习研究用,说来.Text的源码还一直没好好研究呢,

不过我更喜欢AspnetForums2.0的架构一些,过些时间一定好好整理一下,拿出来给大家一起分享一下。

发表于 2004年4月4日 22:38

评论

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

我们在0.96版本基础上作了汉化和功能增强。http://blog.codelphi.com就是用的这个版本
2004/4/7 11:34 | 韩磊

# Fix

2004/5/5 0:46 | Lazybones

# Fix

2004/5/5 0:48 | Lazybones

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

我按照您说的做
还是不行啊?
错误:
A blog matching the location you requested was not found. Host = [localhost], Application = [login.aspx]
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。

异常详细信息: Dottext.Framework.BlogDoesNotExistException: A blog matching the location you requested was not found. Host = [localhost], Application = [login.aspx]

源错误:


行 52: if(result == null)
行 53: {
行 54: throw new BlogDoesNotExistException(
行 55: String.Format("A blog matching the location you requested was not found. Host = [{0}], Application = [{1}]",
行 56: hostname,


源文件: D:\学习资料\我的作品\Dottext 0.95.2004.102 Source\Code\Dottext.Framework\Configuration\Config.cs 行: 54
2004/5/8 0:11 | 文进坤

# 我遇到的问题和 文进坤 是一样的

帮帮忙了!
2004/5/13 13:54 | 空气外

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

很抱歉我都好久没接触过这个的源文件了,你注意检查一下配置文件,还有确认一下你的blog程序是不是站点目录下,例如我的是放在webuc.net下,没有用虚拟目录,并且配置文件中的:<add key="AggregateHost" value = "webuc.net" />value值改成你的站点域名,例如localhost
2004/5/13 14:08 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

是按照您的做法一步一步来的
仍然不行
同样的错误

你有别的联系方式吗

如:msn,qq

我的qq是:41879184

谢谢指教
2004/5/14 13:17 | 文进坤

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

文进坤
你有msn吗?
2004/5/17 9:53 | 过客

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

我用DottextHelper.exe新建blog时出现这样的错误:
System.Data.SqlClient.SqlException: Invalid object name 'blog_Config'.
at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at DottextHelper.CreateBlog.AddBlog(String[] items)

不知怎么回事?

如果手工添加blog_config表,仍然在首页显示blog时出现System.Data.SqlClient.SqlException: Invalid object name 'blog_Config'.
这个错误。

请教!!非常感谢!
2004/5/18 18:16 | 过客

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

对于这个问题我真的不清楚,你检查一下web.config是否正确。很抱歉我对.Text实在是没有怎么研究,推荐大家看看这个blog:http://blog.codelphi.com/grhunter
2004/5/18 18:22 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

楼上的楼上
你主要是sqlserver的连接字符串没有配置正确
2004/6/16 9:44 | 过客

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

http://www.webuc.net/dotey/archive/2004-04-04/156.aspx
这个BUG好象还是不行诶!
2004/6/23 22:32 | seasky7

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

http://www.webuc.net/dotey/archive/2004-04-04/156.aspx,打开就出错

这个问题....default.aspx.cs 页面中只有2个地方有
第一个:return string.Format("{0}archive/{1}/{2}.aspx",GetFullUrl(host,app),dt.ToString("yyyy/MM/dd"),entryName);

第二个:return dt.ToString("MMddyyyy");

都改了 还是不行!! 是还有其他页面的嘛??

谢谢老大指点 ..
2004/7/24 13:55 | akking

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

老大有联系方式嘛?

看了wiki 写的那个关于处理创建子目录和空白的default.aspx 的文章的..
我添加aspnet_isapi.dll映射 但是"确定"按钮是灰的:( 怎么办??

如果可以的联系我吧..这几天弄这个头痛死了..

msn:chinaitv@hotmail.com
qq:812655
popo:sharetone(帐号)
ps:注明 .text

谢谢各位老大的帮助了.. 希望能早日脱离苦海.
2004/7/24 15:21 | akking

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

很抱歉,我没有使用过aspnet_isapi.dll映射,不过我记得wiki里面有详细的图文说明,按照上面操作应该不会有问题。建议再详细看一下。
2004/7/26 14:49 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

楼上的楼上看看这里http://scottwater.com/blog/articles/Wildcard.aspx
注意2000和2003是不一样的
2004/7/28 17:58 | 槛上人

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

谢谢了 我的xp 还是不行 但是在另外两台 2000server 上可以添加.

请问一下 blog 的首页可以改界面嘛? 看了很多blog 里面都很漂亮 首页都是一样 包括这里:)
2004/7/29 10:46 | akking

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

修改default.aspx就好了:)
2004/7/29 10:47 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

我调试出现,不能登陆,老是提示非法登录,将数据库中的密码设为空,还是不能登陆,请执教!
2004/8/4 10:45 | haizheng

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

今天晚上回去了我把0.95的一些小问题修正一下,并提供一个编译好的:)
2004/8/4 10:53 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

期待中!!!
2004/8/4 11:35 | haizheng

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

请问 如果根域名没有绑定怎么办?

也就是说不和你的 www.webuc.net和 webuc.net都是绑定了一个空间,

那么左面的文章分类等的连接就会出错,应该修改或者设置?
2004/8/12 7:04 | hakin

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

一共有四个web.config文件,你可以根据你的情况选择一个
官方网站有相关英文说明
抱歉我现在也忘了:P
2004/8/12 19:27 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

我在自己机器上安装了一个,基本上都好用,但是有一点问题。就是在相册添加完我的照片后,发现照片不能正常的显示,是链接错误。不知怎么修改,因为对.text不是很熟悉,求教各位大侠执教。
照片的链接地址是:http://172.16.100.146/172.16.100.146/images/172_16_100_146/zhaohy/2/o_00545248.JPG
也就是说多了一个"/172.16.100.146"是哪里出了问题呢,谢谢
另外我再想问问:.text有总的管理员吗,就是管理各个blog,我怎么没有找到呢,欢迎与大家共同交流QQ:415166316
2004/8/16 20:37 | 宏宇

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

这个bug:
Dottext.Common\Config\MultipleBlogConfig.cs
修改65行:
string virtualPath = string.Format("/images/{0}/{1}/",Regex.Replace(Host,@"\:|\.","_"),appFromRequest);

很抱歉,我马上把下载包更新一下
2004/8/16 20:43 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

"dotey,然后在Code\DottextWeb目录下新建一个dotey的目录,在里面新建一个空白的default.aspx文件"

我是这么建的 也可以访问 但只是空白叶子阿


2004/8/16 22:18 | text

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

光建目录没用,还要在数据库中添加记录

其实在我最新的下载程序中有一个register.aspx,可以直接注册的
2004/8/16 22:20 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

注册了 看到的还是空白叶子
http://localhost:8082/Dottext/test/default.aspx
2004/8/17 1:41 | text

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

你试着用80端口看看,不好意思我没试过非80端口,记得要修改一下web.config
2004/8/17 1:43 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

80端口我也试了 还是那个错误
http://localhost/test/default.aspx
test指向C:\Inetpub\wwwroot\Dottext 0.95.2004.102 Source\Code\DottextWeb

应用程序中的服务器错误。
--------------------------------------------------------------------------------

A blog matching the location you requested was not found. Host = [localhost], Application = [logout.aspx]
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。

异常详细信息: Dottext.Framework.BlogDoesNotExistException: A blog matching the location you requested was not found. Host = [localhost], Application = [logout.aspx]

源错误:

执行当前 Web 请求期间生成了未处理的异常。可以使用下面的异常堆栈跟踪信息确定有关异常原因和发生位置的信息。

堆栈跟踪:


[BlogDoesNotExistException: A blog matching the location you requested was not found. Host = [localhost], Application = [logout.aspx]]
Dottext.Framework.Configuration.Config.GetConfig(String hostname, String application)
Dottext.Common.Config.MultipleBlogConfig.GetConfig(HttpContext context)
Dottext.Framework.Configuration.Config.CurrentBlog(HttpContext context)
Dottext.Web.UI.Handlers.BlogExistingPageHandler.GetHandler(HttpContext context, String requestType, String url, String path)
Dottext.Common.UrlManager.UrlReWriteHandlerFactory.GetHandler(HttpContext context, String requestType, String url, String path)
System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig) +699
System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute() +96
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +173




--------------------------------------------------------------------------------
版本信息: Microsoft .NET Framework 版本:1.1.4322.573; ASP.NET 版本:1.1.4322.573


http://localhost/test/test/default.aspx

新建text文件夹 访问这个就什么都看不到

我把default.aspx源码复制到test/test(我的blog文件夹,空的那个) 可以看到点东西,可没有皮肤

2004/8/17 2:25 | text

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

你是用的哪个web.config?
还有你为什么是:
http://localhost/test/test/default.aspx
而不是
http://localhost/test/default.aspx
2004/8/17 2:26 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

第一个test就是DottextWe目录 第二个test是我新建的我的blog文件目录

C:\Inetpub\wwwroot\Dottext 0.95.2004.102 Source\Code\DottextWeb\Web.config
我用的是这个 就配置了一个Web.config文件

我用http://localhost/test/default.aspx 这个访问就出现上面的错误

用这个http://localhost/test/test/default.aspx 访问就啥都没有
不过我把DottextWeb文件夹下的文件复制到DottextWeb\test\目录下就可以用了

2004/8/17 2:33 | text

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

你把根目录指向DotTextWeb目录
然后访问http://localhost
2004/8/17 2:34 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

宝玉,你的下载包去哪里下载呢,我想要一份
令外我用的是.net2002, .text的项目文件怎么打不开呢,是版本的问题吗,谢谢你的指教
2004/8/17 2:40 | 宏宇

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

呵呵 配置成功 谢谢宝玉
2004/8/17 2:41 | text

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

要用vs.net2003打开:)
我前不久重新汉化的:
http://webuc.net/dotey/archive/2004/08/05/1499.aspx
2004/8/17 2:43 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

用非80端口也可以 我的80端口默认让Oracle 9i用了
2004/8/17 2:44 | text

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

宝玉

我用了你的095.text後

成功的裝起來了

但是不知道為何按下登出後 (注銷)

都會出現

.Text - Application Error!
Details

並未將物件參考設定為物件的執行個體


Return to site

請問這怎麼辦
2004/9/5 10:57 | zubin

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

在这个汉化版已经修正了!
http://webuc.net/dotey/archive/2004/08/05/1499.aspx
2004/9/5 19:49 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

配置的问题,今天打了sp2

“/blog”应用程序中的服务器错误。
--------------------------------------------------------------------------------

SQL Server 不存在或访问被拒绝。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。

异常详细信息: System.Data.SqlClient.SqlException: SQL Server 不存在或访问被拒绝。

源错误:

执行当前 Web 请求期间生成了未处理的异常。可以使用下面的异常堆栈跟踪信息确定有关异常原因和发生位置的信息。

堆栈跟踪:


[SqlException: SQL Server 不存在或访问被拒绝。]
System.Data.SqlClient.ConnectionPool.GetConnection(Boolean& isInTransaction) +474
System.Data.SqlClient.SqlConnectionPoolManager.GetPooledConnection(SqlConnectionString options, Boolean& isInTransaction) +372
System.Data.SqlClient.SqlConnection.Open() +384
Dottext.Framework.Data.SqlHelper.ExecuteReader(String connectionString, CommandType commandType, String commandText, SqlParameter[] commandParameters) +54
Dottext.Framework.Data.SqlDataProvider.GetConfig(String host, String application) +114
Dottext.Framework.Data.DataDTOProvider.GetConfig(String hostname, String application) +55
Dottext.Framework.Configuration.Config.GetConfig(String hostname, String application) +34
Dottext.Common.Config.MultipleBlogConfig.GetConfig(HttpContext context) +355
Dottext.Framework.Configuration.Config.CurrentBlog(HttpContext context) +26
Dottext.Web.UI.Globals.Skin(HttpContext context) +10
Dottext.Web.UI.WebControls.MasterPage.get_TemplateFile() +25
Dottext.Web.UI.WebControls.MasterPage.BuildMasterPage() +20
Dottext.Web.UI.WebControls.MasterPage.OnInit(EventArgs e) +13
System.Web.UI.Control.InitRecursive(Control namingContainer) +241
System.Web.UI.Control.InitRecursive(Control namingContainer) +179
System.Web.UI.Control.InitRecursive(Control namingContainer) +179
System.Web.UI.Page.ProcessRequestMain() +174




--------------------------------------------------------------------------------
版本信息: Microsoft .NET Framework 版本:1.1.4322.573; ASP.NET 版本:1.1.4322.573
2004/9/7 5:01 | 鹤诗

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

又搞了一会,原来是自己对blog不会用,现在没问题了,谢谢宝玉。
2004/9/7 7:25 | 鹤诗

# Please Tell me Clearly

error message:

“/login”应用程序中的服务器错误。
--------------------------------------------------------------------------------

SQL Server 不存在或访问被拒绝。
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。

异常详细信息: System.Data.SqlClient.SqlException: SQL Server 不存在或访问被拒绝。

源错误:

执行当前 Web 请求期间生成了未处理的异常。可以使用下面的异常堆栈跟踪信息确定有关异常原因和发生位置的信息。

堆栈跟踪:


[SqlException: SQL Server 不存在或访问被拒绝。]
System.Data.SqlClient.ConnectionPool.GetConnection(Boolean& isInTransaction) +484
System.Data.SqlClient.SqlConnectionPoolManager.GetPooledConnection(SqlConnectionString options, Boolean& isInTransaction) +372
System.Data.SqlClient.SqlConnection.Open() +384
aspnetforums.Data.SqlDataProvider.LoadSiteSettings(String application)

[ForumException: Unable to open connection to data provider.]
aspnetforums.Data.SqlDataProvider.LoadSiteSettings(String application)
aspnetforums.Components.SiteSettings.GetSiteSettings(String applicationName)
aspnetforums.Components.Globals.GetSiteSettings(String applicationName, HttpContext context)
aspnetforums.Components.Globals.GetSiteSettings()
aspnetforums.Data.SqlDataProvider.LogException(ForumException exception)
aspnetforums.Components.ForumException.Log()
aspnetforums.ForumsHttpModule.Application_BeginRequest(Object source, EventArgs e)
System.Web.SyncEventExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute() +60
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +87




--------------------------------------------------------------------------------
版本信息: Microsoft .NET Framework 版本:1.1.4322.2032; ASP.NET 版本:1.1.4322.2032
2004-10-25 10:01 | hjt
2004/11/23 3:36 | wyy

# Why

我看了这里的相关解答,但不知道从何做起,请给我一个清楚的答案,谢谢!!!
2004/11/23 3:38 | wyy

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

请检查一下web.config中的数据库连接是不是正确:)
2004/11/23 23:17 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

你好.我今天下载了你最后的更新的blog,出现了上面出现的问题.
-----------------------------------------
A blog matching the location you requested was not found. Host = [localhost], Application = [login.aspx]
说明: 执行当前 Web 请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息..........
-------------------------------后来详细看了你对大家的问题的回复.我便照着这样做.终于解决了以上这个错误.可现在http://localhost/ylwlf访问一片空白.没有内容.当用http://localhost/admin登陆时.可上面的这个问题又出现了请问是哪里引起的呢?我是win2003系统
2004/12/17 5:10 | feng

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

你根据说明文件换一个web.config试试!
2004/12/17 5:12 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

已经换了.而且按照原文的说明一步步一配制.我这几有几个朋友都遇到同样的错误.记得上学期在win2000(.net framework1.1)里配制成功.而且很容易.可在win2003下就不行了.估计还有哪里可能出问题了呢?
2004/12/18 7:44 | feng

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

就是其中的一个web.config,默认的web.config是由这个问题的
2004/12/19 20:07 | 宝玉

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

http://spaces.msn.com/members/myliuhecai/
2006/1/4 1:08 | 六合彩

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Nice ...
2007/12/20 4:30 | mp3 indir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thanks .. !
2007/12/23 23:19 | flodby

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

SA?OLAS?N
2008/1/3 16:38 | aşk

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks bedava mp3 download
2008/1/4 13:48 | mp3 indir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

PLAY65 TAVLA
2008/1/7 17:21 | play65

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thank you admin. nice site.
2008/1/15 19:49 | ensest hikayeler

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thanks ..!!
2008/1/17 0:17 | Mp3 indir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

It’s very good article. Great site with very good look and perfect information.

2008/1/17 6:20 | Usb pendrive

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Great site with very good look and perfect information. thanks.
2008/1/19 23:28 | porno

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

A blog matching the location you requested was not found. Host = [localhost], Application = [login.aspx] ?
2008/1/28 19:55 | Cephe Reklam

# diziler

thanks good post
2008/1/29 13:17 | sanalosmanli@hotmail.com

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)nice site

<a> href="http://www.mp3cell.net" target="_blank">mp3 indir</a>
2008/2/3 7:27 | www.mp3cell.net

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

good like
2008/2/3 7:29 | mp3 indir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks you
2008/2/3 7:30 | mp3 indir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks good post
2008/2/3 7:32 | şarkı indir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Great site with very good look and perfect information. thanks. you
2008/2/3 7:33 | şarkı indir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Great site with very good look and perfect information. thanks. N?CE S?TE
2008/2/3 7:35 | mp3

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

N?CE S?TE
2008/2/3 7:36 | mp3

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Great site with very good look and perfect information. thanks. you

http://www.youtubetc.com
2008/2/15 7:19 | Youtube

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks
2008/2/22 9:06 | youtube

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

<a target="_new" href="http://www.youtubeli.com">http://www.youtubeli.com</a>

very nice
2008/3/3 2:59 | youtube

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks.
http://www.youtubeturka.net
2008/3/4 19:31 | youtube

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

good
2008/3/20 10:14 | youtube

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks.good post
2008/3/20 10:15 | film izle

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Keep up the good work.
2008/3/25 13:13 | Gry

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks
http://www.youtubede.net
2008/5/22 7:35 | youtube

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks
2008/8/4 5:56 | halı yıkama

# oyunlar

THANKS
2008/8/7 6:40 | oyunlar

# oyun

THANKS
2008/8/7 6:40 | oyun

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks
2008/10/25 18:18 | oyun

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

good sharing, thank you.
2008/10/29 13:42 | film izle

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

mersi sekerlerim cinlerim benim
2008/10/29 13:42 | mirc

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

super duruyor kutlarim... Thanksss
2008/11/10 22:38 | Oyun

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

I’d like to have separate layout for the photo set overview and the single photo page. Is there anyway to tweak the template to do that?
2008/11/26 22:22 | Estetik

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks
2008/11/28 16:56 | cam balkon

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

I’d like to have separate layout for the photo set overview and the single photo page. Is there anyway to tweak the template to do that?
2008/11/28 16:58 | web tasarım

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

mersi sekerlerim cinlerim benim
2008/11/28 16:59 | cam balkon

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

mersi sekerlerim cinlerim benim
2008/12/21 17:07 | ılgaz

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks.
2008/12/22 0:02 | müzik

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

recep ivedik 2 fragman
2008/12/22 0:03 | recep ivedik 2 fragman

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

<a href="http://www.ataunimania.com">Atatürk Üniversitesi</a>
<a href="http://www.axakal.net">Erzurum Cinis</a>
<a href="http://www.arabavideolari.gen.tr">Ararba Videolar?</a>
2008/12/22 8:01 | SERKAN

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks
2008/12/22 8:02 | atatürk Üniversitesi

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

great source
2008/12/22 8:03 | Araba Videoları

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

great article thanks
2008/12/22 12:20 | savaş oyunları

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

very goods
2008/12/25 17:05 | oyun

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

THANKS
2008/12/25 17:06 | oyunlar

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

very goodse
2008/12/25 17:07 | msn nickleri

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

very goods
2008/12/25 17:07 | varmısın yokmusun

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks
2008/12/25 17:08 | dekor oyunları

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks
2008/12/25 17:09 | giysi giydirme oyunları

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

very goods
2008/12/25 17:10 | mario oyunları

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

very good
2008/12/25 17:10 | strateji oyunları

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

very goods
2008/12/25 17:12 | çocuk oyunları

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thank you <a href="http://www.arabaoyunu.gen.tr" target="_blank" title="araba oyunlar?">araba oyunlar?</a>

2008/12/28 16:30 | araba yarışı

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks
2008/12/28 16:32 | fubol oyunları

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

the best blog
2008/12/28 16:33 | motor yarışı

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks
2008/12/28 16:36 | pasta oyunları

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

hello
2008/12/28 16:37 | oyun gemisi

# chat

Thanks
2009/1/3 17:59 | chat

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

te?ekkür ederim oyun sitesi ekledim
2009/1/7 6:35 | Savaş Oyunları

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)


优秀 !!
2009/1/12 6:48 | izlesene

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thanks
2009/2/26 18:22 | kız oyunları

# cam balkon

Just to let you know.. most serious OSS developers do really care about the difference between free and open source..
2009/4/12 17:35 | info@cambalkonline.com

# cam balkon

Just to let you know.. most serious OSS developers do really care about the difference between free and open source..
2009/4/12 17:36 | infopanoramikbalkon.com

# CASUS TELEFON

casus telefon yaz?l?m? telefon dinleme cihaz? http://www.trdedektiflik.com
2009/6/5 7:36 | casustelefon@hotmail.com

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thank you
2009/7/2 11:52 | tolga

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thank youuuuu
2009/7/10 9:04 | okey

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks
2009/7/11 21:07 | 凡客

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

不错 我收藏了 和恶化
2009/7/31 9:31 | vancl

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Its a very good post. Thanks for the information
2009/8/26 6:58 | selima

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thank you very much for the post
2009/8/26 7:00 | selima

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thanks for the informative post. Keep it up.
2009/8/26 7:01 | jonathan

# cam balkon

TERAS CAMLAMA
2009/9/16 11:14 | cam balkon

# cam balkon

KI? BAHCES?
2009/9/16 11:16 | cam balkon

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thank you very much for the post
2009/10/6 3:12 | 凡客诚品

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

ice-free in summer. While these sorts of numbers are pretty arm-waving at the moment (numbers like 2040 were previously considered to be aggressive), there’s
2010/1/16 13:58 | ben 10 oyunları

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thanks
2010/1/17 15:48 | www.bebekbakmaoyunlari.com

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thanks.
2010/1/17 15:49 | sedo

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thank you.
2010/1/17 15:53 | sedo

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thank you very much.
2010/1/17 15:57 | memo

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

For those of you
2010/2/8 18:08 | iizleporno

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks for subject.
2010/2/10 14:43 | araba oyunu

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thank you
2010/2/10 14:45 | bebek giydir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks.
2010/2/10 14:46 | bebek bakma

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thank you
2010/2/12 10:37 | araba oyunu oyna

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thanks for this article and most generaly for this very amazing website :)
2010/2/13 6:14 | sepetli platform

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thank you..
2010/2/13 13:37 | kız oyunu oyna

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thanks
2010/2/13 13:38 | bebek bakma

# cam balkon

http://www.anadolucambalkon.com
2010/2/15 12:46 | info@anadolucambalkon.com

# cam balkon

http://www.anadolucambalkon.net

# cam balkon

http://www.marmaracambalkon.com
2010/2/15 12:49 | info@marmaracambalkon.com

# kızoyunlarıoyna

k?z oyunlar?, k?zoyunlar?oyna, oyun oyna, oyunu oyna
2010/2/17 16:00 | www.kizoyunuoyna.com

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Sam,she`d make a nice addition to Robert and Patrick on the show. It would for sure boost DL.TV viewers on tues. and thursday nights. Let`s start a petition on that thought right now. All for adding Natali to the cast for DL.TV post a comment.I`m sure Patrick would be open to adding viewers
2010/2/23 18:47 | barbie oyunları

# sikiş

ANLA BENI HER HALIMLE ASKIN CANIMI ALSIN
2010/3/7 22:02 | sikiş

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

asdad sada dasd sad asd
2010/3/7 22:05 | porno

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

goad article i agree with you:)
2010/3/14 8:27 | porno izle

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Hi....
2010/4/7 3:41 | SEO COMPANY

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

harika bir olay kutlar?m.:)
2010/4/13 13:06 | Okey

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

THANKS ADM?NS
2010/4/14 4:13 | chat

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

tenk yu admin ama oyun oyna'sana lan =)
2010/4/23 18:31 | oyun

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thank you.

http://myjest.com
2010/4/24 21:21 | MyJEST.COM

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thank you very much
2010/5/5 4:40 | halı yıkama

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thansku youa aq
2010/5/9 6:03 | chat

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thank you very much for the post

http://www.altunhaliyikama.com/istanbul-hali-yikama/istanbul-hali-yikama">http://www.altunhaliyikama.com/istanbul-hali-yikama/istanbul-hali-yikama
http://www.altunhaliyikama.com/hali-yikama/hali-yikama">http://www.altunhaliyikama.com/hali-yikama/hali-yikama
http://www.altunhaliyikama.com/
2010/5/11 11:14 | istanbul halı yıkama

# kızoyunlarıoyna

K?zoyunlar?oyna ya bilece?iniz çok güzel bir site. <a href="http://www.barbiekizoyunu.com/" title="k?z oyunlar? oyna">k?zoyunlar?oyna</a>
2010/5/14 13:29 | barbiekizoyunu.com

# kızoyunlarıoyna

KIZOYUNLARIOYNA ya bileceginiz cok Güzel bir site
2010/5/14 13:31 | kızoyunlarıoyna

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

看了
2010/5/17 21:40 | 凡客优惠券

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

TAVLA dünyan?n en büyük oyunu içerisinde <a href="http://www.gercektavla.com">Tavla Oyunu</a> oyna
2010/5/21 15:31 | tavla

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thank you admin. OkeyXL.com içerisinde online okey e?lencesi ba?lad?.
2010/5/21 15:32 | okey

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Dünyan?n en büyük online tavla salonu Play65 içerisindeki yerinizi hemen al?n. www.Tavlaplay65.net
2010/5/21 15:33 | play65

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

I just wanted to add a comment here to mention thanks for you very nice ideas.
2010/6/8 3:48 | seo company

# business continuity software

Thanks for sharing ....!!!

<a href="http://www.evergreen-data.com/">business continuity software</a>

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Hi !!
I this this is a asp.net question of database connectivity..
For this u can take help from Asp.net help file...

[url=http://www.promptmed.com/medical_center.html]Durham medical center[/url]
2010/6/8 22:05 | Durham medical center

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thanks for the post.
<a href="http://www.centuryretail.com/listings/new-developments/georgia"> Atlanta retail space </ a>
2010/6/9 1:19 | Atlanta retail space

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Hi am new to this web site...
2010/6/9 1:26 | book summaries

# Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

HI ....
Nice to visit your site. I will look forward for your future updates.
2010/6/9 21:44 | custom printed bags

# Hi...

I appreciate your work and hopping for some more informative posts.

<a href="http://www.shvoong.com/books">book summaries</a>
2010/6/9 22:06 | book summaries

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)


I like your blog. Please keep writing.thanks!
2010/6/9 22:09 | book summaries

# Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

It is indeed a great resource to obtain information about Aspnet. Keep posting. Thanks.
2010/6/9 22:56 | online sweepstakes

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thanks for post.
<a href="http://www.tempest-eng.com/">Ammonia Chiller</a>
2010/6/9 23:35 | Ammonia Chiller

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

It's a pleasure being here, keep up the good work.
2010/6/19 6:06 | UppaBaby Vista

# Thank you

Thank you for the very informative. Does the text really.
<a title="?ndimedia" href="http://wmass.indymedia.org/?q=node/168#comment-94148">?ndymedia</a>
2010/7/12 4:58 | suzan

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

http://wmass.indymedia.org/?q=node/168#comment-94148 Thank you for the very informative. Does the text really.

2010/7/12 4:59 | suzan

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thank you for the very informative. Does the text really. <a title="eldia" href="http://www.eldia.com.ar/blog6/pt/blog/default.aspx?id=158">eldia</a>

2010/7/12 5:10 | suzan

# cam balkon

Cam Balkon Sistemleri Hakk?ndaki Her ?ey Bu Sitede! Cam Balkon Modellerini Görün ve Size En Yak?n Cam Balkoncuyu Bulun!
2010/7/15 8:21 | cam balkon

# mp3 indir

Thanks for the response. I appreciate it because I think this is a subject filled with more myth and speculation then fact and the tests you posted absolutely do draw <a href="http://www.mp3lerim.org" title="mp3 indir , mp3 , mp3 dinle">mp3

indir</a> out some intrinsic differences and do so with real fact and not theory or guesswork. Its honestly very helpful to the community. Thanks.
2010/8/1 13:43 | mp3 indir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Great site with very good look and perfect information. thanks. http://www.nakitoyun.com
2010/8/13 16:01 | tavla oyna

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

it is indeed a great resource to obtain information about Aspnet. Keep posting. Thanks.
2010/8/13 16:03 | tavla oyna

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thank you for the very informative http://www.nakitoyun.com/tavla-siteleri
2010/8/13 16:13 | play65 indir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

I think type of site that is useful in sharing information and it is important to shar.Web proliferation of new developments in the field of design and entrepreneurial spirit of people who have very beautiful and pleasing to be professional.
2010/8/20 6:45 | hurda

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

First of this type of site we provide users the opportunity because of this beautiful and quality we give our respect.
2010/8/21 2:37 | Haliyikama

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Share admin thanks a lot for sharing a very successful and wonderful.
2010/8/21 7:45 | Hali Yikama

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

possibility of sharing and social solidarity at a level just fine
2010/8/23 5:44 | Buz

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thank you for sharing you do.
www.isbet.com.tr
2010/8/24 2:51 | Logar

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

a significant share of your site as people think.Thanks you
2010/8/26 2:35 | konteyner

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Very useful in terms of sharing people. Thank you.
2010/8/27 6:47 | palet

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

I always follow your site thank you wish you continued success. Thank you.
2010/8/28 6:41 | Cöp Konteyner

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks for sharing web design
2010/8/31 7:01 | Web Tasarim

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks admin
2010/8/31 7:32 | web tasarim

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

I wish you continued success sharing, thank you.
2010/9/1 2:46 | dell destek

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Your site has very nice, thank you for sharing.
2010/9/3 4:57 | Acer Destek

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thank you for sharing your site I found useful.
2010/9/4 6:35 | perde@cizgiperde.net

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

I am truly impressed with above article .It is full of creative and innovative ideas that i am always searching on internet.Really i am glad to read this article and your creativity has inspired me to write my own articles ,so thanks for it .
<a href="http://www.tottini.com">baby furniture</a>
2010/9/8 7:17 | baby furniture

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thank you for sharing
<a href="http://www.videovole.com/browse-dizi-videos-1-date.html" title="dizi izle" rel="nofollow">dizi izle</a>
<a href="http://www.videovole.com/browse-music-klip-videos-1-date.html" title="müzik videolar?" rel="nofollow">klip izle</a>
<a href="http://www.izlecan.com" title="türkü dinle" rel="nofollow">video izle</a>
2010/9/14 10:30 | dizi izle

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thank you for sharing
http://www.videovole.com

http://www.izlecan.com
2010/9/14 10:34 | video izle

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

The topic which you chosen for discussion is really very good....Thanks..
2010/9/26 3:51 | mahjongs

# motor yarisi

thank you
2010/9/28 4:40 | hgcfghv@ghbjb.com

# Hali Yikama

nice work at a level of social solidarity and the opportunity to share
a very good time thank you..

# lahmacunfirini

Fine was a work and full-time. Thank you.
2010/10/6 9:26 | lahmacun fırını

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

ehauhuae a.q ibneleri
2010/10/12 7:56 | film izle

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

for discussion is really very good....Thanks..
2010/10/17 11:35 | tatil

# Hali Yikama

This has been a great admin. fun and very nice. beautiful study. Thank you again

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thank you admin pls :=))
2010/11/2 5:58 | okey oyna

# Web Design Company

Nice information, many thanks to the author. It is incomprehensible to me now, but in general, the usefulness and significance is overwhelming. Thanks again and good luck! http://www.felixlabs.com
2010/11/11 5:05 | kapoorpooja08@gmail.com

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Nice information, many thanks to the author. It is incomprehensible to me now, but in general, the usefulness and significance is overwhelming. Thanks again and good luck! http://www.felixlabs.com
2010/11/11 5:06 | http://www.felixlabs.com

# nfljerseynet@hotmail.com

sell-nfljerseyscom
http://www.nfljerseynet.com">http://www.nfljerseynet.com
nfljerseynet@hotmail.com
NFL ,MLB,NBA,NHL jerseys
We can supply all kind jersey with good quality and low price.
http://www.sell-nfljerseys.com
http://www.nfljerseynet.com">http://www.nfljerseynet.com

2010/11/11 8:57 | sell-nfljerseyscom

# exshoe21@hotmail.com

exbagscom
exshoe21@yahoo.com
http://www.ugg-roxy.com">http://www.ugg-roxy.com
Classic Short calf height boot
thank you for your advise ,
http://www.ugg-roxy.com">http://www.ugg-roxy.com
all kinds of TOP QUALITY branded-name Apparel & Fashion. lv Jeans,nike Shoes,gucci T-shirt,coach Handbag, polo jersey
http://www.exbags.com
exshoe21@hotmail.com
exshoe21@yahoo.com
2010/11/11 8:58 | exbagscom

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thanks for your share

http://xn--72cc8b5bxarr6bbb2mc9id.com
http://xn--12cm6c8agob6dyb9kb7ece.com
2010/11/14 9:46 | กล้องโลโม่

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Hey, Really great work,

I would like to join your blog anyway so please continue sharing with us,

Thanks
2011/1/5 6:39 | Generic Cialis

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thank you admin pls :=))
http://www.batak--oyna.com
2011/1/10 21:54 | Okey Oyna

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

http://www.emlakpencerem.com
http://www.kapidakaldim.com
http://www.seoarti.com

thank you so much admin
2011/1/12 9:29 | emlak

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

I would like to join your blog anyway so please continue sharing with us,

Thanks
2011/1/18 18:07 | oyunlar4

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks nice post
2011/2/2 14:55 | zamanasd1@hotmail.com

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks for share
2011/2/2 14:55 | Cam Balkon

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

nice share thnks
2011/2/2 14:56 | Antalya Ajans

# halı yıkama

What is the third word in the phrase "ohahero zedo fiq adabuju iwayeno"?: *
2011/2/8 19:48 | info@billurhaliyikama.com

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

THENKS ADM?N?STRATOR

# HALI YIKAMA FABRİKASI

THENK YOU

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

THNEKS ..
2011/2/8 19:51 | HALI YIKAMA

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thank you
2011/2/9 3:02 | Şiir

# Good article

Thanks.
2011/2/9 3:03 | Mıknatıs

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks for this bebek bakma oyunlar?
2011/2/10 14:30 | bebek bakma oyunları

# hali yikama

http://www.billurhaliyikama.com

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

THENKS ADM?N
2011/2/11 16:22 | hali yikama

# Networking solutions

Nice work, I would like to read your blog every day Thanks
2011/2/18 2:55 | Networking solutions

# cam balkon

TERAS CAMLAMA
2011/2/21 10:30 | beytullahapaydin@hotmail.com

# cam balkon

BALKON CAMLAMA

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

There are may person searching about that now they will find enough resources by your post,<a href="http://www.sonicinfosystem.com"> Seo Services India</a>
2011/4/2 8:00 | Seo Services India

# Seo Services India

There are may person searching about that now they will find enough resources by your post,
2011/4/2 8:01 | Seo Services India

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

http://www.eskisehircilingir.net
http://www.escananahtar.com
http://www.cilingireskisehir.com
http://www.eskisehirdecilingir.com Bunu Be?endi
2011/4/26 8:46 | eskişehir çilingir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Shares is very beautiful. Thank you to everyone.
2011/4/28 2:58 | halı yıkama

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

说实话,我什至无法想像那有多么难找到关于上述专题片像样的信息。我花了几个小时之前,我在您的网站来了。毫无疑问,这是最好的免费提供源!它谢谢!
2011/5/4 7:39 | Temporary Van Insurance

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thanks for nice post a collaction ? am always following your web site because your web site very nice
2011/5/25 6:44 | İzmir Mimarlık

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

thank you for sharing such a great post its really awesome
2011/6/20 7:17 | lyoness españa

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

# çilingir
# anahtarc?
# çilingir
# çilingir hizmeti

2011/6/20 11:19 | çilingir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

http://www.anahtarcilar.com/
http://www.anahtarcim.com/
http://www.turkiyecilingir.com/
2011/6/20 11:21 | çilingir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

http://www.gaziosmanpasacilingir.com/
http://www.sislicilingir.com/
http://eskisehircilingir.org/
http://www.izmiranahtarci.com/
THANK YOU
2011/6/20 11:22 | çilingir

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Good stuffs here. Thanks for sharing the debugging code, very useful. <a href="http://www.contestmob.com/blog/how-to-win-radio-contests/">How to Win Radio Contests</a>
<a href="http://www.contestmob.com/blog/how-to-win-radio-contests/">Radio Contests</a>
<a href="http://www.contestmob.com/blog/how-to-win-radio-contests/">Contest Radio</a>
2011/6/29 22:57 | How to Win Radio Contests

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

What's the latest version for the source code?
2011/7/5 18:38 | Dealista

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

这个网站是最好的资源编码和编程和作者有一个非常透彻的认识,对这一领域的权威网络服务。
2011/7/17 11:29 | Cold Sore Remedies

# konteyner


The subject is too interesting, thanks for sharing
2011/7/20 6:59 | ilker@simgesankonteyner.com

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)


The subject is too interesting, thanks for sharing

<a href="www.simgesankonteyner.com"> konteyner </a> konteyner
2011/7/20 7:00 | ilker@simgesankonteyner.com

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thanks for taking this opportunity to discuss this I feel fervently about this and I like learning about this subject.If possible as you gain information please update this blog with more information.

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

I am continually browsing online for articles that can aid me. Thanks!
2011/7/25 2:27 | Web Designer

# Perde

Sharing a very informative and useful
2011/7/25 6:28 | emre@cizgiperde.com

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

found good piece of information here, Thank you for sharing these helpful post it is very interesting and read worthy. Keep these informative post coming!
2011/8/24 4:59 | marca personal

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

I like your way of writing, You break it down nicely. Keep these informative post coming! much appreciated!... thanks have a great day :)
2011/9/6 4:16 | proyectos culturales

# Ultimate appliances

Thanks for ones marvelous posting! I seriously enjoyed reading it, you're a great author.I will be sure to bookmark your blog and definitely will come back in the foreseeable future. I want to encourage you continue your great job, have a nice day!
2011/9/7 0:12 | Panny acution

# ultimateappl@gmail.com

Interesting layout on your blog. I really enjoyed reading it and also I will be back to read more in the future.
2011/9/7 14:24 | Ultimate appliances

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thank you for sharing these helpful post it is very interesting and read worthy... I like your way of writing, You break it down nicely. Keep these informative post coming! much appreciated!... thanks have a great day :)
2011/9/12 7:29 | nuevos negocios

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

This posting is very cool and interesting post.This is a great inspiring article.I am very much pleased with your good work.You put really very helpful information in this site.
2011/9/14 1:51 | discount supplements

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

That's exactly what I was looking for!Your article is much useful for my paper, thanks a lot
2011/9/15 2:52 | custom essays

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

It is nice to find a site about my interest. My first visit to your site is been a big help. Thank you for the efforts you been putting on making your site such an interesting and informative place to browse through. I'll be visiting your site again to gather some more valuable information. You truly did a good job
2011/9/15 6:41 | bullet bracelet

# cogat practice

Thanks for taking this opportunity to discuss this I feel fervently about this and I like learning about this subject.If possible as you gain information please update this blog with more information.
2011/9/16 5:44 | cogat practice

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

These articles written too great,they rich Perfect! and data accurately.they are help to me.you actually recognize what you are speaking approximately! Bookmarked. Kindly also seek advice from my site. We could have a link trade agreement among us!
2011/9/17 5:40 | florida general Contractor

# Found good piece of information here, You break it down nicely, Thank you for sharing these helpful post it is very interesting and read worthy. Keep these informative post coming! much appreciated!... thanks have a great day :)

Found good piece of information here, You break it down nicely, Thank you for sharing these helpful post it is very interesting and read worthy. Keep these informative post coming! much appreciated!... thanks have a great day :)
2011/9/19 9:01 | master proyectos culturales

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Very good post. Made me realize I was totally wrong about this issue. I figure that one learns something new everyday.
2011/9/19 11:43 | end of tenancy cleaning

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Cette information est utile pour mon travail, merci!
2011/9/20 2:36 | paper writing service

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

I am happy when reading your blog with updated information! thanks alot and hope that you will post more site that are related to this site.
2011/10/1 3:33 | Rejser til Thailand

# http://www.anadolucambalkon.com

Türkiye'nin En büyük Katlan?r cam balkon Fabrikas? Kaliteli ve Garantili Ekonomik Sistemler, Cam balkon, Katlan?r Cam, Teras Kapatma, K?? bahcesi, Cam
2011/10/7 11:16 | info@anadolucambalkon.com

# CAM BALKON

Türkiye'nin En büyük Katlan?r cam balkon Fabrikas? Kaliteli ve Garantili Ekonomik Sistemler

# pandora charms

Thanks for the tips, maybe I can use this svelte my noesis marketing and Ive been use whatsoever ethnical media in try a interaction and they eff handiwork a big friendliness on me.I am happy to find this post very useful for me, as it contains lot of information.
2011/10/16 22:02 | moncler jackets sale

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

I am happy when reading your blog with updated information!

# master cultural

Thank you for sharing these helpful post it is very interesting and read worthy... I like your way of writing, You break it down nicely. Keep these informative post coming! much appreciated!... thanks have a great day :)
2011/11/1 3:03 | master cultural

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Just a guss..
2011/11/4 6:35 | Acting auditions

# re: .Text的Blog程序调试汉化心得(http://webuc.net/dotey/)

Thanks admin very nice share..
2011/11/4 11:31 | İzmir İç Mİmarlık

# http://www.anadolucambalkon.com

Türkiye'nin En büyük Katlan?r cam balkon Fabrikas? Kaliteli ve Garantili Ekonomik Sistemler, Cam balkon, Katlan?r Cam, Teras Kapatma, K?? bahcesi

# hali yikama

Web-dizayn ve giri?imcilik ruhu çok güzel, acil durumlarda öz ve net bilgi alabilicek ?ekilde tassarlanm??.Ben çok be?endim . te?ekkurler

2012/1/24 3:57 | seo@billurhaliyikama.com

# beton boru

Thank you all very beautiful design of your site receive shares of health
2012/2/4 4:39 | seo@icebluetasarim.com

# hurda

Thank you very nice site and receive quality health shares



2012/2/4 7:20 | seo@gunduzmetal.com

Post Comment

主题  
姓名  
主页
校验码  
内容   
京ICP备 05050892号