05 2013 档案

摘要:客户端PLSQL Developer连接远程数据库Oracle将主机改为自己的IP,然后点击然后自己随便起一个数据名字然后点击文件—保存网络配置,然后重启监听服务当你在打开PLSQLDeveloper时会报错这是去掉这里,因为监听服务里面默认为ORCL,输入用户名和口令然后点击确定然后创建一个用户给将要连接你数据库的客户端客户端连接点击下一步点击下一步点击下一步点击下一步点击下一步点击下一步点击下一步点击下一步然后去你的PLSQLDeveloper登陆访问点击确定,就可以登陆了,这样就访问成功了 阅读全文
posted @ 2013-05-31 11:12 奇奇博客 阅读(221) 评论(0) 推荐(0) 编辑
摘要:下载地址http://download.csdn.net/detail/shang_111111/5485175 阅读全文
posted @ 2013-05-31 07:57 奇奇博客 阅读(119) 评论(0) 推荐(0) 编辑
摘要:前台代码: <Grid x:Name="LayoutRoot" Background="#666"> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <!--TitlePanel 包含应用程序的名称和页标题--> <StackPanel x:Name="TitlePane 阅读全文
posted @ 2013-05-30 22:34 奇奇博客 阅读(198) 评论(0) 推荐(0) 编辑
摘要:指定跳转到哪一页NavigationService.Navigate(new Uri("/EditPage.xaml?sno=" + no, UriKind.Relative));接收传过来的值string sno = NavigationContext.QueryString["sno"]; 阅读全文
posted @ 2013-05-30 22:27 奇奇博客 阅读(134) 评论(0) 推荐(0) 编辑
摘要:前台代码: <!--LayoutRoot 是包含所有页面内容的根网格--> <Grid x:Name="LayoutRoot" Background="#eee"> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <Grid x:Name="ContentPanel&qu 阅读全文
posted @ 2013-05-30 22:23 奇奇博客 阅读(202) 评论(0) 推荐(0) 编辑
摘要:后台代码: Clock myClock = new Clock(); public Form1() { InitializeComponent(); } private void btnBrowse_Click(object sender, EventArgs e) { DialogResult result = openFileDialog1.ShowDialog(); if (result.ToString() == "OK") { txtMusicPath.Text = openFil... 阅读全文
posted @ 2013-05-30 22:13 奇奇博客 阅读(166) 评论(0) 推荐(0) 编辑
摘要:下载地址http://download.csdn.net/detail/shang_111111/5484709 阅读全文
posted @ 2013-05-30 22:01 奇奇博客 阅读(115) 评论(0) 推荐(0) 编辑
摘要:static void Main(string[] args) { List<Computer> list = GetComputer(); Console.WriteLine("请输入要购买电脑的信息 如:品牌、型号、价位、颜色"); string writeInfo = Console.ReadLine(); List<Computer> showComputer = new List<Computer>(); foreach (Computer item in list) { if (writeInfo ==... 阅读全文
posted @ 2013-05-29 09:22 奇奇博客 阅读(189) 评论(0) 推荐(0) 编辑
摘要:<script type="text/javascript"> $(function () { $.ajax({ type: "post", contentType: "application/json", url: "WebService1.asmx/GetListProvince", Data: "{}", success: function (result) { var strDrop = ''; for (var i = 0; i < resul... 阅读全文
posted @ 2013-05-28 10:42 奇奇博客 阅读(341) 评论(0) 推荐(0) 编辑
摘要:前台:<div> <table> <tr> <td>地址:</td> <td> <asp:DropDownList ID="dropProvince" runat="server" AutoPostBack="True" onselectedindexchanged="dropProvince_SelectedIndexChanged"> </asp:DropDownList>省 </td> <t... 阅读全文
posted @ 2013-05-28 10:38 奇奇博客 阅读(323) 评论(0) 推荐(0) 编辑
摘要:<title></title> <style type="text/css"> .btnCss { text-decoration: none; color: Blue; border:none; cursor:pointer; } .btnBg { text-decoration: none; color: Black; border:none; cursor:pointer; } </style> <script src="js/Jquery1.7.js" type="... 阅读全文
posted @ 2013-05-28 10:29 奇奇博客 阅读(121) 评论(0) 推荐(0) 编辑
摘要:在控制台输出using System.Management; 添加引用 在该解决方案下的引用右击添加 System.Management;Double CPUtprt = 0; System.Management.ManagementObjectSearcher mos = new System.Management.ManagementObjectSearcher(@"root\WMI", "Select * From MSAcpi_ThermalZoneTemperature"); try { foreach (ManagementOb... 阅读全文
posted @ 2013-05-22 11:19 奇奇博客 阅读(245) 评论(0) 推荐(0) 编辑
摘要:<script src="js/jquery-1.9.1.js" type="text/javascript"></script> <script type="text/javascript"> $(function () { $('#btnDate').click(function(){ WebApplication1.WebService1.GetDateTime(onSuccess, onFailed); }) function onSuccess(result) { $(&# 阅读全文
posted @ 2013-05-22 11:15 奇奇博客 阅读(348) 评论(0) 推荐(0) 编辑
摘要:<script src="js/jquery-1.9.1.js" type="text/javascript"></script> <script type="text/javascript"> $(function () { function GetUser() { WebApplication1.WebService1.GetCountPerson(onSuccess, onFailed); } function onSuccess(result) { $('#spcount') 阅读全文
posted @ 2013-05-22 10:34 奇奇博客 阅读(205) 评论(0) 推荐(0) 编辑
摘要:<title></title> <style type="text/css"> #mydiv{ width:900px; background-color:#444;} img{ width:200px; height:200px;} ul{ list-style-type:none;} ul li{ display:inline;} </style> <script src="js/Jquery1.7.js" type="text/javascript"></scri 阅读全文
posted @ 2013-05-22 10:25 奇奇博客 阅读(139) 评论(0) 推荐(0) 编辑
摘要:<style type="text/css"> img { width: 100px; height: 100px; } #mydiv { width: 500px; height: 300px; border: solid 1px red; } #mydiv2 { width: 500px; height: 300px; border: solid 1px red; } </style> <script src="js/Jquery1.7.js" type="text/javascript">&l 阅读全文
posted @ 2013-05-22 07:52 奇奇博客 阅读(124) 评论(0) 推荐(0) 编辑
摘要:<head> <title></title> <link href="css/cloud-zoom.css" rel="stylesheet" type="text/css" /> <script src="js/Jquery1.7.js" type="text/javascript"></script> <script src="js/cloud-zoom.1.0.2.js" type=" 阅读全文
posted @ 2013-05-20 09:40 奇奇博客 阅读(94) 评论(0) 推荐(0) 编辑
摘要:<head> <title></title> <style type="text/css"> #mydiv ul{ list-style-type:none;} #mydiv ul li{ display:inline;} #mydiv{ width:500px; border:solid 1px #444; background-color:#333;} </style> <link href="css/nf.lightbox.css" rel="stylesheet" 阅读全文
posted @ 2013-05-20 09:37 奇奇博客 阅读(200) 评论(0) 推荐(0) 编辑
摘要:<link href="css/jquery.ui.base.css" rel="stylesheet" type="text/css" /> <link href="css/jquery.ui.theme.css" rel="stylesheet" type="text/css" /> <script src="http://maps.google.com/maps/api/js?sensor=false" type=&qu 阅读全文
posted @ 2013-05-20 09:21 奇奇博客 阅读(187) 评论(0) 推荐(0) 编辑
摘要:<head> <title></title> <link href="css/jquery.ui.base.css" rel="stylesheet" type="text/css" /> <link href="css/jquery.ui.theme.css" rel="stylesheet" type="text/css" /> <script src="js/jquery-1.9.1.js&qu 阅读全文
posted @ 2013-05-20 09:15 奇奇博客 阅读(172) 评论(0) 推荐(0) 编辑
摘要:<link href="css/jquery.autocomplete.css" rel="stylesheet" type="text/css" /> <script src="Jquery1.7.js" type="text/javascript"></script> 下面 这是一个jQuery插件 <script src="jquery.autocomplete.js" type="text/javascript&qu 阅读全文
posted @ 2013-05-20 08:44 奇奇博客 阅读(141) 评论(0) 推荐(0) 编辑
摘要:<script src="Jquery1.7.js" type="text/javascript"></script> <script src="jquery.validate.js" type="text/javascript"></script> <script src="messages_cn.js" type="text/javascript"></script> <script type= 阅读全文
posted @ 2013-05-07 20:51 奇奇博客 阅读(176) 评论(0) 推荐(0) 编辑
摘要:<title></title> <style type="text/css"> .imgclass{ width:300px; height:300px; border:solid 1px red;} </style> <script src="jquery-1.9.1.js" type="text/javascript"></script> <script type="text/javascript"> $(function () 阅读全文
posted @ 2013-05-06 20:28 奇奇博客 阅读(208) 评论(0) 推荐(0) 编辑
摘要:<title></title> <style type="text/css"> table{border:1px solid #666;} table td{border:1px solid #eee;width:200px;height:200px;} img{width:200px;height:200px;border:none;position:relative;} </style> <script src="jquery-1.9.1.js" type="text/javascrip 阅读全文
posted @ 2013-05-06 20:25 奇奇博客 阅读(161) 评论(0) 推荐(0) 编辑
摘要:<title></title> <style type="text/css"> .imgclass{ width:300px; height:300px; border:solid 1px red;} </style> <script src="jquery-1.9.1.js" type="text/javascript"></script> <script type="text/javascript"> $(function () 阅读全文
posted @ 2013-05-06 20:23 奇奇博客 阅读(189) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示