总结

最近被抓去作wap网站了,心情很郁闷,好在今天基本完工。
可能作普通的web程序做惯了,对wap不是很感冒,不说这回事了。

总结一下
sql  ISNULL   最近学习了这个函数
SELECT AVG(ISNULL(price, $10.00)) FROM titles
把title表里面为空的price字段替换为$10.00。
又例如:set  @record=  isnull((select count(*) from MediaData where Name like '%' + @Search + '%'),0)
 
找出页面所有的textbox  foreach (Control ctl in this.Controls) { if (typeof(ctl)==typeof(TextBox))

还有一个弹出页面的问题  window.open   有时会被人拦截 
     <a href="#" target="_blank" class="txt_1" onClick="window.showModalDialog('1.html','','dialogWidth=350px;dialogHeight=195px;scroll=no')">
如果还会被人拦截  那就用层+js了。

你可能感兴趣的:(总结)