虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

World

  • 学 习 ASP 页 的 最 佳 途 径 是 动 手 编 写 自 己 的 ASP 页 。 创 建 ASP 页 其 实 很 简 单

    学 习 ASP 页 的 最 佳 途 径 是 动 手 编 写 自 己 的 ASP 页 。 创 建 ASP 页 其 实 很 简 单 , 只 要 使 用 文 本 编 辑 器 将 脚 本 命 令 插 入 到 HTML 页 中 就 行 了 。 将 这 个 主 页 以 .asp 为 文 件 扩 展 名 保 存 , ASP 服 务 器 就 知 道 处 理 其 中 的 脚 本 命 令 了 。 若 要 查 看 脚 本 的 结 果 , 只 要 使 用 HTTP 协 议 在 Web 浏 览 器 中 请 求 查 看 该 页 就 行 了 。 也 就 是 键 入 ht tp://localhost/iishelp/iis/htm/tutorial/filename.asp 。 在 本 课 中 , 您 将 创 建 流 行 的 “ Hello World! ” 脚 本 , 方 法 是 从 教 程 中 将 HTML 和 ASP 脚 本 命 令 复 制 到 文 本 编 辑 器 中 。 当 您 在 文 本 编 辑 器 中 保 存 文 件 后 , 就 能 用 浏 览 器 查 看 脚 本 的 输 出 效 果 了 。

    标签: ASP

    上传时间: 2014-01-21

    上传用户:huangld

  • BPMLL is a package for training multi-label BP neural networks. The package includes the MATLAB code

    BPMLL is a package for training multi-label BP neural networks. The package includes the MATLAB code of the algorithm BP-MLL, which is designed to deal with multi-label learning. It is in particular useful when a real-World object is associated with multiple labels simultaneously

    标签: package multi-label includes networks

    上传时间: 2013-12-05

    上传用户:xsnjzljj

  • Windows环境下32位汇编语言是一种全新的编程语言。它使用与C++语言相同的API接口

    Windows环境下32位汇编语言是一种全新的编程语言。它使用与C++语言相同的API接口,不仅可以用来开发出大型的软件,而且是了解操作系统运行细节的最佳方式。 本书从编写应用程序的角度,从“Hello World!”这个简单的例子开始到编写多线程、注册表和网络通信等复杂的程序,通过70多个实例逐步深入Win32汇编语言编程的方方面面。 本书作者罗云彬拥有十余年汇编语言编程经验,是汇编编程网站http://asm.yeah.net和汇编编程论坛http://win32asm.yeah.net的站长。本书是作者多年来编程工作的总结,适合于欲通过Win32汇编语言编写Windows程序的读者。

    标签: Windows API 环境 汇编语言

    上传时间: 2014-01-23

    上传用户:jqy_china

  • The literature of cryptography has a curious history. Secrecy, of course, has always played a centra

    The literature of cryptography has a curious history. Secrecy, of course, has always played a central role, but until the First World War, important developments appeared in print in a more or less timely fashion and the field moved forward in much the same way as other specialized disciplines. As late as 1918, one of the most influential cryptanalytic papers of the twentieth century, William F. Friedman’s monograph The Index of Coincidence and Its Applications in Cryptography, appeared as a research report of the private Riverbank Laboratories [577]. And this, despite the fact that the work had been done as part of the war effort. In the same year Edward H. Hebern of Oakland, California filed the first patent for a rotor machine [710], the device destined to be a mainstay of military cryptography for nearly 50 years.

    标签: cryptography literature has Secrecy

    上传时间: 2016-12-08

    上传用户:fxf126@126.com

  • /* 在这里我们连接 "destroy" 事件到一个信号处理函数。 * 对这个窗口调用 gtk_widget_destroy() 函数或在 "delete_event" 回调函数中返回 FALS

    /* 在这里我们连接 "destroy" 事件到一个信号处理函数。 * 对这个窗口调用 gtk_widget_destroy() 函数或在 "delete_event" 回调函数中返回 FALSE 值 * 都会触发这个事件。*/ g_signal_connect (G_OBJECT (window), "destroy", G_CALLBACK (destroy), NULL) /* 设置窗口边框的宽度。*/ gtk_container_set_border_width (GTK_CONTAINER (window), 10) /* 创建一个标签为 "Hello World" 的新按钮。*/ button = gtk_button_new_with_label ("hello World") /* 当按钮收到 "clicked" 信号时会调用 hello() 函数,并将NULL传给 * 它作为参数。hello() 函数在前面定义了。*/ g_signal_connect (G_OBJECT (button), "clicked", G_CALLBACK (hello), NULL)

    标签: gtk_widget_destroy delete_event destroy FALS

    上传时间: 2016-12-26

    上传用户:zsjinju

  • Java is the first language to provide a cross-platform I/O library that is powerful enough to handle

    Java is the first language to provide a cross-platform I/O library that is powerful enough to handle all these diverse tasks. Java is the first programming language with a modern, object-oriented approach to input and output. Java s I/O model is more powerful and more suited to real-World tasks than any other major language used today. Java I/O is the first and still the only book to fully expose the power and sophistication of this library.

    标签: cross-platform language powerful provide

    上传时间: 2014-01-07

    上传用户:pompey

  • 熟悉基于 uCOS-II 扩展的嵌入式操作系统的启动和应用程序的结构。阅读 main. 调用的函数

    熟悉基于 uCOS-II 扩展的嵌入式操作系统的启动和应用程序的结构。阅读 main. 调用的函数,了解 uCOS-II操作系统系统的启动过程。使用Source Insight 3.0 C代码 辑器,在操作系统的基础上,编写一段程序,在屏幕上显示“Hello World”等文本

    标签: uCOS-II main 扩展 嵌入式操作系统

    上传时间: 2013-12-21

    上传用户:wxhwjf

  • ThreadX Library for ARM RISC microprocessor. ThreadX is a high performance RTOS that is wildly used

    ThreadX Library for ARM RISC microprocessor. ThreadX is a high performance RTOS that is wildly used in industrail World-wide.

    标签: ThreadX microprocessor performance Library

    上传时间: 2014-10-26

    上传用户:1101055045

  • This article describes how to consume Web services in Java 1.5.0 using the new JAX-WS 2.0 API (JSR 2

    This article describes how to consume Web services in Java 1.5.0 using the new JAX-WS 2.0 API (JSR 228). Developers around the World, including me, have always complained about the hard ways to work in Java to consume even a Web service as simple as adding two numbers. However, with JAX-WS 2.0 API now available in core Java in JDK 1.5.0, life is simple like never before.

    标签: describes services article consume

    上传时间: 2013-11-27

    上传用户:kelimu

  • Java technology is both a programming language and a platform. The Java programming language origina

    Java technology is both a programming language and a platform. The Java programming language originated as part of a research project to develop advanced software for a wide variety of network devices and embedded systems. The goal was to develop a small, reliable, portable, distributed, real-time operating platform. When the project started, C++ was the language of choice. But over time the difficulties encountered with C++ grew to the point where the problems could best be addressed by creating an entirely new language platform. Design and architecture decisions drew from a variety of languages such as Eiffel, SmallTalk, Objective C, and Cedar/Mesa. The result is a language platform that has proven ideal for developing secure, distributed, network-based end-user applications in environments ranging from network-embedded devices to the World-Wide Web and the desktop

    标签: programming language Java technology

    上传时间: 2014-01-03

    上传用户:huangld