摘要:
C#处理owc chart---------------------------------------------ASP.NET版-----------------------------using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using Syste 阅读全文
摘要:
JS保留两位小数对于一些小数点后有多位的浮点数,我们可能只需要保留2位,但js没有提供这样直接的函数,所以我们得自己写函数实现这个功能,代码如下:function changeTwoDecimal(x){var f_x = parseFloat(x);if (isNaN(f_x)){alert('function:changeTwoDecimal->parameter error');return false;}f_x = Math.round(f_x*100)/100;return f_x;}功能:将浮点数四舍五入,取小数点后2位用法:changeTwoDecimal( 阅读全文
摘要:
///<summary>///下载文件///使用流输出///</summary>///<paramname="sender"></param>///<paramname="e"></param>privatevoidButton1_Click(objectsender,System.EventArgse){stringsFileName=Server.MapPath("./工作用常用电话号码.xls");FileStreamfileStream=newFileSt 阅读全文
摘要:
实现过程:选择图片上传成功后,取得已经存在服务器的文件生成缩略图,并且判断是否是图片类型的文件,这个的判断可以在程序中修改,本程序只是判断了“image/bmp”、“image/gif”、“image/pjpeg”三种类型。 代码如下: upfile.aspx文件<%@ Page Language="C#" AutoEventWireup="true" CodeFile="upfile.aspx.cs" Inherits="upfile_upfile" %><!DOCTYPE html PUBLI 阅读全文
摘要:
///isdelete,power是传进来的参数if(isdelete=='True')//$("input[@type=radio]").attr("checked",'10'); $("input[name='addisdelete'][value='1']").attr("checked", true); else $("input[name='addisdelete'][value='0']" 阅读全文
摘要:
1. Single Sign On目的:多个Web应用有统一的登陆以及一次登陆完成所有Web应用的认证。原理:利用Form认证,认证后的Cookie,使得参与Web应用的都具有一组相同的用于加密与验证加密的密钥。加密与验证加密的密钥位于 Machine.config 中,修改 <system.web> 节点下的 <machineKey> 节点属性。应用范围:位于同一服务器上的各个Web应用。 ---login.aspx if(FormsAuthentication.Authenticate(txtUser.Text,txtPassword.Text)) { FormsA 阅读全文
摘要:
Uploadify是JQuery的一个上传插件,实现的效果非常不错,带进度显示。不过官方提供的实例时php版本的,本文将详细介绍Uploadify在Aspnet中的使用,您也可以点击下面的链接进行演示或下载。官方下载 官方文档官方演示首先按下面的步骤来实现一个简单的上传功能。1 创建Web项目,命名为JQueryUploadDemo,从官网上下载最新的版本解压后添加到项目中。2 在项目中添加UploadHandler.ashx文件用来处理文件的上传。3 在项目中添加UploadFile文件夹,用来存放上传的文件。进行完上面三步后项目的基本结构如下图:4 Default.aspx的html页的代 阅读全文
摘要:
下面简单使用Jquery来操作iframe的一些记录,这个使用纯JS与可以实现。第一、在iframe中查找父页面元素的方法:$('#id', window.parent.document)第二、在父页面中获取iframe中的元素方法:$(this).contents().find("#suggestBox")第三、在iframe中调用父页面中定义的方法和变量:parent.methodparent.valueiframe里用jquery获取父页面bodyiframe.html<html><script src='jquerymin. 阅读全文
摘要:
jQuery中选择器很强大,可以根据元素名称、ID、class等多种方式进行选择,<ul id="id"> <li> <div> nihao <div class="className"> china!!! </div> </div> </li></ul>$("div"),选则所有div元素<div>nihao<div class="className">china!!!</div>& 阅读全文
摘要:
<OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WebBrowser width=0></OBJECT> <input name=Button .Click=document.all.WebBrowser.ExecWB(1,1) type=button value=打开><input name=Button .Click=document.all.WebBrowser.ExecWB(2,1) type=button value=关闭所有><inpu 阅读全文