goody9807  
避风的港湾-云之宇~~~寻找.Net的精华

一个不错的P2P软件,里面肯定有你要的资源
公告


  • 我的msn: goody9807#sina.com


    爱你网论坛全新上线,Asp.net技术讨论


日历
<2008年7月>
293012345
6789101112
13141516171819
20212223242526
272829303112
3456789
统计
  • 随笔 - 408
  • 文章 - 4
  • 评论 - 512
  • 引用 - 89

导航

与我联系

常用链接

我参与的团队

随笔分类(404)

我的空间

友情链接

搜索

  •  

积分与排名

  • 积分 - 259595
  • 排名 - 108

最新评论

60天内阅读排行

 

我的评论

共4页: 1 2 3 4 下一页 
re: 【.NET正则表达式库】v1.0上线 PointNet 2008-06-25 16:56  
对这个比较感兴趣,申请加入
@丁学
谢谢提醒,已经改了过来
@Vincent Love
谢谢修改
<a href="#"><img id=obj src ="1.jpg" border =0 /></a>
@BAsil

是的 ,不过你也可以把当前编辑的焦点节点id存入cookie,然后初始化的时候读取
treeInit() 也是客户端方法,怎么会刷新呢
你是怎么调用的
注意大小写

Alert(); 不是 ALERT()

function Alert(message,callback)

callback 指的是弹出的对话框按确定后要执行的方法 ,如果不执行任何操作可以赋值为空
@Hafeyang
是啊,说得有道理,的确很费时间,有点错误查询起来比较费时间,如果要有个IDE还是不错的
ExtJS 也是个不错的开源框架,还没来得及用
有个判断注册用户名的js正则表达式问题
var patrn = /^(([a-zA-Z0-9]|[_-]){4,20}|[\u4e00-\u9fa5]{2,10})+$/;
由4-20位的大小写英文字母、0-9的数字、下划线“_”、减号“-”或者2-10个汉字组成。

大体上这个可以满足,但回发现如果既有中文,又有字符的话,需要中文满足2个以上,字符4个以上,即(你好ab)是不满足的
而实际应该是满足的,即中文2个就不需要字符一定也要4个的要求了,反过来也一样,
特别感谢SuMic同学:
后来我们一起研究发现如果要有多个editor实例的话
var oEditor = FCKeditorAPI.GetInstance('FCKeditor1') ;
这种方法不适用的,要改为
var oEditor = FCKeditorAPI.GetInstance(FCK.Name)

再次感谢SuMic同学
写得不错,不过现在有专门的抓包工具!
re: 用T-SQL语言还原数据库 PointNet 2008-01-16 13:49  
@Ψιζσεα.
不是2000的 是2005的
re: 天津.NET俱乐部成立了! PointNet 2008-01-15 14:53  
博客园账号: PointNet

电子信箱: goody9807@gmail.com
re: 博客园技术交流QQ群 PointNet 2008-01-15 14:44  
52580254
DUDU加一下 谢谢了
re: Scott Guthrie 确实一偶像! PointNet 2008-01-15 14:42  
辛苦了,兄弟
find out what the keyCode for 全角空格:



then do something similarly on the textbox

试过了思归的方法,得到全角code=229
如何在客戶端js里判斷全角空格?
re: HttpModule是如何工作的 PointNet 2007-12-11 20:24  
///<summary>

///说明:用来实现自己的HttpModule类。

///作者:文野

///联系:stwyhm@cnblogs.com

上面写着呢

我只是收藏一下
SELECT * into #F1 FROM article WHERE ArticleID IN(SELECT MIN(ArticleID) FROM article GROUP BY title)
truncate table article
insert article select Title, body, SourceUrl, Status, CreateTime, PublishTime from #F1
drop table #F1

去掉重复记录的Sql语句
@小S
晕,我留着自己用的,你要是知道也不用说那么多话,写这些东西就为了显示自己吗?

博客园总有一些这样的人,无语。。。。
@seamusic

当然是转的,上面已经写得很清楚,原文地址

我放到这里是收藏留着以后能用到的
re: Asp.net URL重写(URLRewriter) PointNet 2007-11-08 09:12  
一般用什么控件,还是自己写程序 @韩现龙
re: Asp.net URL重写(URLRewriter) PointNet 2007-11-07 17:36  
@ Tony Qu 以前也早就用过这东西了,但没遇到你说的问题
这次重新用时出现了404问题 ,发现路径设置错误了,所以记下来
感觉Spring和Struts是个非常好的框架!
re: 博客园手机版 PointNet 2007-10-22 15:45  
恭喜一下,希望博客园越办越好!
re: asp.net Ajax--PopupControl控件使用 PointNet 2007-09-20 18:52  
为什么不用jquery啊
re: 欢迎加入ASP.NET Atlas学习团队! PointNet 2007-09-15 13:58  
申请加入
博客园用户名:PointNet
Email: goody9807@gmail.com
re: 实际上我没有选择的余地 PointNet 2007-08-27 22:19  
非常理解你!永远支持你!
@代码乱了
当然要起个job定时跑啦
当然可以了
re: Log4Net使用指南 PointNet 2007-08-24 16:21  
HOW TO Configure log4net in a Web Service
log4net can be used to add logging to your web service. All you have to do is to initialise the logging environment in your Global.asax and configure log4net using the Web.config file.

In your Web Service you should define a Global.asax file. The initialisation code can go directly into the Global.asax or it can go into a code behind file Global.asax.cs.

To define the logging all in the Global.asax file you should ensure that it contains something like:

<%@ Application Language="C#" %>
<script runat="server">
private void Application_Start(Object sender, EventArgs e)
{
log4net.Config.DOMConfigurator.Configure();
}
</script>
Alternatively if you are using a code behind file then your Global.asax should contain:

<%@ Application Codebehind="Global.asax.cs" Inherits="MyApp.Global" %>
and your Global.asax.cs should have some code like this:

namespace MyApp
{
public class Global : System.Web.HttpApplication
{
/// <summary>
/// Called when the web application starts
/// </summary>
/// <param name="sender">who</param>
/// <param name="e">what</param>
protected void Application_Start(Object sender, EventArgs e)
{
// Initialise the logging when the application loads
log4net.Config.DOMConfigurator.Configure();
}

}
}
The Application_Start method will be called automatically then the Web Service is loaded (or reloaded). As you can see we use this opportunity to initialise the log4net environment.

Each Web Application must live in its own directory and this directory should have a Web.config file that is used to configure the Web Application. This is also the configuration file used by log4net.

An example Web.config including log4net configuration might be:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" />
</configSections>


<!-- Web Service standard configuration -->

<system.web>

<!-- ... -->

</system.web>


<!-- Logging Configuration -->

<log4net>

<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender,log4net">
<param name="File" value="c:\\my-app-log.txt" />
<param name="AppendToFile" value="true" />

<param name="MaxSizeRollBackups" value="10" />
<param name="MaximumFileSize" value="5MB" />
<param name="RollingStyle" value="Size" />
<param name="StaticLogFileName" value="true" />

<layout type="log4net.Layout.PatternLayout,log4net">
<param name="ConversionPattern" value="%d [%t] %-5p %c [%x] - %m%n" />
</layout>
</appender>

<!-- Setup the root category, add the appenders and set the default priority -->

<root>
<priority value="WARN" />
<appender-ref ref="RollingLogFileAppender" />
</root>

</log4net>

</configuration>
试试把老账户里的C:\Documents and Settings\你的账户名\Application Data下的所有文件夹和文件都删除,@空中鸟
re: Xsl实践总结(二) PointNet 2007-08-16 12:08  
@暗香浮动
哪些没有明白啊
re: Xsl实践总结(二) PointNet 2007-08-15 20:24  
@tes
以上是本人实践中的一些经验,只是在这里记录一下和大家分享
像你这样的人连自己博客的链接也不留
re: Xsl实践总结(二) PointNet 2007-08-15 20:23  
@slightboy
我用的是
XalanJ 2.5.2
re: Xsl实践总结(二) PointNet 2007-08-15 15:01  
@slightboy
不太清楚你说的意思,请指点!
re: Xsl实践总结(一) PointNet 2007-08-09 15:02  
$Current.Scripts 代表什么 从哪里定义的
re: Xsl实践总结(一) PointNet 2007-08-09 15:01  
@slightboy
多谢指点,这个没有用过
re: Xsl实践总结(一) PointNet 2007-08-08 18:50  
@yi
Java 支持DataSet吗


re: Xsl实践总结(一) PointNet 2007-08-08 14:11  
@slightboy
http://192.168.0.184:9006/serviceproxy.aspx?Type=/PageModules/Comm/Match2/CreditIdentifyForJava&amp;OppositeID=
由于src里面有变量 无法用传统的方式写,你说得{} 和 concat ?什么意思
共4页: 1 2 3 4 下一页 
 
Copyright © PointNet Powered by: 博客园 模板提供:沪江博客