摘要: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default3.aspx.cs" Inherits="zzzmytest_Default3" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">& 阅读全文
posted @ 2011-12-29 14:34 doo 阅读(422) 评论(0) 推荐(0) 编辑
摘要: shadowbox.js shadowbox.css 阅读全文
posted @ 2011-12-29 14:09 doo 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 图片无缝滚动的好插件google下这个插件jCarouselhttps://github.com/jsor/jcarouselhttp://www.zhangxinxu.com/wordpress/?p=477http://zhang.cnedun.com/node/13 阅读全文
posted @ 2011-12-28 17:14 doo 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 原文出处 http://www.codefans.net/jscss/code/2964.shtml<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" 阅读全文
posted @ 2011-12-28 16:53 doo 阅读(247) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> var requestTimes = 0; function sendrequest(orderId) { var image = document.createElement("IMG"); image.src = "http://cps.lovo.cn/order/pushOrder.do?orderId=" + orderId; image.width = 0; image.height = 0; image.onerror = retryrequest 阅读全文
posted @ 2011-12-28 14:43 doo 阅读(210) 评论(0) 推荐(0) 编辑
摘要: function calculateIntegral() { var GPrice = document.getElementById("GiftMoeny").value; var CPrice = document.getElementById("CodeMoeny").value; var freight = document.getElementById("Shopfreight").value; $.ajax({ type: "POST", url: "../Controller/UserCar 阅读全文
posted @ 2011-12-28 14:33 doo 阅读(284) 评论(0) 推荐(0) 编辑
摘要: <label>验证码:</label> <input type="text" name="txtLoginCode" id="txtLoginCode" class="box2" /> <span class="zy"> <img id="LoginCode" src="../LoginCode.aspx" width="70" height="24" alt=& 阅读全文
posted @ 2011-12-23 09:59 doo 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 原文 http://apps.hi.baidu.com/share/detail/31652665网页滚动字幕代码在网页中,制作滚动字幕使用marquee标签,如果用手写的方法,实在是太麻烦了。从Dreamweaver MX 2004开始,可以使用“标签选择器”插入各种标签,并且可以使用“标签检查器”设置标签的属性值,它的功能类似于属性面板,但是比属性面板更强大。 使用“标签选择器”插入marquee标签 1.把光标插入点放在需要插入滚动字幕的地方。 2.点击插入面板的“标签选择器 ” 3.选择 marquee标签,点击“插入”按钮。 使用“标签检查器”设置marquee标签的属... 阅读全文
posted @ 2011-12-21 16:11 doo 阅读(4559) 评论(0) 推荐(1) 编辑
摘要: (转)仅供自己参考用在使用EnterpriseLibrary的Data Access Application Block时,需要添加Microsoft.Practices.EnterpriseLibrary.CommonMicrosoft.Practices.EnterpriseLibrary.DataMicrosoft.Practices.ServiceLocationMicrosoft.Practices.Unity四个Dll的引用但使用VS2010编译时还是会报错:The type or namespace name 'Data' does not exist in th 阅读全文
posted @ 2011-07-25 16:40 doo 阅读(13421) 评论(2) 推荐(0) 编辑
摘要: public enum BookType{Ticket,Trip,Hotel}从String到enumBookType type = (BookType)Enum.Parse(typeof(BookType),"Ticket");从enum到String方法一:ToString();方法二:s = Enum.GetName(typeof(BookType), BookType.Ticket); 阅读全文
posted @ 2011-05-23 15:31 doo 阅读(239) 评论(0) 推荐(0) 编辑