上一页 1 ··· 23 24 25 26 27
摘要: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xm 阅读全文
posted @ 2012-03-11 22:50 Star★ 阅读(390) 评论(0) 推荐(0) 编辑
摘要: <a href="#" target="_self" onclick="javascript:if(confirm('确定要退出系统?')){window.opener=null;window.close();window.parent.close();}"><img src="images/out.gif" alt="安全退出" width="46" height="20" border="0"> 阅读全文
posted @ 2012-03-11 22:29 Star★ 阅读(1239) 评论(0) 推荐(0) 编辑
摘要: <script language="javascript" type="text/javascript"> function changimgsize(){ var imgs = document.getElementById("content").getElementsByTagName("img"); var imgwidth=100; for(i=0; i <imgs.length; i++){ if(imgs[i].width>imgwidth){ var oW = imgs[i]. 阅读全文
posted @ 2012-03-11 22:24 Star★ 阅读(192) 评论(0) 推荐(0) 编辑
摘要: #region 无限极分类; /// <summary> /// 绑定DropDownList; /// </summary> protected void BindDropdownList() { DataTable dt = new DataTable(); dt = bllClass.GetAllList().Tables[0]; CreateLevelDropDown(ddlType, dt); //ddlType.Items.Insert(ddlType.Items.Count, new ListItem("——此类为根类——", &quo 阅读全文
posted @ 2012-03-11 22:22 Star★ 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 创建表:tb_loc 字段列名描述location_id地区编号location_name地区名称parentlocation_id上级地区编号CREATE TABLE [tb_loc]( [id] [int], [name] [varchar](16), [parent] [int])GOINSERT tb_loc(id,name,parent) VALUES( 1,'河北省',NULL) INSERT tb_loc(id,name,parent) VALUES( 2,'石家庄',1) INSERT tb_loc(id,name,parent) VALUES( 阅读全文
posted @ 2012-03-11 22:10 Star★ 阅读(2332) 评论(0) 推荐(2) 编辑
上一页 1 ··· 23 24 25 26 27