发博文
个人资料
werer
werer
  • 博客等级:
  • 博客积分:100
  • 博客访问:17,553
  • 关注人气:0
评论
加载中…
留言
加载中…
访客
加载中…
好友
加载中…
博文
(2007-11-06 14:27)
博客地址已更改为:
阅读  ┆ 评论  ┆ 转载 ┆ 收藏 
 

regsvr32 -u msxml3.dll

regsvr32 msxml3.dll

相当于重新加载msxml3.dll吧,具体我也不清楚,反正效果好。

阅读  ┆ 评论  ┆ 转载 ┆ 收藏 
分类: Java开发
 工程axis_example目录结构如下:

目录说明如下:
jws :存放*.jws文件

src :java源码

WEB-INF/classes :java编译后的class文件

WEB-INF/lib :需要用到的jar包

 

Axis 支持三种web service开发方式,分别为:

1 、Dynamic Invocation Interface ( DII)

2 、Dynamic Proxy方式

3 、Stubs方式

通过下面三个例子进行说明。

 

阅读  ┆ 评论  ┆ 转载 ┆ 收藏 
(2007-05-17 08:47)
分类: Asp.Net开发
 写一:

OleDbConnection conn = new OleDbConnection('Provider=DMOLEDB.1;Server=localhost;database=SYSTEM;user id=SYSDBA;password=SYSDBA;');
            OleDbCommand cmd = new OleDbCommand();
            cmd.Connection = conn;
            cmd.CommandText = 'insert into testclob(content) values(?)';
            OleDbParameter param = new OleDbParameter('@content', OleDbType.LongVarChar, TextBox1.Text.Length);
            param.Value = TextBox1.Text;
            cmd.Parameters.Add(param);
            conn.Open();
   

阅读  ┆ 评论  ┆ 转载 ┆ 收藏 
(2007-05-17 08:45)
分类: Asp.Net开发
 写:
 

  //读取文件
        FileStream fs = new FileStream('oracle.gif', FileMode.Open);

        int len = (int)fs.Length;

        byte[] bs = new byte[len];
        fs.Read(bs, 0, len);
        fs.Close();
        fs = null;


        OleDbConnection conn = new OleDbConnection('Provider=DMOLEDB.1;Server=localhost;database=SYSTEM;user id=SYSDBA;password=SYSDBA;');
        OleDbCommand cmd = new OleDbCommand();
        cmd.Connection = conn;
      &nbs

阅读  ┆ 评论  ┆ 转载 ┆ 收藏 
 

<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01//EN' 'http://www.w3.org/TR/html4/strict.dtd'>
<html>
<head>
<title>Nifty Corners: HTML CSS rounded corners</title>
<meta http-equiv='content-type' content='text/html; charset=iso-8859-1'>
<meta name='generator' content='HAPedit 3.1'>
<style type='text/css'>
body{padding: 20px;background-color: #FFF;
    font: 100.01% 'Trebuchet MS',Verdana,Arial,sans-serif}
h1,h2,p{margin: 0 10px}
h1{font-size: 250%;color: #FFF}
h2{font-size: 200%;color: #f0f0f0}
p{padding-bottom:1em}
h2{padding-top: 0.3em}
div#nifty{ margin: 0 10%;background: #9BD1FA}

b.rtop, b.rbottom{display:block;background: #FFF}
b.rtop b, b.rbottom b{display:block;height: 1px;
    overflow: hidden; background: #9BD1FA}
b.r1{margin: 0 5px}
b.r2{mar

阅读  ┆ 评论  ┆ 转载 ┆ 收藏 
分类: windows基础
用光盘进入修复系统
执行命令提取dll文件:
expand f:\i386\shlwapi.dl_ c:\windows\system32\shlwapi.dll
如果提示创建成功,重启电脑就OK了
如果提示创建不成功,可以先将文件创建到其它盘:
expand f:\i386\shlwapi.dl_ d:\shlwapi.dll
然后拷贝到目的目录
copy d:\shlwapi.dll c:\windows\system32\
选择覆盖原文件,重启电脑,OK
阅读  ┆ 评论  ┆ 转载 ┆ 收藏 

<style>
#menu{
 width:150px; 
 float:left; 
 background:blue;
}
#work{
 background-color:#ff0000;
 margin-left:150px;
}

/*没有以下两行CSS代码,将会在work中的前几行出现有3px的间距*/
* html #menu{margin-right:-3px;}
* html #work{height:1%;margin-left: 0;}
</style>
<div id='menu'>
  <ul style='list-style:none;margin:0;'>
   <li class='title'><a href='#'>系统管理</a></li>
   <li><a href='#'>系统管理</a></li>
   <li><a href='#'>系统管理</a></li>
   <li><a href='#'>系统管理</a></li>
   <li class='title'><a href='#'>网站管理</a></li>
   <li><a href='#'&

阅读  ┆ 评论  ┆ 转载 ┆ 收藏 
(2007-04-11 16:49)
分类: Asp.Net开发

<!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>
<meta http-equiv='Content-Type' content='text/html; charset=GB2312' />
<title>经典布局</title>
<style type='text/css'>
/*绿色风格*/
* {
 padding: 0;
 margin: 0;
 font-size:12px;
 line-height:18px;
 color:#10723F;
 font:Verdana, Arial, Helvetica, sans-serif;
}
body {
width:100%;
min-width:1000px;
}

a {
 text-decoration: none;
}
a:hover {
 text-decoration: underline;
}

.clear{
clear:both;
margin:0;
padding:0;
width:0;
height:0;
line-height:0;
}


.linkWhite {
&

阅读  ┆ 评论  ┆ 转载 ┆ 收藏 
<script language='javascript' type='text/javascript'>
var winIE = (navigator.userAgent.indexOf('Opera')==-1 && (document.getElementByIdx &&  document.documentElement.behaviorUrns))  ? true : false;
function bodySize(){
 if(winIE && document.documentElement.clientWidth) {
  var obj = document.getElementsByTagName_r('body')[0].style;
  obj.width = (document.documentElement.clientWidth<760) ? '760px' : '100%';
 }
}
function init(){
 if(winIE) { bodySize(); }
}
onload = init;
if(winIE) { onresize = bodySize; }
</script>
阅读  ┆ 评论  ┆ 转载 ┆ 收藏 
  

新浪BLOG意见反馈留言板 不良信息反馈 电话:4006900000 提示音后按1键(按当地市话标准计费) 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 会员注册 | 产品答疑

新浪公司 版权所有