最新评论

共4页: 1 2 3 4 下一页 
你车我车 2010-09-15 09:55
不错
ifand 2010-04-20 17:18
看不懂 这是ASP吗? 我现在要用asp.net实现 求指导
yuegao3 2010-04-20 11:38
[url=http://www.lpearls.com]white pearl ring[/url] [url=http://www.lpearls.com]teardrop pearl earring[/url] [url=http://www.lpearls.com]pearl necklace and earrings[/url] [url=http://www.lpearls.com]pearl necklace earring[/url] [url=http://www.lpearls.com]drop pearl earring[/url] [url=http://www.lpearls.com]fashion earrings[/url] [url=http://www.lpearls.com]faux pearl earring[/url] [url=http://www.lpearls.com]clip on earrings[/url] [url=http://www.lpearls.com]freshwater earrings[/url] [url=http://www.lpearls.com]black tahitian pearl earrings[/url] [url=http://www.lpearls.com]coral earrings[/url] [URL=http://www.cnygprint.com]Book Printing[/URL] [URL=http://www.cnygprint.com]Brochure Printing[/URL] [URL=http://www.cnygprint.com]Magazine Printing[/URL] [URL=http://www.cnygprint.com]Notebook & Notepads Printing[/URL] [URL=http://www.cnygprint.com]Envelope Printing[/URL] [URL=http://www.cnygprint.com]Printed Boxes[/URL] [URL=http://www.cnygprint.com]Paper Bags Printing[/URL] [URL=http://www.cnygprint.com]Calendar Printing[/URL] [URL=http://www.cnygprint.com]Hang Tag Printing[/URL] [URL=http://www.cnygprint.com]Jigsaw Puzzle Printing[/URL] [URL=http://www.cnygprint.com]Label Printing[/URL] [url=http://www.tipearl.com]round pearl strands[/url] [url=http://www.tipearl.com]rice pearl strands[/url] [url=http://www.tipearl.com]biwa pearl strands[/url] [url=http://www.tipearl.com]coin pearl strands[/url] [url=http://www.tipearl.com]keishi pearl strands[/url] [url=http://www.tipearl.com]nugget pearl strands[/url] [url=http://www.tipearl.com]button pearl strands[/url] [url=http://www.tipearl.com]potato pearl strands[/url] [url=http://www.tipearl.com]blister pearl strands[/url] [url=http://www.tipearl.com]dancing pearl strands[/url] [url=http://www.tipearl.com]wheat pearl strands[/url] [url=http://www.tipearl.com]bread pearl strands[/url] [url=http://www.tipearl.com]seed pearl strands[/url] [url=http://www.tipearl.com]round pearl[/url] [url=http://www.tipearl.com]rice pearl[/url] [url=http://www.tipearl.com]biwa pearl[/url] [url=http://www.tipearl.com]coin pearl[/url] [url=http://www.tipearl.com]keishi pearl[/url] [url=http://www.tipearl.com]nugget pearl[/url] [url=http://www.tipearl.com]button pearl[/url] [url=http://www.tipearl.com]potato pearl[/url] [url=http://www.tipearl.com]blister pearl[/url] [url=http://www.tipearl.com]dancing pearl[/url] [url=http://www.tipearl.com]wheat pearl[/url] [url=http://www.tipearl.com]bread pearl[/url] [url=http://www.tipearl.com]seed pearl[/url] [url=http://www.tipearl.com]wholesale round pearl[/url] [url=http://www.tipearl.com]wholesale rice pearl[/url] [url=http://www.tipearl.com]wholesale biwa pearl[/url] [url=http://www.tipearl.com]wholesale coin pearl[/url] [url=http://www.tipearl.com]wholesale keishi pearl[/url] [url=http://www.tipearl.com]wholesale nugget pearl[/url] [url=http://www.tipearl.com]wholesale button pearl[/url]
锲而不舍 2010-01-18 17:05
你好,既然在webservice构造函数里面初始化,每次客户端调用接口都会初始化一次,那么初始化代码放到哪里呢?我把初始化代码放到一个函数里面,然后在客户端调用一次,能成功,然在再调用其它接口的时候,会报错,错误信息为“System.Web.Services.Protocols.SoapException: 服务器无法处理请求。 ---> System.NullReferenceException: 未将对象引用设置到对象的实例。 在 Service.SetCallerCalledCode(Int32 slicno, String callercode, String calledcode) --- 内部异常堆栈跟踪的结尾 ---”,不知道如何解决?请指教!
zhanqiangz 2009-09-13 22:35
@amingo 报的什么错?
zhanqiangz 2009-09-13 22:34
@Armslave 你用html编码试试。
amingo 2009-09-08 19:30
function getWebService() { var request = getXMLHTTPRequest(); request.open("post", "http://localhost/webservice1/service1.asmx", false); request.SetRequestHeader ("Content-Type","text/xml; charset=utf-8"); request.SetRequestHeader ("SOAPAction","http://tempuri.org/HelloWorld"); var data; data = '<?xml version="1.0" encoding="utf-8"?>'; data = data + '<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">'; data = data + '<soap:Body>'; data = data + '<HelloWorld xmlns="http://tempuri.org/">'; data = data + '<name>123</name>'; data = data + '</HelloWorld>'; data = data + '</soap:Body>'; data = data + '</soap:Envelope>'; request.onreadystatechange=function() { if (request.readyState==4) { if(request.status ==200) { alert( request.responseText); } if (request.status == 403) { alert("Request URL does not exist,发送的地址错了,没有此页面"); } if (request.status == 404) { alert("Access denied.无权访问"); } } } request.send(data); } .net: <WebMethod()> _ Public Function HelloWorld(ByVal name As String) As String Return name End Function 我这样写出错了,不知道什么原因,楼主帮我看一下
amingo 2009-09-08 19:30
function getWebService() { var request = getXMLHTTPRequest(); request.open("post", "http://localhost/webservice1/service1.asmx", false); request.SetRequestHeader ("Content-Type","text/xml; charset=utf-8"); request.SetRequestHeader ("SOAPAction","http://tempuri.org/HelloWorld"); var data; data = '<?xml version="1.0" encoding="utf-8"?>'; data = data + '<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">'; data = data + '<soap:Body>'; data = data + '<HelloWorld xmlns="http://tempuri.org/">'; data = data + '<name>123</name>'; data = data + '</HelloWorld>'; data = data + '</soap:Body>'; data = data + '</soap:Envelope>'; request.onreadystatechange=function() { if (request.readyState==4) { if(request.status ==200) { alert( request.responseText); } if (request.status == 403) { alert("Request URL does not exist,发送的地址错了,没有此页面"); } if (request.status == 404) { alert("Access denied.无权访问"); } } } request.send(data); }
masterfy 2009-07-24 17:52
所以想尝鲜的话,最好还是用虚拟机呀
陛下 2009-07-24 10:10
好,实用!
二手的程序员 2009-07-24 09:47
重要数据一定要在两个不同介质中备份
GWPBrian 2009-07-24 09:46
不错,但是要定期备份
B.T.Q 2009-07-24 09:45
1M 100元,太狠了~我们这边几年前都已经降到1M/1元了,不过是按分区计价,10G算下来也不少钱了~
Lori^^Cheung 2009-07-24 09:44
[quote]DAP: 人一旦闲下来就会搞出一些事端来!!! 很经典,跟楼主有同样的经历…… 幸运的是我的资料在公司还有备份![/quote] 我们公司的数据库被我一次误操作给删除了,然后就三天三夜不睡觉再恢复回来,当时,死的心都有了!
sfy 2009-07-24 08:30
云存储在目前来说也不是绝对安全的
BreezeWoo 2009-07-24 08:15
磁盘的数据保护好,否则难免会出现类似“艳照门”的事件。:)数据太容易恢复了。 - -!
啊不才 2009-07-23 23:35
有些奇怪,楼主你的硬盘怎么试90G大小啊,没见过这种大小的硬盘啊?
云中雾 2009-07-23 18:29
人一旦闲下来就会搞出一些事端来!!!
netguid 2009-07-23 17:40
不错啊,好东西,我前天就出来这个问题了,郁闷
zhanqiangz(闲云野鹤) 2009-07-23 16:58
[quote]Done:楼主在做系统的时候就想到要发表文章了,连截图都边做边截的,敬业[/quote] 因为做的时候比较痛苦,我的确想把系统恢复完了要把整个过程完整记录下来,遭受这种痛苦的应该不只我一个人。
zhanqiangz(闲云野鹤) 2009-07-23 16:57
[quote]艺林:找微软赔钱![/quote] 好,那我直接找我老大要钱。O(∩_∩)O哈哈~
zhanqiangz(闲云野鹤) 2009-07-23 16:56
[quote]king_abc:很好奇Win 7 RC会有这么严重的bug?还是楼主操作失误?[/quote] 是我的HP笔记本使用时间太长了,安装过程中出现Disk read error,应该是硬盘本身的问题,后来换了一块。不会是win 7的bug.
艺林 2009-07-23 16:53
找微软赔钱!
Done 2009-07-23 16:47
楼主在做系统的时候就想到要发表文章了,连截图都边做边截的,敬业
搜索人生 2009-07-23 16:37
平时记得备份好分区表,直接恢复就搞定了! 还有,这个个人电脑,你拿过去恢复数据,一般一两百就可以搞定了!两百顶天了,前提是你表现的稍微专业点,这样人家就不忽悠你了!
king_abc 2009-07-23 13:02
很好奇Win 7 RC会有这么严重的bug?还是楼主操作失误?
peace 2009-07-23 12:01
还是要顶一下
alixingxing 2009-07-23 11:38
[url=http://www.168moyu.com]学习了![/url]
疑惑 2009-07-23 11:37
希望变失望。55555
五味子 2009-07-23 11:37
人世间最痛苦的事情在于 数据的丢失
zhanqiangz(闲云野鹤) 2009-07-23 11:36
@疑惑 那别想了,每一个簇都有可能被重写过,用这种方法找不回来了。我用finaldata能找回2005删除过的文件,但是打不开,很明显已经被破坏了。
zhanqiangz(闲云野鹤) 2009-07-23 11:34
[quote]秋色:DOS工具箱里就有,更简单一些。按一个键就行了。这算不上是恢复数据。只算得上是找回分区。恢复数据要比这复杂的多。[/quote] 文章下面的部分是恢复数据,前半部分是找回分区。 :)
疑惑 2009-07-23 11:33
如果是两年前的数据呢?比如我电脑硬盘格式化N次了,能不能找回两年前未被格式化前的数据呢?好奇ING.
zhanqiangz(闲云野鹤) 2009-07-23 11:33
[quote]韦恩卑鄙: 1 更正 价格是 500块/20g 而且可以选择文件恢复 不需要全盘计价 2 下载easyrecovery 测试版本 就可以了[/quote] ^_^,这个价格倒可以接受,但是还是不愿意出那份钱。500块钱买个320g的硬盘了。 easyrecovery 和 finaldata我都下载了,好像速度比较慢。
秋色 2009-07-23 11:28
DOS工具箱里就有,更简单一些。按一个键就行了。这算不上是恢复数据。只算得上是找回分区。恢复数据要比这复杂的多。
非主流程序员 2009-07-23 11:20
使用“云存储”
韦恩卑鄙 2009-07-23 11:19
1 更正 价格是 500块/20g 而且可以选择文件恢复 不需要全盘计价 2 下载easyrecovery 测试版本 就可以了
louishunt 2009-07-23 11:18
好文章,学习了!
skyaspnet 2009-07-23 11:18
支持五楼
小猪凯 2009-07-23 11:16
闲的蛋疼. 我也有次出过问题,春节假期没有回家,于是整系统,结果整完发现只有一个C盘了. 不过我用的办法比较笨,直接用数据恢复工具恢复过来的,用了差不多两天时间. 虽说活着就是折腾,可是那以后瞎折腾次数少多了.
andy.wu 2009-07-23 11:06
很实用,建议楼主可以开一个服务公司,10G/100元,那生意是绝对刚刚的。
过路者 2009-07-23 11:01
呵呵,我也遇到过这样的事,单位专门负责硬件的同事好像就是用这个方法帮我恢复的。
robot飞鱼 2009-07-23 10:58
好文章!
个人知识管理 2009-07-23 10:56
备份应是平时的一种习惯! 特别是重要数据,我现在都有3个硬盘、3个U盘进行备份数据了。 收集的资料,都是心血换来的
DAP 2009-07-23 10:53
人一旦闲下来就会搞出一些事端来!!! 很经典,跟楼主有同样的经历…… 幸运的是我的资料在公司还有备份!
aaaaab 2009-05-18 11:16
调试过了,是每次实例化被执行, 如访问每个aspx页面都可能执行一次。
Armslave 2009-04-20 22:45
我在用楼主的方法做的时候如果节点之间包含一些特殊的字符的时候,就会报错, 例如& 或者+,转义也不管用,不知道楼主可否遇到过
大舟 2009-02-20 08:30
试验了一下,果然正如博主所说!
共4页: 1 2 3 4 下一页