@using(Html.BeginForm("AddNews","NewsMgr",FormMethod.Post,new{enctype="multipart/form-data"}))前台页面上使用form提交,但是HtmlAttribute必须有这个属性enctype="multipart/form-data"否则上传时提交到后台的Request.Files一直为空,count是0.后台页面收到请求后便可以..
分类:
Web程序 时间:
2014-05-08 10:52:02
阅读次数:
765
利用jQuery的ajax函数就可以实现异步上传图片了。一开始我是想在处理程序中,直接用context.Request.Files来获取页面中的input
file,但是不知道为什么一次获取不了。网上说的,Form中要设置enctype="multipart/form-data"和 method="...
分类:
Web程序 时间:
2014-05-08 07:46:26
阅读次数:
401
一、jQuery Mobile 列表视图:jQuery Mobile 中的列表视图是标准的
HTML 列表:有序列表 () 和无序列表 ()。1、创建列表向 或 元素添加
data-role="listview"。如需使这些项目可点击,请在每个列表项()中规定链接: ...
分类:
Web程序 时间:
2014-05-08 07:40:17
阅读次数:
423
jQuery Mobile 提供的一套图标可令您的按钮更具吸引力。1、为 jQuery Mobile
按钮添加图标如需向您的按钮添加图标,请使用 data-icon 属性:(您也可以在 或 元素中使用 data-icon 属性。) 搜索 下面...
分类:
Web程序 时间:
2014-05-08 07:35:07
阅读次数:
365
首先展示是我们的首界面。下面展示的是初级的代码及界面。using System;using
System.Collections.Generic;using System.ComponentModel;using System.Data; using
System.Drawing;using Sys...
分类:
其他好文 时间:
2014-05-08 07:32:09
阅读次数:
447
hive 中的union all是不能在sql语句的第一层使用的,否则会报Top level
UNION is not supported currently 错误;例如如下的方式:select id,name from user where type
= 1union allselect id,n...
分类:
其他好文 时间:
2014-05-08 07:17:42
阅读次数:
420
连接查询值得注意的是:字段前必须加表名,以便混淆1 -- 多表连接查询和子查询2 select
* from dbo.stu_info ,dbo.sname23 -- 加连接规则的查询 where4 sele...
分类:
数据库 时间:
2014-05-08 06:34:30
阅读次数:
795
最近看了几个 用 go 写的实现 gmail 发送邮件的程序,发现代码甚是简单。然后仔细研究了一下
smtp 协议,已经相关技术。1.go code调研go 的 "net/smtp"包的两个函数就可以了。func SendMail(addr string, a
Auth, from string, ...
分类:
其他好文 时间:
2014-05-08 06:23:22
阅读次数:
511
一、安装路径在哪? Android应用安装涉及到如下几个目录:
system/app系统自带的应用程序,无法删除。data/app用户程序安装的目录,有删除权限。安装时把apk文件复制到此目录。data/data存放应用程序的数据。data/dalvik-cache将apk中的dex文件安装到dal...
分类:
移动开发 时间:
2014-05-08 06:12:00
阅读次数:
567
using System;using
System.Collections.Generic;using System.Linq;using System.Text;using
System.Data;using System.Drawing;using System.IO;using System....
分类:
其他好文 时间:
2014-05-08 06:10:59
阅读次数:
395