首页 软件开发 代码片段 ASP/Basic ( Page 2 )

ASP/Basic 204

#APS/Basic
QQ聊天室主页设计

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="zhuce.aspx.cs" Inherits="zhuce…

2015-11-14 213

#APS/Basic
水晶报表翻页无效

protected void Page_Load(object sender, EventArgs e) { LoadReport(); } 修改为: private void P…

2015-11-13 713

#APS/Basic
Soundex

<% ' Copyright (c) 2009, reusablecode.blogspot.com; some rights reserved. ' ' This work…

2015-11-13 851

#APS/Basic
获取用户名、计算机名和域名

Option Explicit Dim objNet On Error Resume Next 'In case we fail to create object then dis…

2015-11-13 745

#APS/Basic
ASP.NET动态添加用户控件

为了让用户控件能ASP.NET页面实现动态添加,首先写一个接口IGetUCable,这个接口有一个函数,返回对象类型是UserControl. View Code using Sy…

2015-11-10 516

#APS/Basic
.NET 推送文件到浏览器

/// <summary> /// Downloads (pushes) file to the client browser. /// **** NOTE **** …

2015-11-06 882

#APS/Basic
VB 中创建表格(2)

Private Function createContactTable() As String Try Dim dt As DataTable = getInformation()…

2015-11-05 851

#APS/Basic
用VBScript实现Zip解压缩目录中的所有文件

On Error Resume Next Dim objFSO,sourcepath,targetpath Function GetZipFile(path) Dim file,f…

2015-11-01 634

#APS/Basic
一个卡片游戏的初步实现

VERSION 5.00 Begin VB.Form TestForm1 Caption = "TestForm1" ClientHeight = 6555 ClientLeft …

2015-11-01 361

#APS/Basic
VBScript文件操作对象FileSystemObject大全

基本运算 + 数字加法及字符串连接 - 数字减法 * 数字乘法 / 数字除法 Mod 求余数 \ 求商数 & 字符串连接 ^ 次方 = 相等 <> 不相等 &g…

2015-10-30 648

#APS/Basic
VB.NET 调用 MySQL 存储过程并获得返回值

Dim myConnectionString As String = "Database=" & myDatabase & _ " ;Data Source=" &…

2015-10-29 145

#APS/Basic
动态创建缩略图

Function CreateJPEGThumbnail(ByVal inSourceFile As String, ByVal inDestinationFile As Stri…

2015-10-27 267