摘要:
子查询描述:查询订单数超过5的顾客信息查询句法:var 子查询 = from c in ctx.Customers where (from o in ctx.Orders group o by o.CustomerID into o where o.Count() > 5 select o.Key).Contains(c.CustomerID) select c; in 操作描述:查询指定城市中的客户查询句法:var in操作 = from c in ctx.Customers ... 阅读全文
posted @ 2011-12-12 21:43
好家伙
阅读(183)
评论(0)
推荐(0)
摘要:
<Script language="javascript">function GetRequest() { var url = location.search; //获取url中"?"符后的字串 var theRequest = new Object(); if (url.indexOf("?") != -1) { var str = url.substr(1); strs = str.split("&"); for(var i = 0; i < strs.length; i ++) { 阅读全文
posted @ 2011-12-12 15:55
好家伙
阅读(101)
评论(0)
推荐(0)
摘要:
Javascript 两个窗体之间传值实现代码 javascript中还有一个函数window.showModalDialog也可以打开一个新窗体,不过他打开的是一个模态窗口,那么如何在父窗体和子窗体之间传值呢?我们先看该函数的定义:vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures]) 参数说明: sURL--必选参数,类型:字符串。用来指定对话框要显示的文档的URL。 vArguments--可选参数,类型:变体。用来向对话框传递参数。传递的参数类型不限,包括数组等。对话框通过window.dialog 阅读全文
posted @ 2011-12-12 15:26
好家伙
阅读(507)
评论(0)
推荐(0)
浙公网安备 33010602011771号