- 浏览: 42264 次
- 性别:
- 来自: 广州
-
最新评论
文章列表
Asp.net: GridView72绝技 - 狗狗骨头程序员 - 博客园
<asp :BoundField DataField="CreationDate"
DataFormatString="{0:M-dd-yyyy}"
HeaderText="CreationDate" />
主要是由于htmlencode属性默认设置为true,已防止XSS攻击,安全起见而用
的,所以,可以有以下两种方法解决
1、
<asp :GridView ID="GridView1" runat=&quo ...
- 2009-01-16 09:02
- 浏览 2423
- 评论(0)
<div style="border: white 0px solid; scrollbar-face-color: #ffffff; scrollbar-highlight-color: #99ccff;
overflow-x: hidden; overflow-y: auto; overflow-x: auto; width: 200px; scrollbar-shadow-color: #99ccff;
color: #000000; scrollbar-3dlight-color: #99 ...
- 2009-01-15 18:01
- 浏览 710
- 评论(0)
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER PROCEDURE [dbo].[FeeBudgetYear_RowColumnChang]
@Curryear varchar(4),@DeptCode varchar(6)
AS
declare @SQL varchar(8000)
,@FieldFZ VARCHAR(50) --分组字段
,@FieldJS varchar(50) --计算字段
,@TMPsql varchar(8000)--临时字符串
set @FieldFZ='C ...
- 2009-01-15 17:43
- 浏览 766
- 评论(0)
BtnQuery.Attributes.Add("onclick", "openwin()");
定义字段(也就是在方法外定义)public string ss="1";
调用
<INPUT type="text" value=<%=ss%>>
______________________________________________________________________________________________
答2:
<script language=j ...
- 2009-01-13 12:48
- 浏览 753
- 评论(0)
引用一、数据库操作
1、用完马上关闭数据库连接
访问数据库资源需要创建连接、打开连接和关闭连接几个操作。这些过程需要多次与数据库交换信息以通过身份验证,比较耗费服务器资源。ASP.NET中提供了连接池(Connection P ...
- 2009-01-12 13:21
- 浏览 955
- 评论(0)
ScriptManager.RegisterStartupScript(this.UpdatePanel1,this.GetType(), "提示", "alert('购物车为空,请先购物!')", true);
ScriptManager.RegisterClientScriptBlock(this.Page, this.GetType(), "msg", "javascript:ShowDialog('FeeBudgetYearImport.aspx?button=btnimport&Year=" + d ...
- 2009-01-12 13:19
- 浏览 859
- 评论(0)
file:///C|/Documents and Settings/Administrator/桌面/截取字符串.txt
/// <summary>
/// 将指定字符串按指定长度进行剪切,
/// </summary>
/// <param name= "oldStr "> 需要截断的字符串 </param>
/// <param name= "maxLength "> 字符串的最大长度 </param>
/// <param name= "endWith ...
- 2009-01-12 12:59
- 浏览 910
- 评论(0)
file:///C|/Documents and Settings/Administrator/桌面/安装说明.txt
USE [News]
GO
/****** 对象: StoredProcedure [dbo].[usp_PagingLarge] 脚本日期: 11/25/2008 14:22:45 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[usp_PagingLarge]
@TableNames VARCHAR(300), --表名,可以是多个表,但不能用别 ...
- 2009-01-12 08:56
- 浏览 642
- 评论(0)
document.getElementById("MyFile")和insertAdjacentHTML
("beforeEnd", str)的含义和用法收藏
新一篇: 解决WIN2003因为限制ASP上传最大数值的方法 | 旧一篇: Web形式实现上传文件
document.getElementById("MyFile")为:获得名称为MyFile的层。
insertAdjacentHTML("beforeEnd", str)为:
MyFile层在其后追加插入内容为 INPUT type="fi ...
- 2009-01-12 08:54
- 浏览 871
- 评论(0)
http://www.webdiyer.com/AspNetPager/demo/PagingButtonLayoutType/default.aspx
网易风格:
.anpager .cpb {background:#1F3A87 none repeat scroll 0 0;border:1px solid #CCCCCC;color:#FFFFFF;font-weight:bold;margin:5px 4px 0 0;padding:4px 5px 0;}
.anpager a {background:#FFFFFF none repeat scroll 0 0;border: ...
- 2009-01-10 14:15
- 浏览 835
- 评论(0)
DragPanelExtender可以随意拖动的广告窗
- 2009-01-10 09:18
- 浏览 818
- 评论(0)