05 2012 档案
摘要:http://www.fengfly.com/plus/view-195899-1.htmluse_outer_join 参数已弃用,尝试使用会抛出异常
阅读全文
摘要:语法解释:1. $("#select_id").change(function(){//code...}); //为Select添加事件,当选择其中一项时触发2. var checkText=$("#select_id").find("option:selected").text(); //获取Select选择的Text3. var checkValue=$("#select_id").val(); //获取Select选择的Value4. var checkIndex=$("#select_id &qu
阅读全文
摘要:<html xmlns="http://www.w3.org/1999/xhtml"><head><title>无标题 1</title><script type="text/javascript" src="Scripts/jquery-1.4.1-vsdoc.js"></script></head><body><form method="post"><select id="s2"
阅读全文
摘要:create table Cart( [UserID] uniqueidentifier not null, [ProductID] int not null, [ProductName] varchar(80) not null, [Price] [decimal](10, 2) NOT NULL, [ImagePath] [varchar](100) NULL, Quantity int not null, IsAnonymous bit not null)alter table Cartadd constraint [PK_Cart] primary key CLUSTERED([USe
阅读全文
摘要:HttpUtility 的静态方法用于处理编码解码等
阅读全文
摘要:1.如果让本页转向新的页面则用: <input type=button onclick="window.location.href('连接')"> 2.如果需要打开一个新的页面进行转向,则用: <input type=button onclick="window.open('连接')">
阅读全文
摘要:Silverlight4在跨域访问TCP时会读取Http 80端口的跨域策略文件,可以放IIS上,也可以在服务控制台托管Http服务例子是控制台托管TCP服务和Http跨域策略文件服务配置文件:<?xml version="1.0"?><configuration> <system.serviceModel> <services> <service name="ConsoleApplication1.DuxpexService"> <endpoint address=""
阅读全文