aBit

阿比特

  博客园 :: 首页 :: 联系 :: 订阅 订阅 :: 管理
  2 Posts :: 13 Stories :: 3 Comments :: 0 Trackbacks

公告

昵称:aBit
园龄:7年6个月
粉丝:0
关注:0

搜索

 
 

常用链接

最新评论

2006年3月15日 #

Fix the confused code problem

Problem 1): data have confused code.
Analysis: 用户输入“繁体”字符,以“西欧”(char NOT nchar)保存在数据库中
Solution:
1) <globalization requestEncoding="utf-8" responseEncoding="iso-8859-1" /> in Web.config
2) Response.Charset = "big5" in PageBase.vb

Problem 2): ListBox / DropDownList have confused code.
Analysis: 用户输入“简体”字符,以“西欧”(char NOT nchar)保存在数据库中
Solution:
        CodePage = 936
        For Each row As DataRow In DS.Tables(0).Rows
            Dim value As String = CStr(row("value"))
            row("value") = aBitCode.Common.Utility.ConvertEncode(value, "E", "C")
        Next

posted @ 2006-03-15 16:26 aBit 阅读(40) 评论(0) 编辑

2004年8月2日 #

 1、传统的管理者的职责
        命令,惩罚...
 2、这种管理方式的不足
 3、强大IT企业最需要的人:协作人
  3.1、什么是协作人
  3.2、协作人是怎么做的
           为下属提供提供充分体现才能的大舞台。
           为员工提供一切必要的支持,鼓励他们工作的热情。
           为优秀员工提供后勤服务。
  3.3、承认我的不足(鱼与熊掌不求兼得)
 4、如何均衡管理与协作
      什么时候要管理
      什么时候要协作
      互补,做到更好。
     


aBit  2004-08-02
posted @ 2004-08-02 10:25 aBit 阅读(285) 评论(0) 编辑