统计 |
blog名称:人在旅途 日志总数:175 评论数量:505 留言数量:13 访问次数:1661985 建立时间:2005年12月7日 |
生命是过客,人在旅途。奶奶是信基督教的,没啥文化,却养育了四子二女,还带过九个孙辈。老人家对生命的看法就是“人都是客人,迟早要回去的。”就以《人在旅途》来纪念她。

« | August 2025 | » | 日 | 一 | 二 | 三 | 四 | 五 | 六 | | | | | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | | | | | | | |
|
公告 |
本人上传的源程序中可能引用或使用了第三方的库或程序,也可能是修改了第三方的例程甚至是源程序.所以本人上传的源程序禁止在以单纯学习为目的的任何以外场合使用,不然如果引起任何版权问题,本人不负任何责任. | |

|
本站首页 管理页面 写新日志 退出
调整中...
[软件开发随笔]Session in Web server |
人在旅途 发表于 2006/1/23 8:49:35 | 1.When you close the IE and reopen it, this will be a new session in the server. 2.The session in the server will not be close immediately after you close the IE.It will last untill the timeout of the session. 3.If you use the frame set, you will find each frame set owns a differenet session id.
|
阅读全文(2894) | 回复(0) | 编辑 | 精华 | 删除 |
[软件开发随笔]PopupMenu in HTML |
人在旅途 发表于 2006/1/23 8:46:45 |
The result: Use the <Div> Tag and it's style.display to show and hide it. So we can make menu. Sample:
/***************************************************/
<HTML> <HEAD> <TITLE> AN ALERT EXAMPLE </TITLE>
</HEAD> <BODY> <FORM> <CENTER> <H1>CLICK THE BUTTON...</H1> <BR> <INPUT TYPE=BUTTON VALUE="ALERT!" onClick="Alterter()"> <DIV ID="idMenu2"><
|
阅读全文(4227) | 回复(0) | 编辑 | 精华 | 删除 |
[Java技术]Resource bundle |
人在旅途 发表于 2006/1/23 8:37:59 | No matther which language's text resource you have created, the java.util.ResourceBundle.getBundle only take it as UTF coded. So if you want to get the string in correct format, you must use the following command to change it from local encoding to the UTF encoding. native2ascii xx.properties yy.properties
|
阅读全文(2802) | 回复(0) | 编辑 | 精华 | 删除 |
[微软技术开发]How to use map of STL |
人在旅途 发表于 2006/1/22 10:20:40 |
The function contain is the main function support by the STL, though MFC has many contain class like carray,clist.... But when you meet the event that you can't use MFC(like develop ATL project), you will like to use it and these C++ STL class are template.
Now I will record some thoughts and experience about using map. Like following:
|
阅读全文(2168) | 回复(0) | 编辑 | 精华 | 删除 |
|