- 浏览: 101762 次
- 性别:
- 来自: 纽约
最新评论
-
ren2881971:
好深奥。。没有看懂。
一道Google的面试题 - Simplified Regular Expression Parser -
leaow567:
亚历山大啊
一道Google的面试题 - Simplified Regular Expression Parser -
shuaiji:
So hard to understand,
一道Google的面试题 - Simplified Regular Expression Parser -
sxpujs:
需要把其中的local换成本地连接才能使用
windows下设置ip的脚本 -
弋孤秋:
是啊
很麻烦的东西
[转贴]Web标准:关于DOCTYPE
文章列表
一、题目如下:
--------------------------
Write a parser for a simplified regular expression
On an alphabet set [a-z], a simplified regular expression is much simpler than the normal regular expression.
It has only two meta characters: '.' and '*'.
'.' -- exact one arbitrary character match.
'*' -- zero ...
贴在这里备查
package com.hp.mes.mat.pojo;
/**
* ---------------------------------------------------------------------------------
Confidential and Proprietary
Copyright 2008 By ...
- 2008-08-25 23:10
- 浏览 1607
- 评论(0)
把如下代码存为.bat文件,放在系统path中,直接执行即可设置不同ip
1.设置固定ip
@echo ip_sisans
netsh interface ip set address local source=static addr=10.1.38.17 mask=255.255.255.0
netsh interface ip set address name=local gateway=10.1.38.1 gwmetric=1
netsh interface ip set dns local static 10.1.37.1
netsh interface ip add dns ...
- 2008-07-27 12:48
- 浏览 4077
- 评论(1)
1.asp中:
<%Session.Timeout = 时间%> 或
<sessionState mode="InProc" timeout="1"></sessionState>
2.IIS中:
开始 -> 设置 -> 控制面板 -> 管理工具 -> 计算机管理 -> 服务和应用程序 -> Internet信息服务 -> 默认WEB站点 -> 属性 ...
- 2008-07-12 10:09
- 浏览 2785
- 评论(0)
比较简单,记录以备查,有问题可以mailto:daniel.wuz@gmail.com
互相交流,请多指教
1.层次结构
2.API
参考附件
- 2008-06-29 21:05
- 浏览 1030
- 评论(0)
参考:
http://topic.csdn.net/t/20040717/14/3183993.html
<div style="z-index:-1"> <!--1.设置FLASH为底层-->
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.c ...
- 2008-06-26 01:16
- 浏览 1433
- 评论(0)
项目做开发时,使用了一个自定义控件,代码如下:
控件页面段 KnowtypeCtrl.ascx:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="KnowtypeCtrl.ascx.cs" Inherits="Controls_WorktypeCrtl" %>
<asp:DropDownList ID=&quo ...
- 2008-06-20 19:06
- 浏览 1498
- 评论(0)
参考:
Select *
From (Select Pkid, Knowtype, Worktype, Authority, Score, Question, Answer, Deptcode, Inputperson, Inputdate, Choosetype
From t_Chooseitem
Where 1 = 1
Order By Dbms_Random.Value)
Where Rownum <= 1
- 2008-06-20 15:16
- 浏览 1657
- 评论(0)
<asp:Label>控件的内容如果比较多,超过控件列宽,这时如果是汉字的话,会自动换行,如果内容只是字母,则不会换行,而是把屏幕撑长,直到显示完为止,界面就显得比较难看。
百度了一下,找到解决办法,只要在style中加入如下一句:
style="word-break:break-all"
但是整个项目有万多个label,若一个个改恐怕不知道猴年马月才能改完,于是我在整个css中定义label的显示:
label {
word-break:break-all;
}
刷新页面,咦?不起作用。
查看页面源码,原来<asp:Label>并没有 ...
- 2008-06-20 11:45
- 浏览 5672
- 评论(0)
<!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>
<title>请调整浏览器窗口</title>
<meta http-equiv="content-type" ...
- 2008-05-29 17:06
- 浏览 1381
- 评论(0)
ASP.NET AJAX入门系列(4):使用UpdatePanel控件(一)
- 2008-05-29 14:15
- 浏览 1003
- 评论(0)
1.录入excel测试表格,test.xls。
2.另存为.csv格式
3.创建sql*loader控制文件test.ctl,内容如下:
Load data
Infile 'c:\test.csv'
insert Into table test Fields terminated by ','(column1,column2,column3,column4,column5)
需要将数据文件拷贝到对应位置
4.到数据库中建立对应的测试表test
create table test (
column1 Varchar2(10),
column2 Varchar2(10),
colum ...
- 2008-05-29 09:16
- 浏览 8835
- 评论(0)
原文链接:http://www.pcjx.com/webde/css/70815.html
DOCTYPE不可怕,但把它拿走,会让你怕了又怕。
最近在蓝色理想转悠,发现很多朋友提出有关DIV+CSS排版问题,以及IE与FF的兼容问题。怎么问的都有,结果就是一个——显示很奇怪,很 ...
- 2008-05-22 11:37
- 浏览 1379
- 评论(1)
RegisterStartupScript是将js代码插入到生成页面的尾端。
而RegisterClientScriptBlock是将js代码插入到 生成的隐藏代码和body中页面代码之前。如下
RegisterStartupScript生成的代码
<body>
<input ....隐藏代码>
<p>hello</p>
<script>js代码</script>
</body>
RegisterClientScriptBlock生成的代码
<body>
<input ....隐藏代码&g ...
- 2008-05-21 10:33
- 浏览 2558
- 评论(0)