- 浏览: 286218 次
- 性别:
- 来自: 广州
-
最新评论
-
weituotian:
这篇文章真的很好阿
C#利用反射,遍历获得一个类的所有属性名,以及该类的实例的所有属性的值 -
clshuai:
博主,你好,看了你的这篇文章,让我很敬佩。可谓内容之全,涵盖范 ...
C#操作Excel -
devilhand:
DataGridView刷新数据的问题 -
devilhand:
DataGridView刷新数据的问题 -
devilhand:
DataGridView刷新数据的问题
文章列表
marquee实现滚动
direction属性:设置滚动方式
onmouseout属性:设置当鼠标离开时要做什么
onmouseover属性:设置当鼠标移到上面时要做什么
scrollAmount属性:设置滚动的速度。1为最慢
<marquee direction="up" onmouseout="this.star()" onmouseover="this.stop()" scrollamount="4" style="width:236px;height:133px"</m ...
- 2009-08-31 19:46
- 浏览 862
- 评论(0)
object.shouwModalDialog(sUrl[,vArguments[,sFeatures]])
vArguments
用于向网页对话框中传递参数,参数类型不像
sFeatures
对话框窗口的设置参数
dialogWidth:设置宽度
dialogHeight:设置高度
DialogTop:设置对话框窗口相对于桌面左上角的位置
DialogLeft:设置对话框窗口相对于桌面左边的位置
Center:yes或1为居中,no或0为不居中
Help:设置对话框窗口是否显示上下文敏感的帮助图标
Scroll:设置对话框窗口是否出现滚动条
Resizable:设置对话框窗口的大少是否可以改变 ...
- 2009-08-31 19:40
- 浏览 1297
- 评论(0)
(string strSource)方法用来对比比较重要的信息进行加密
Dencrypting(string source)方法将已加密的信息进行解密
using System.Security.Cryptography;
using System.IO;
using System.Text;
public static string Encrypting(string strSource)
{
byte[] bytln = System.Text.Encoding.Default.GetBytes(strSource);
byte ...
- 2009-08-31 18:57
- 浏览 1095
- 评论(0)
html代码:
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<div>
<asp:TextBox ID=&q ...
- 2009-08-31 18:28
- 浏览 817
- 评论(0)
在使用ASP.NET AJAX控件后,如果想利用Js脚本来输出一些提示对话框,往往会想到利用 Page.Register ClientScriptBlock或者 Page.RegisterStartupScript注册,但是,页面上仍然没有提示信息。利用如下语句即可以解决这个问题:
ScriptManager.RegisterClientScriptBlock(UpdatePanel1,this.GetType(),"click","alert('提示信息')",true); 就可以正常的弹出alert对话框了。
需要注意的是,如果在页面中 ...
- 2009-08-31 18:23
- 浏览 980
- 评论(0)
<script language="javascript" type="text/javascript">
</scritp>
//获取文本框的值
var a=document.form1.text1.value;
//获取单选框的值(要分组,组名为zhu1,即把名称都设为zhu1)
var xb
if(document.form1.zhu1[0].checked;)
{
xb=document.form1.zhu1[0].value;
}
else
{
xb=document.form1.zhu1[1].value;
}
//获 ...
- 2009-08-31 11:44
- 浏览 691
- 评论(0)
<html>
<script language="javascript">
var i=5;
<!--
function clock(){
//document.title="本窗口将在"+i+"秒后自动关闭!";
document.getElementById("s").innerHTML = i;
if(i>0)
setTimeout("clock();",1000);
else
//self.close();
...
- 2009-08-18 19:57
- 浏览 1680
- 评论(0)
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>无标题页</title>
<script type="text/javascript">
function findobj(n, d) {
var p,i,x; if(!d) d=document;
if((p=n.indexOf("?"))>0 && parent.frames.length) {
d=parent. ...
- 2009-08-15 18:14
- 浏览 926
- 评论(0)
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>无标题页</title>
<script language="javascript" type="text/javascript">
function copycode() {
document.getElementById("logPanel").select();
var n=document.getElementBy ...
- 2009-08-15 17:59
- 浏览 1381
- 评论(0)