摘要:
阅读全文
摘要:
update b set memo = a.name from a,b where a.id = b.id --mssql的update :from语法 2 --a表 b表 结构分别 id ,name , id,memo 3 4 5 --b表的memo需要对照a表 关键ID相同就可以更新,语句如下 阅读全文
摘要:
最近碰到一些客户说,我传的产品图片怎么在网站上无法显示啊。图片也是正常的jpg格式呢。 是的,你传的图片是JPG的,但是怎么就显示不出来呢? 你找深圳网站建设的公司给你建了一个网站,然后在上传产品图片的时候,发现显示不了图片出来,这里有个小诀窍,你的图片模式问题。 同样是JPG格式的图片,你可能百思 阅读全文
摘要:
(1)使用CD命令进入AdminScripts文件夹。[如果不存在这个目录,需要在控制面版,程序,启用或关闭Windows功能中,将IIS6管理兼容性都选上] 示例:cd C:\Inetpub\AdminScripts cscript adsutil.vbs set w3svc/certcheckm 阅读全文
摘要:
@echo off color 0F @attrib -r "%windir%\system32\drivers\etc\hosts" @echo ######测试配置 beg >>"%windir%\system32\drivers\etc\hosts" @echo 59.213.55.39 ww 阅读全文
摘要:
List<string> data=new List<string>(new string[] { "1","2","3" } ); List<decimal> temp = data.ConvertAll<decimal>(delegate(string x) { return Convert.T 阅读全文
摘要:
List listcommand = new List();string sql = "update BMDMB set bmdmb_name=:bmdmb_name,parent_id=:parent_id where bmdmb_id=:bmdmb_id "; //stri... 阅读全文
摘要:
public bool IsMobile() { Regex RegexMobile = new Regex(@"(iemobile|iphone|ipod|android|nokia|sonyericsson|blackberry|samsung|sec\-... 阅读全文
摘要:
System.Threading.Thread thread1 = new System.Threading.Thread(delegate() { Web.BLL.banpaiconfig.VideoToMp4.Convert(Server.MapPath("/")... 阅读全文
摘要:
where trunc(to_date(DATETIME,'yyyy-MM-dd hh24:mi:ss'))=trunc(sysdate) 阅读全文