- 浏览: 281609 次
- 性别:
- 来自: 广州
最新评论
-
weituotian:
这篇文章真的很好阿
C#利用反射,遍历获得一个类的所有属性名,以及该类的实例的所有属性的值 -
clshuai:
博主,你好,看了你的这篇文章,让我很敬佩。可谓内容之全,涵盖范 ...
C#操作Excel -
devilhand:
DataGridView刷新数据的问题 -
devilhand:
DataGridView刷新数据的问题 -
devilhand:
DataGridView刷新数据的问题
文章列表
GridView 控件:
GridView 控件以表的形式显示数据,并提供对列进行排序、分页、翻阅数据以及编辑或删除单个记录的功能。
DetailsView 控件:
DetailsView 控件一次呈现一条表格形式的记录,并提供翻阅多条记录以及插入、更新和删除记录的功能。DetailsView 控件通常用在主/详细信息方案中,在这种方案中,主控件(如 GridView 控件)中的所选记录决定了 DetailsView 控件显示的记录。
FormView 控件:
FormView 控件与 DetailsView 控件类似,它一次呈现数据源中的一条记录,并提供翻阅多条记录以及插入、更新和删除记录 ...
- 2009-12-02 10:58
- 浏览 1748
- 评论(1)
写入Cookie
Response.Cookies["UserName"].Value = "用户名";
Response.Cookies["CustomerID"].Expires = DateTime.Today.AddDays(30);
读取Cookie
if (Request.Cookies["UserName"].Value != null)
{
//用户曾登录
string username = Request.Cookies["UserName&q ...
- 2009-11-30 19:27
- 浏览 945
- 评论(0)
//.NET在后置代码中输入JS提示语句(背景不会变白)
Page.ClientScript.RegisterStartupScript(Page.GetType(), "message", "<script language='javascript' defer>alert('加入暂存架成功!');</script>");
//有转向
Page.ClientScript.RegisterStartupScript(Page.GetType(), "message", "<script ...
- 2009-11-30 16:31
- 浏览 712
- 评论(0)
//弹出提示框
OnClientClick ="return confirm("是否确定删除!")" OnClick ="lDelComment_Click"
- 2009-11-30 16:22
- 浏览 1101
- 评论(0)
导入命名空间
Using System.Net.Mail
C#代码
System.Net.Mail.SmtpClient client = new SmtpClient();
client.Host = "smtp.163.com";
client.UseDefaultCredentials = false;
client.Credentials = new System.Net.NetworkCredential("你的163用户名", "*****");
...
- 2009-11-09 18:56
- 浏览 792
- 评论(0)
C#代码:
using System.Text;
using System.Drawing;
public partial class Default3 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
CreateCheckCodeImage(GetString(4));
}
private object[] CreateString(int strlenght)
{
...
- 2009-11-08 19:49
- 浏览 548
- 评论(0)
ASP.net代码
private string GenerateCheckCode()
{
int number;
char code;
string checkCode = string.Empty;
Random random = new Random();
for (int i = 0; i < 4; i++)
{
number = random.Next();
if (number % 2 == 0 ...
- 2009-10-15 16:17
- 浏览 941
- 评论(0)
string[] ss = {"aaa","bbb","ccc" };
Response.Write(string.Join(",",ss));
- 2009-10-15 16:13
- 浏览 1143
- 评论(0)
html代码
<!--
Document : ASP.NET用一般处理程序生成验证码
Created on : 2008-10-13 17:04
Author : 牛腩
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title></title>
<meta http-equiv="Content ...
- 2009-10-15 16:11
- 浏览 707
- 评论(0)
//引入命名空间
using System.IO;
DirectoryInfo di = new DirectoryInfo(Server.MapPath("file"));
FileSystemInfo[] dis = di.GetFileSystemInfos();
if (dis == null || dis.Length <= 0) return null;
///将文件名称保存到临时数组中
string[] tempFileList = new ...
- 2009-09-27 19:22
- 浏览 951
- 评论(0)
创建一个web服务
using System;
using System.Web;
using System.Collections;
using System.Web.Services;
using System.Web.Services.Protocols;
//引入空间
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
/// <summary>
/// KeyFind 的摘要说明
/// & ...
<asp:TextBox ID="txtPricemax" runat="server" onkeydown="if(event.keyCode==13){(document.getElementById(imgbtnSearchListing)).focus();(document.getElementById(imgbtnSearchListing)).click();}"></asp:TextBox>
- 2009-09-10 14:15
- 浏览 1140
- 评论(0)
Vs2008评估期的处理方法
- 博客分类:
- ASP.NET
把90天试用版改为正式版,二种方法:
1. 把Setup\setup.sdb文件中的
[Product Key]
T2CRQGDKBVW7KJR8C6CKXMW3D
改成
[Product Key]
PYHYPWXB3BB2CCMV9DX9VDY8T
2.安装完成后,在“控制面板”中启动“添加删除程序”,选中Vs2008,点击“更改、删除”,
输入序列号:PYHYP-WXB3B-B2CCM-V9DX9-VDY8T
vs2005
KYTYH-TQKW6-VWPBQ-DKC8F-HWC4J
注册时对于密码提示答案等信息应该加密后存入数据库
using System.Web.Security;
FormsAuthentication.HashPasswordForStoringInConfigFile方法:根据指定的密码和哈希算法生成一个适合存储在配置文件中的哈希密码。
this.Label1.Text = FormsAuthentication.HashPasswordForStoringInConfigFile(this.TextBox1.Text ,"MD5");
- 2009-08-31 19:55
- 浏览 846
- 评论(0)