
★技术 >.Net
文章平均质量分 53
JJNNN007
这个作者很懒,什么都没留下…
展开
-
040910 R 项目常用的CSS
/***** 下記の自定義なクラス *****//**************************************** 側メニューの様式 ****************************************//***** 背景色(茶褐色TAN) *****/.sidemenu_back{ background-color: #ffffcc;}/***** カーソル(原创 2004-09-10 16:33:00 · 992 阅读 · 0 评论 -
Win2000下如何让InputMan的Edit不显示回车换行/r/n
Win2000下,从Excel中copy一个Cell(应该包含/r/n)到InputMan中,结果回车换行符被显示成“黑点”了,怎样不让显示出来?(以上现象在XP 中没有出现)原创 2005-06-20 14:08:00 · 1885 阅读 · 0 评论 -
.net 的SaveFileDialog为什么当掉?
SaveFileDialog.ShowDialog();执行到此就当掉了。为什么我把SaveFileDialog的初始目录设定一下(例如:C:/),就没有问题。随之而来,选择目录My Document时,也当掉了。为啥?原创 2005-06-07 15:49:00 · 1780 阅读 · 0 评论 -
SQL语句 (A Left Outer join B On) Where A.Fld *= B.Fld
1insert into atest values( 00009,GPF,26,100,100,120,)insert into atest2 select * from atest where id = 00002insert into atest2 ( id, age,name )select id, age,name from atest where id = 000092se原创 2005-06-07 15:37:00 · 2616 阅读 · 0 评论 -
About AscII ,Unicode ...
Encoding encShiftJis = Encoding.GetEncoding("shift-jis"); intItemLen = encShiftJis.GetByteCount( strPara );using System.Text; private void button1_Click(o原创 2004-10-21 21:39:00 · 1655 阅读 · 0 评论 -
VBScript Config IIS
怪事,我的IIS安装完,iis管理器不能打开,但iis服务能正常使用,.net 建立的 asp工程也能正常运行。无奈,只能通过脚本config了。我的:Set Root = GetObject("IIS://localhost/w3svc/1/ROOT") My DocumentsコピーSet WshShell = WScript.CreateObject("WScript.原创 2004-10-13 18:51:00 · 1210 阅读 · 0 评论 -
A 关于.net的参照设定 -不能拷贝 SADE0120.dll到实行目录
SABE0120.cs 的工程参照了 SADE0120.cs的dll。编译时出现1. “不能拷贝 SADE0120.dll到实行目录”2. “不能拷贝临时文件到输出目录”。为啥?工程目录的文件只读吧?原创 2004-10-13 20:12:00 · 1402 阅读 · 1 评论 -
041006 A WebService的构造函数
好像无参的构造函数是必须地。 1。public class Tool : System.Web.Services.WebService { public Tool(){ InitializeComponent(); } public Tool(string strUrl) { InitializeComponent(); }[WebMethod] public原创 2004-10-06 19:28:00 · 1136 阅读 · 0 评论 -
041006 A DB 乱码
Q. string strSql = "INSERT INTO TBL_GYOMUTANGO "; strSql += "(WORD) "; strSql += "VALUES(" +strKey + ")"; -->strKey 是汉字时,程序显示为乱码。 A. 使用Parameters解决乱码 string strSql = "INSERT原创 2004-10-06 19:20:00 · 1245 阅读 · 0 评论 -
解决web服务器各种应用的乱码问题(转)
http://www.chinaunix.net/jh/13/381406.html 乱码问题: (1)服务器端: 修改httpd.conf (在Redhat中放置的位置为/etc/httpd/conf/) 查找: AddDefaultCharset ISO-8859-1 改成: #AddDef转载 2006-03-03 09:59:00 · 10856 阅读 · 0 评论