上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 19 下一页

2013年9月2日

oracle 11g r2安装到 server2003 https://localhost:1158/em 无法显示该网页

摘要: 服务都起来了,但是还是打不开,显示无法显示该网页(如图)在网上看了半天,最好看到,换个浏览器就行了,装个搜狗上去,结果真的打开了。。。。神奇我很奇怪????有木有大虾解释一下呢? 阅读全文

posted @ 2013-09-02 18:00 中子持心 阅读(313) 评论(0) 推荐(0) 编辑

2013年8月31日

oracle 关于sqlplus的初始化配置

摘要: 1 define _editor=NotePad 2 set serveroutput on size 1000000 3 4 set long 200 5 set linesize 500 6 7 set pagesize 9999 8 set trimspool on 9 col Name format a8010 set termout off11 12 /*col plan_plus_exp format a20*/13 14 15 /*设置当前位置信息*/16 col global_name new_value gname17 define gname=idle18 colum... 阅读全文

posted @ 2013-08-31 09:52 中子持心 阅读(1089) 评论(0) 推荐(0) 编辑

2013年8月27日

从vs中粘贴代码到word出现乱码(转换工具)

摘要: protected void ChangeTextCode() { //取得剪贴板内容 IDataObject dataObject = Clipboard.GetDataObject(); if (dataObject.GetDataPresent(DataFormats.Rtf)) { //取出RTF格式 string rtf = dataObject.GetData(DataFormats.Rtf) as string; ... 阅读全文

posted @ 2013-08-27 09:57 中子持心 阅读(693) 评论(0) 推荐(0) 编辑

动软代码生成器使用

摘要: 1.生成数据库文档2.连接oracle点击下一步3.生成代码 阅读全文

posted @ 2013-08-27 09:43 中子持心 阅读(153) 评论(0) 推荐(0) 编辑

2013年8月25日

绑定silverlight datagrid后显示很细的空白行 解决方案

摘要: 1.datagrid如果是在xaml中写的,请检查 binding 中绑定的字段是否大写2.绑定一个list ,注意必须是属性才ok,如果是定义的public变量则不认。能显示时student定义方式 public class Student { public string ID { get; set; } public string NAME { get; set; } public Student(int id, string name) { this.ID = id.ToString();... 阅读全文

posted @ 2013-08-25 14:10 中子持心 阅读(243) 评论(1) 推荐(0) 编辑

2013年8月12日

jquery-调用后台代码

摘要: 1.新建demo.aspx页面。2.首先在该页面的后台文件demos.aspx.cs中添加引用。using System.Web.Services;3.无参数的方法调用.大家注意了,这个版本不能低于.net framework 2.0。2.0已下不支持的。后台代码:[WebMethod] public static string SayHello() { return "Hello Ajax!"; } JS代码:$(function() { $("#btnOK").click(function() { $.... 阅读全文

posted @ 2013-08-12 14:21 中子持心 阅读(223) 评论(0) 推荐(0) 编辑

2013年8月7日

插入鼠标禁用触摸板

摘要: 记得以前用过一个synaptics的驱动,自带有插入USB鼠标禁用触控板的选项的,有些没有自带.1.synaptics的驱动有些自带“插入usb鼠标禁用触摸板功能” 而有些没有带着个功能如图如果你发现自己机器上没有下图中红色方框区的功能,那么用一下代码放到.txt文档中然后改扩展名为.reg 运行导入到注册表中。-----------------------------------------------------------------------------------------------------------------------------------复制下面的代码Windo 阅读全文

posted @ 2013-08-07 21:44 中子持心 阅读(511) 评论(0) 推荐(0) 编辑

批量替换文本的工具

摘要: 1.功能:给出一个文件夹,能够替这个文件夹下所有.cs文件中指定的字符串为新的字符串(文件类型当然可以改了)2.Form1.cs代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.IO;namespace ReplaceText{ public partial c... 阅读全文

posted @ 2013-08-07 19:38 中子持心 阅读(277) 评论(0) 推荐(0) 编辑

wcf异常显示错误到客户端

摘要: 0.当错误没有传到客户端时情形解决方法1.配置serviceBehaviors,将includeExceptionDetailInFaults设置为true2.在服务上的ServiceBehaviorAttribute里面设置IncludeExceptionDetailInFaults 阅读全文

posted @ 2013-08-07 11:25 中子持心 阅读(138) 评论(0) 推荐(0) 编辑

2013年8月6日

文件以二进制存入数据库和从数据库读取二进制文件

摘要: if (FileUpload1.FileContent != null) { int len = (int)FileUpload1.FileContent.Length; string path = Server.MapPath("~/test/xx.docx");//"@d:\\xx.docx"; FileUpload1.SaveAs( path); FileStream fs = new FileStream(path,FileMode.Open,FileAccess.R... 阅读全文

posted @ 2013-08-06 10:15 中子持心 阅读(562) 评论(0) 推荐(0) 编辑

上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 19 下一页

导航