Remoting和Web
Service是.net中的重要技术,都可用来实现分布式系统开发,如果是不同的平台就只能选择Web
Service,但如果是同一平台,就都可以选择了。到底选择那种,当然还有访问效率上的考虑,同时在Remoting中又有三中信道
Http,Tcp,Ipc,它们又各有差别。.....
分类:
Web程序 时间:
2014-05-19 07:09:30
阅读次数:
498
要使用gzip压缩功能,可以在Connector实例中加上如下属性:1)
compression="on" 打开压缩功能2) compressionMinSize="2048" 启用压缩的输出内容大小,这里面默认为2KB3)
noCompressionUserAgents="gozilla, tra...
分类:
其他好文 时间:
2014-05-18 21:28:24
阅读次数:
453
第一种方法--及时回收bitmap内存:一般而言,回收bitmap内存可以用到以下代码if(bitmap!=null&&!bitmap.isRecycled()){bitmap.recycle();bitmap=null;}System.gc();bitmap.recycle()方法用于回收该bit...
分类:
移动开发 时间:
2014-05-18 21:26:21
阅读次数:
519
使用SDK Manager更新时出现问题Failed to fetch URL
https://dl-ssl.google.com/android/repository/repository-6.xml, reason:
Connection to https://dl-ssl.google.com...
分类:
移动开发 时间:
2014-05-18 20:25:14
阅读次数:
405
注意了:根据实际情况,添加实体里字段的类型,控件类型的判断才可使用。这里控件只有TextView EditText实体类字段只有String
int类型,带值的控件添加tag ,值和实体类的字段值一致package ice.ui.service;import
java.lang.reflect.Fi...
分类:
移动开发 时间:
2014-05-18 20:23:14
阅读次数:
472
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Runtime.InteropServices;using
System.IO;namespace Hello...
分类:
其他好文 时间:
2014-05-18 20:16:27
阅读次数:
309
using DevExpress.XtraGrid;// ...string fileName
="c:\\XtraGrid_SaveLayoutToXML.xml";privatevoid Form1_Load(object sender,
System.EventArgs e) { gridCo...
分类:
其他好文 时间:
2014-05-18 20:15:22
阅读次数:
300
我们在ASP.net中使用URL导向后,
我们在访问某个地址,或者打开某个系统页面的时候,就会报错误:A potentially dangerous Request.Path value was
detected from the clientat System.Web.HttpRequest.Va...
分类:
其他好文 时间:
2014-05-18 20:06:41
阅读次数:
379
三、C#下创建基于TcpClient发送邮件组件在上一节在Dos命令行下测试SMTP服务器连接时,已经使用了SMTP的部分命令,但是当时无法对信息进行编码和解码,也就无法继续进行身份验证和信息传输。在.Net库中,我们可以使用System.Net.Sockets.TcpClient类实现上一节发送邮...
分类:
其他好文 时间:
2014-05-18 19:45:03
阅读次数:
588
方法一:Console.Beep();方法二:可以用Console.WriteLine("/a");来代替Beep()。MSDN:http://msdn.microsoft.com/zh-cn/library/System.Console.Beep(v=vs.110).aspx