-
求sql统计难题解决思路
求sql统计难题表的格式如下展览名称客户名称日期展览1客户A2008展览2客户A2008展览1客户A2009展览3客户A2010展览4客户B2011展览5客户B2008展览6客户B2008展览7客户B2009展览8客户B2010展览9客户B2011............................现想将它进行统计,统计目标是产看这么多年那些客户有流失过。希望得到的结果是方式是每年年份是否有做...
60
热度 -
怎么指定窗口大小
如何指定窗口大小Response.Write("<script>window.open('aa.htm');top.opener=null;</script>");如何修改以上语句,使打开aa.htm页面时控制窗口的大小为:长100,宽200color='#e78608'>------解决方案-------------------------------...
5738
热度 -
iframe无际框
iframe无边框 <iframesrc="url"width="800"height="30"frameborder="no"border="0"marginwidth="0"marginheight="0"scrolling="no"allowtransparency="yes"></iframe>
90
热度 -
个人归档
个人存档 document.getElementById("khmc").value=""; document.getElementById("khmc1").value=""; varurl='<%=request.getContextPath()%>/khgl/khinforAction.do?operFlag=select'; varsStyle='scrollbar...
144
热度 -
js弹出窗口统制
js弹出窗口控制 <SCRIPTLANGUAGE="javascript"><!--window.open('pop2.html','popwindow','height=200,width=320,top=0,left=24,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no');//'p...
90
热度 -
IE7 封闭窗口不弹出对话框
IE7关闭窗口不弹出对话框 要实现从一个页面跳转到另一个页面去,把第一个页面自动关闭,IE6的解决方式:window.open(url,'_blank','top=0,left=0,width=1018px,resizable=yes,scrollbars=yes,toolbar=no,location=no,menubar=no,status=no');window.opener=null;wi...
103
热度 -
UITextview添边框
UITextview加边框 [contentTextView.layersetBorderColor:[[UIColorgrayColor]CGColor]]; [contentTextView.layersetBorderWidth:1.0]; [contentTextView.layersetCornerRadius:8.0f]; [contentTextView.layersetMasks...
160
热度 -
QQ怎么强行跟人聊天
QQ如何强行跟人聊天? http://wpa.qq.com/msgrd?v=3&uin=00000&site=qq&menu=yes将六个零改成qq号。
277
热度 -
web解决方案
webjava???color='#e78608'>------解决方案--------------------oh,yes,youareright!color='#e78608'>------解决方案--------------------fen
74
热度 -
ASP.net使用了AJAX控件后,如何点击按钮弹出新窗口?
ASP.net使用了AJAX控件后,怎么点击按钮弹出新窗口?-Web开发/Ajax我用Response.Write("<script>window.open('Print.aspx','打印','location=no,resizable=yes,scrollbars=yes');</script>");会报错:“PageRequestManagerPa...
429
热度 -
查询表出现奇怪的有关问题
查询表出现奇怪的问题请问一下,我做了一个操作。从一个用户中导出一个表,然后导入另一个用户,现在出现的问题是,我新建的另外用户也能查询这个表了,这是什么问题呢?color='#e78608'>------解决方案--------------------SQL>SELECT*FROMdba_sys_privstWHEREt.grantee='DBA'ANDt.privilegeLIKE'%SEL...
79
热度 -
怎么调用别人的action
如何调用别人的action?求教一个js问题一个父窗口下用open的方式打开一个没有地址栏的子窗口,查看子窗口源码document.formname.action="page.vio?method=getinfo¶m="+pa;document.formname.submit();我想调用这个action,该如何写呢?color='#e78608'>------...
86
热度 -
点击登录按钮,跳转到登录的ViewController,为什么小弟我的不跳转呢,帮忙看上
点击登录按钮,跳转到登录的ViewController,为什么我的不跳转呢,帮忙看下C/C++code-(IBAction)btnLoginClick{LoginViewController*loginView=[[LoginViewControlleralloc]initWithNibName:@"LoginViewController"bundle:nil];//UINav...
9
热度 -
解决定时器在主线程不工作的有关问题
解决定时器在主线程不工作的问题NSTimer*timer=[NSTimertimerWithTimeInterval:2target:selfselector:@selector(someAction)userInfo:nilrepeats:YES];[[NSRunLoopmainRunLoop]addTimer:timerforMode:NSRunLoopCommonModes];
237
热度 -
system表空间上也有回退段?解决方案
system表空间上也有回退段?system表空间上也有回退段?user表空间上有吗?color='#e78608'>------解决方案--------------------YES
27
热度 -
在asp.net传值中出现有关问题
在asp.net传值中出现问题!Response.Write(String.Format("<scriptlanguage=JavaScript>window.open('DisplayInfo.aspx?path={0}','','height=330,width=560,resizable=no,z-look=yes,toolbar=yes,scrollbars=yes,...
4080
热度 -
iPhone/iPad Timer 应用
iPhone/iPadTimer使用//以下代码为每隔1.5秒执行一次autoPlay函数[NSTimerscheduledTimerWithTimeInterval:1.5target:selfselector:@selector(autoPlay)userInfo:nilrepeats:YES];
575
热度 -
iphone 暗藏输入法键盘
iphone隐藏输入法键盘...[textFieldsetDelegate:self];//监听自己...//点返回按钮-(BOOL)textFieldShouldReturn:(UITextField*)textField{[textFieldresignFirstResponder];//关闭输入法键盘returnYES;}
64
热度 -
showModalDialog窗口正中
showModalDialog窗口居中 设置iTop和iLeft属性,如下: functionopenTempleteSelector(url,iWidth,iHeight){ variTop=(window.screen.availHeight-20-iHeight)/2; variLeft=(window.screen.availWidth-10-iWidth)/2; window.s...
101
热度 -
IE上的模式窗口
IE下的模式窗口 <scriptlanguage="javascript"> if(window.opener==null){ window.opener=null; window.open('12.html','','location=no,toolbar=no,menubar=no,status=yes,resizable=yes,width='+screen.width+',h...
109
热度