上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: select * from (select * from order by ) where rownum=1; select * from (select * from order by desc) where rownum=1; ... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 在Oralce中我发现有add_months函数,加天数N可以用如下方法实现,select sysdate+N from dual 在Oralce中我发现有add_months函数,加天数N可以用如下方法实现,select sysdate+N from d... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(1883) 评论(0) 推荐(0) 编辑
摘要: 添加字段的语法:alter table tablename add (column datatype [default value][null/not null],….); 修改字段的语法:alter table tablename modify (col... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(5029) 评论(0) 推荐(0) 编辑
摘要: public string strToExcel = "none";public string strConter = "none";public string updateuid = "";public string fileContents;public ... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(13) 评论(0) 推荐(0) 编辑
摘要: Update Update XXX set XXX where 这种写法大家肯定都知道,才发现update和delete居然支持inner join的update方式,这个在表间关联来做更新和删除操作非常有用. 列子: Sql代码 upda... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(510) 评论(0) 推荐(0) 编辑
摘要: 1、针对浏览器记住密码 1).首先大部分浏览器都是根据表单域的type="password"来判断密码域的,所以针对这种情况可以采取“动态设置密码域”的方法: 复制代码代码如下: 解释:当这个文档框获取焦点时才将其变成密码域,这样浏览器... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(546) 评论(0) 推荐(0) 编辑
摘要: Try Dim WebClientObj As New System.Net.WebClient() Dim PostV... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 首选218.85.157.99 备选218.85.152.99 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 在使用VS2005或2008的时候。像这种线毕竟没有插件。 这种线只支持VS2010及以上 这是这种线的下载地址:http://download.csdn.net/detail/wybshyy/9605730 ------------------------... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 可控制导航下拉方向的jQuery下拉菜单代码 - 何问起 jQuery上弹菜单原文 首页 特效 推荐Demo 2首页特效导航菜单磨砂菜单导航柯乐义何问起EasyUIKeleyi时间日期时间日期时间日期时间日期时间日期焦点图焦点图焦点图焦点图焦点图tab标签t... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 在 Windows7(iis7.5)、Win2008(iis 7.0)和Win2003(iis 6.0) 中,默认设置是特别严格和安全的,这样可以最大限度地减少因以前太宽松的超时和限制而造成的攻击。 指定 ASP 请求的实体主体中允许大小为 200,000... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 昨天用户反应系统中有问题,问题就在于翻页的时候,系统会报以下错误。但是我们的系统已经上线1年多了,从来没出现过错误,怎么会出现错误呢? 于是开始检测,查找原因。 1. 出错提示 “/”应用程序中的服务器错误。 验证视图状态 MAC 失败。如果... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(292) 评论(0) 推荐(0) 编辑
摘要: deny delete on a1test to public --禁止删除表里所有数据 grant delete on a1test to public --解除禁止删除表的权限 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(27) 评论(0) 推荐(0) 编辑
摘要: XML实际路径:E:\Project\eip\WebRoot\PowerEIPApplication\OnlienQuery\aul.xml XML内容: ? 10000001 .VB代码 Imports System.XmlPa... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(163) 评论(0) 推荐(0) 编辑
摘要: $get方式提交表单get() 方法通过远程 HTTP GET 请求载入信息格式$(selector).get(url,data,success(response,status,xhr),dataType)请求 test.php 网页,传送2个参数,忽略返回值... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(59) 评论(0) 推荐(0) 编辑
摘要: function test(){ $.ajax({ //提交数据的类型 POST GET type:"POST", //提交的网址 url:"testLogin.asp... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 无标题文档 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(26) 评论(0) 推荐(0) 编辑
摘要: /// /// FtpWeb 的摘要说明/// public class FtpWeb{ string ftpServerIP; string ftpRemotePath; string ftpUserID; string ftpPas... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(27) 评论(0) 推荐(0) 编辑
摘要: VB.NET版Imports System.IOImports System.IO.Directory ' ====================================================== ' 实现一个静态方法将指定文... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(755) 评论(0) 推荐(0) 编辑
摘要: 先在引用里,右击添加引用。COM选项下找到Microsoft WinHTTP Service, version 5.1 Imports System.WebImports System.TextImports System.I... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 中文引号直接放在字符串里面即可,英文引号用Chr(34)表示,如 Dim phrase As String = "a" & Chr(34) & "b"Dim strparam As String = "inputJson :{" strpa... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(786) 评论(0) 推荐(0) 编辑
摘要: 转:http://blog.csdn.net/yelbosh/article/details/7486636 这里我们要发送一个POST请求,并接受返回的数据: namespace Yelbosh{class Post{st... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(4395) 评论(0) 推荐(0) 编辑
摘要: 简单GET请求: string url = "http://i******com.cn/fcps-uat/rest/eip/eipNotice?inputJson="; System.Net.WebRequest ... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(306) 评论(0) 推荐(0) 编辑
摘要: C#和vb.net代码相互转换 http://converter.telerik.com/ 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(4) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Text;using System.Data.SqlClient;using System.Data;using System.Config... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 先右击项目,添加引用。COM选项卡下搜System.Data.OracleClient这个。引用到项目里。 如果下方代码报 ORA-06413连接未打开的错误。请参考我上篇日志 using System;using System.Collections... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 转自:http://liaozenghui.com/asp.net/2015/01/21/ORA-06413%E8%BF%9E%E6%8E%A5%E6%9C%AA%E6%89%93%E5%BC%80%E7%9A%84%E9%94%99%E8%AF%AF.ht... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(1544) 评论(0) 推荐(0) 编辑
摘要: 1.官网:http://developer.android.com/sdk/index.html 2、ADT组件在线安装(只能安装最新的ADT) 下面这一组就可以用。2016年05月25日 Name: Android Plugin L... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(635) 评论(0) 推荐(0) 编辑
摘要: Excel读取时单元格里同时有数字和字母或符号时,如果无法取到值 注册完即可 32位电脑:注册Excel ISAM在“运行”对话框中:Regsvr32 c:\WINDOWS\system32\msexcl40.dll 64位电脑:注册Excel ISAM在... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(546) 评论(0) 推荐(0) 编辑
摘要: 如果提示“找不到可安装的ISAM”参考我下一个文章 Sub TrnSAAccDataImExcel() Dim sDept As String = "" Dim sCode As String = "" Tr... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 环境:win7+iis7+Office2007 在asp.net网站中导出Excel文件后,再把文件导入到数据库中。 读取Excel文件时,打开连接出错。 错误为:外部表不是预期的格式 解决:检查了一下,导出的Excel是标准文件不是html,没错,... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(1517) 评论(0) 推荐(0) 编辑
摘要: jQuery 遍历函数包括了用于筛选、查找和串联元素的方法。 函数 描述 .add() 将元素添加到匹配元素的集合中。 .andSelf() 把堆栈中之前的元素集添加到当前集合中。 .children() 获得匹配元素集合中每个元素的所有子元素。 .clo... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 把以下内容保存为一个.bat文件。双击执行 @echo off echo 正在清除系统垃圾文件,请稍等...... del /f /s /q %systemdrive%\*.tmp del /f /s /q %systemdrive%\*._mp de... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(463) 评论(0) 推荐(0) 编辑
摘要: //ASP.NET后台页面跳转 Page.ClientScript.RegisterStartupScript(Page.GetType(), "", ""); //后台弹出确定框 ClientScript.RegisterStartupScript... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 1. 简述 private、 protected、 public、 internal 修饰符的访问权限。 答 . private : 私有成员, 在类的内部才可以访问。 protected : 保护成员,该类内部和继承类中可以访问。 p... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 参数解释: js脚本结束 利用Response.Write将JavaScript写出 //关闭,父窗口弹出对话框,子窗口直接关闭 Response.Write(""); //关闭,父窗口和子窗口都不弹出对话框,直接关闭 Respo... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 转:http://www.cnblogs.com/ncellit/p/5541501.html public static bool SendEmail(string mailTo, string mailSubject, string mailConten... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 转自http://www.cnblogs.com/zhangjd/p/5673950.html 两个方法 一、实现DataTable数据导出到本地,需要自己传进去导出的路径。 /// /// DataTable导出到Excel/// /// DataTab... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(221) 评论(0) 推荐(0) 编辑
摘要: Page.ClientScript.RegisterStartupScript(Page.GetType(), "message1", "") Page.ClientScript.RegisterStartupScript(Page.GetType()... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(29) 评论(0) 推荐(0) 编辑
摘要: ?o┈寂! ~~?o┈寞! ~~?o┈让! ~~?o┈俄! ~~?o┈拿! ~~?o┈起! ~~?o┈那! ~~?o┈放! ~~?o┈下! ~~?o┈已! ~~?o┈久! ~~?o┈的! ~~?o┈鈊! ~~?o┈事! ~~?o┈寂! ~~! ~~寞?o┈?... 阅读全文
posted @ 2022-03-23 08:46 离。 阅读(165) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页