代码搜索:XMLHTTP
找到约 1,050 项符合「XMLHTTP」的源代码
代码结果 1,050
www.eeworm.com/read/369901/9630007
js xmlhttprequest.js
/* Create a new XMLHttpRequest object to talk to the Web server */
var xmlHttp = false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
try {
xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
} catc
www.eeworm.com/read/459376/7276451
hta 22-2 简单的ajax应用模型.hta
22-2 简单的Ajax应用模型
* { font-size:12px; font-family:宋体, Arial; } /*规定了所有的字体样式*/
body { b
www.eeworm.com/read/280199/10348258
txt 在.net中利用xmlhttp下载文件.txt
利用XMLHTTP下载文件,和以前的方法一样,先添加引用-COM-Microsoft Xml 3.0,然后在代码开始处写:
using MSXML2;
下面就是主要的代码:
private void Page_Load(object sender, System.EventArgs e)
{
string Url = "http://dotnet.aspx.cc/Images
www.eeworm.com/read/365912/9841042
ashx core.ashx
// Extend prototypes
if(!Array.prototype.push) {
Array.prototype.push = function(o) {
this[this.length] = o;
}
}
Function.prototype.bind = function(o) {
if(!window.__objs) {
window.
www.eeworm.com/read/166486/10017999
js javascript.js
/* All contents (c) Tuan Do (www.celerondude.com)
If you use any of this, please leave the copyright intact.
*/
var is_ie = document.all;
var timer = false;
var icons_url = 'templates/default2/
www.eeworm.com/read/166486/10018315
js javascript.js
/* All contents (c) Tuan Do (www.celerondude.com)
If you use any of this, please leave the copyright intact.
*/
var is_ie = document.all;
var timer = false;
var icons_url = 'templates/default/i
www.eeworm.com/read/455735/7367365
js core.js
Object.extend(Function.prototype, {
getArguments: function() {
var args = [];
for(var i=0; i
www.eeworm.com/read/315533/13541031
js utility.js
//继承,来自己于prototype.js
Object.extend = function(destination, source)
{
for (property in source)
{
destination[property] = source[property];
}
return destination;
}
var Class =