当前位置: 编程技术>WEB前端
本页文章导读:
▪hibernate3.0 DTD 定义路径问题 大家在用ssh框架搭建项目的时候,如果是否遇到过以下问题:
1.tomcat等容器启动时加载hibernate实体类的映射文件,特别慢,一个配置文件一个配置文件读,直到超时,或者长时间后才能启动;
2.........
▪IOS 上传图片到ASP.NET ASP.NET服务端的代码: 1. protected void Page_Load(object sender, EventArgs e)
2. {
3. if (Request.Files.Count == 0)
4. {
5. Response.Write("none file");
6. }
7. else
8. {
9. Htt.........
▪属性过滤器不完整 1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <script src="/blog_article/scripts/jquery-1.9.1.min.js"></script> 6 <style> 7 .ulcss { 8 background-color:gray; 9 font-size: 20px10 }11 </style>12.........
[1]hibernate3.0 DTD 定义路径问题
来源: 互联网 发布时间: 2013-11-06
大家在用ssh框架搭建项目的时候,如果是否遇到过以下问题:
1.tomcat等容器启动时加载hibernate实体类的映射文件,特别慢,一个配置文件一个配置文件读,直到超时,或者长时间后才能启动;
2.必须联网项目才能起来,否则读取配置文件时报错,联网后能够启动;
总结:
1.都是hibernate配置的问题,首先确定项目中所用的hibernate版本,然后根据版本确定映射文件中版本dtd的版本号还有网络地址,如下
2.确保项目中依赖的hibernate包中包含 hibernate-mapping dtd文件,与上边的版本对应,如下图
作者:frank0417 发表于2013-3-4 16:21:43 原文链接
阅读:48 评论:0 查看评论
[2]IOS 上传图片到ASP.NET
来源: 互联网 发布时间: 2013-11-06
ASP.NET服务端的代码:
1. protected void Page_Load(object sender, EventArgs e) 2. { 3. if (Request.Files.Count == 0) 4. { 5. Response.Write("none file"); 6. } 7. else 8. { 9. HttpPostedFile file = Request.Files["img"]; 10. String filename = Request.Form["name"]; 11. file.SaveAs(MapPath("~/"+filename+".png")); 12. 13. Response.Write("ok"); 14. } 15. }
作者:wangboxian 发表于2013-3-4 16:14:43 原文链接
阅读:45 评论:0 查看评论
[3]属性过滤器不完整
1 <!doctype html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <script src="/blog_article/scripts/jquery-1.9.1.min.js"></script>
6 <style>
7 .ulcss {
8 background-color:gray;
9 font-size: 20px
10 }
11 </style>
12 <title>JQuery小技巧--属性过滤器不完整</title>
13
14 <!-- 新窗口打开页面 -->
15 <script>
16 <!-- 将所有以 http:// 开头的链接从新窗口打开 -->
17 $(document).ready(function(){
18 //动态添加控件
19 $("<li><a href='http://www.sohu.com'>搜狐网</a></li>").appendTo("div.ulcss>ul");
20 $("div.ulcss>ul").append("<li><a href='http://www.163.com'>网易</a></li>");
21
22 <!-- 将链接属性为 rel=SelfViewOpen 以新窗口打开 -->
23 //JQuery [attribute=value] 属性过滤器,全字符匹配
24 $("a[rel='SelfViewOpen']").click(function(e){
25 //设置元素属性attr
26 $(this).attr("target","_self");
27 });
28
29 //JQuery [attribute^=value]属性过滤器,取出属性以指定字符串开头的元素
30 $("a[href^='http://']").attr("target","_blank");
31 //JQuery [attribute$=value]属性过滤器,取出属性以指定字符串结尾的元素
32 $("a[href$='edu.cn']").css("background-color","red");
33 //JQuery [attribute$=value]属性过滤器,取出属性以不包括指定字符串的元素
34 $("a[href!='http://']").append("<b>本地链接网站</b>");
35 });
36
37 </script>
38 <script>
39
40 $(document).ready(function(e) {
41 //JQuery [attribute=value] 属性过滤器,全字符匹配
42 $("a[rel='SelfViewOpen']").click(function(e){
43 //设置元素属性attr
44 $(this).attr("target","_self");
45 });});
46 </script>
47 </head>
48
49 <body>
50 <div > <span>网站导航</span><br/>
51 <ul>
52 <li> <a href="http://www.cnblogs.com" rel="SelfViewOpen" >博客园</a> </li>
53 <li> <a href="http://www.###.edu.cn">不好意思说</a></li>
54 <li> <a href="#">没有 http://</a></li>
55 </ul>
56 </div>
57 </body>
58 </html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <script src="/blog_article/scripts/jquery-1.9.1.min.js"></script>
6 <style>
7 .ulcss {
8 background-color:gray;
9 font-size: 20px
10 }
11 </style>
12 <title>JQuery小技巧--属性过滤器不完整</title>
13
14 <!-- 新窗口打开页面 -->
15 <script>
16 <!-- 将所有以 http:// 开头的链接从新窗口打开 -->
17 $(document).ready(function(){
18 //动态添加控件
19 $("<li><a href='http://www.sohu.com'>搜狐网</a></li>").appendTo("div.ulcss>ul");
20 $("div.ulcss>ul").append("<li><a href='http://www.163.com'>网易</a></li>");
21
22 <!-- 将链接属性为 rel=SelfViewOpen 以新窗口打开 -->
23 //JQuery [attribute=value] 属性过滤器,全字符匹配
24 $("a[rel='SelfViewOpen']").click(function(e){
25 //设置元素属性attr
26 $(this).attr("target","_self");
27 });
28
29 //JQuery [attribute^=value]属性过滤器,取出属性以指定字符串开头的元素
30 $("a[href^='http://']").attr("target","_blank");
31 //JQuery [attribute$=value]属性过滤器,取出属性以指定字符串结尾的元素
32 $("a[href$='edu.cn']").css("background-color","red");
33 //JQuery [attribute$=value]属性过滤器,取出属性以不包括指定字符串的元素
34 $("a[href!='http://']").append("<b>本地链接网站</b>");
35 });
36
37 </script>
38 <script>
39
40 $(document).ready(function(e) {
41 //JQuery [attribute=value] 属性过滤器,全字符匹配
42 $("a[rel='SelfViewOpen']").click(function(e){
43 //设置元素属性attr
44 $(this).attr("target","_self");
45 });});
46 </script>
47 </head>
48
49 <body>
50 <div > <span>网站导航</span><br/>
51 <ul>
52 <li> <a href="http://www.cnblogs.com" rel="SelfViewOpen" >博客园</a> </li>
53 <li> <a href="http://www.###.edu.cn">不好意思说</a></li>
54 <li> <a href="#">没有 http://</a></li>
55 </ul>
56 </div>
57 </body>
58 </html>
本文链接
最新技术文章: