相关分类: Java技术 C/C++ VB delphi
  • .net弹出框

    弹出框 可以使用div来显示 在前台增加 div id="flowDiv" runat="server" div class="row" div class="col-lg-1"/div div class="col-lg-10" h2ユーザー情報/h2 /div /div div class="row" div class="col-lg-1"/div div class="col-lg-10" div class="input-group" spa...

    2018-06-18 04:31:35

  • C#基础-out与ref字段

    using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication2{ class Program { static void Main( string [] args) { string outString = " This is the outString value " ; Console.WriteLine(outString...

    2018-06-18 04:31:34

  • VB的判断语句和循环语句

    判断语句 If语句 if语句共有4种写法: 第一种语法: If 条件判断语句 then 程序代码 第二种语法:If 条件判断语句 then 程序代码 else 程式代码 第三种语法: If 条件判断语句 then 程式代码 Else 程式代码 End if 例如:判断输入框是否为空 If Len(TextBox1.Text) 0 Or Le...

    2018-06-18 04:31:33

  • 利用iis虚拟目录实现文件服务器功能(分布式存储)

    要求说明: 通过网站上传文件保存到统一的文件服务器上。 服务器说明: 1.文件服务器以下称为FilesServer,IP地址为:192.168.1.213 2.Web服务器为以下称为WebServer,IP地址为:192.168.1.214 详细步骤: (1)在FilesServer和WebServer上分别新建一个新用户,要求这...

    2018-06-18 04:31:33

  • [Freemarker] Getting Start

    ...

    2018-06-18 04:31:32

  • 如何调用网页视屏插件

    网页中插入代码: embed src=" http://static.youku.com/v/swf/qplayer.swf?winType=adshowamp;VideoIDS= XMzU4ODg2OTg0 amp;isAutoPlay=falseamp;isShowRelatedVideo=false" wmode="transparent" width="360" align="center" border="0" height="240" 其中红色部分就...

    2018-06-18 04:31:31

  • 关于随机数

    随机数在现代社会应用不可谓少,我们可以在每天用到的手机验证码,网上博彩,网上斗地主等等中看到随机数的影子 7月27日晚9点,学习之余在如鹏网杨中科视频中便看到关于随机数的解释http://www.rupeng.com/Courses/Index/13 下面是自己定义的线性求同法求随机数 public...

    2018-06-18 04:31:31

  • js补充小知识点(continue,break,ruturn)

    1.continue,break,ruturn eg:1-100的和 $( function (){ $( "#hello").click( function () { var iNum = 0 ; for ( var i = 1; i 101; i++ ) { iNum += i; } alert(iNum); });}); 结果为:5050 换为break,查看结果 $( function (){ $( "#hello").click( function () {...

    2018-06-18 04:31:28

  • 几个比较”有意思“的JS脚本

    1.获取内网和公网真实IP地址(引用地址) !DOCTYPE htmlhtml head meta http-equiv="Content-Type" content="text/html; charset=utf-8" /head body h4 Demo for: a href="https://github.com/diafygi/webrtc-ips" https://github.com/diafygi/webrtc-ips /a /h4 p Thi...

    2018-06-18 04:31:24

  • C#基础-FileStream

    一、FileStream的基础知识 属性: CanRead 判断当前流是否支持读取,返回bool值,True表示可以读取 CanWrite 判断当前流是否支持写入,返回bool值,True表示可以写入 方法: Read() 从流中读取数据,返回字节数组 Write() 将字节块(字节数组)写入该流 Seek() 设置文件...

    2018-06-18 04:31:21

2