资源简介
简单的数据提交,通过Models类传输数据,生成个人简历,简单代码 ,仅供学
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace WebApplication1.Controllers
{
public class HtmlController : Controller
{
// GET: Home
public ActionResult Index()
{
return View();
}
// GET: Home/Details/5
public ActionResult GetData(String username String[] like String photo String mydate String tel
String pac String native String school String myemail String age String academic String name
String qiuzhiyixiang String[] yuyanlei String[] ruanjianlei String[] rongyulei)
{
ViewBag.username = username;
ViewBag.like = like;
ViewBag.photo = Request.Files[“photo“].FileName;
ViewBag.mydate = mydate;
ViewBag.tel = tel;
ViewBag.pac = pac;
ViewBag.native = native;
ViewBag.school = school;
ViewBag.myemail = myemail;
ViewBag.age = age;
ViewBag.academic = academic;
ViewBag.name = name;
ViewBag.qiuzhiyixiang = qiuzhiyixiang;
ViewBag.yuyanlei = yuyanlei;
ViewBag.ruanjianlei = ruanjianlei;
ViewBag.rongyulei = rongyulei;
Upload();
return View();
}
// GET: Home/Create
public ActionResult Upload()
{
HttpPostedFilebase file = Request.Files[“photo“];
if (file == null) return Content(“上传失败“);
var fileName = Path.Combine(Request.MapPath(“/images“)
Path.GetFileName(file.FileName));
try
{
file.SaveAs(fileName);
return Content(“上传成功“);
}
catch
{
return Content(“上传失败“);
}
// return View();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-11-01 10:56 个人简历\
目录 0 2018-11-01 10:55 个人简历\Controllers\
文件 2039 2018-09-26 21:49 个人简历\Controllers\HtmlController.cs
目录 0 2018-11-01 10:56 个人简历\Models\
文件 854 2018-10-11 00:58 个人简历\Models\Person.cs
目录 0 2018-11-01 10:58 个人简历\Views\
目录 0 2018-11-01 10:56 个人简历\Views\Html\
文件 4344 2018-09-26 22:15 个人简历\Views\Html\GetData.cshtml
文件 6964 2018-09-26 21:53 个人简历\Views\Html\Index.cshtml
目录 0 2018-11-01 10:58 个人简历\Views\Shared\
文件 333 2018-09-26 21:37 个人简历\Views\Shared\Error.cshtml
文件 1708 2018-10-28 11:00 个人简历\Views\Shared\_Layout.cshtml
相关资源
- MVC图片上传
- Apache Dbutils +springmvc 框架demo代码
- 微信引导用户右上角打开浏览器,访
- S7.Net.dll
- 传智播客.Net教学课件完整版
- 最简单的用户登录与注册系统 spring
-
spring-code-ba
sed - H5 调用 扫描二维码,兼容IOS安卓
- mvc模式用户注册及登录
- 移动H5前端性能优化指南
- AutoCAD.NET开发教程
- zxing.net 0.14.0.0
-
xm
l操作DLL - 中控考勤机签到程序
- H5实现的点餐页面
- 贝塞尔曲线生成工具
- vue实现单选、多选、弹窗等功能
- 基于.net的网络爬虫
- js css 实现的登录注册页面
-
基于xm
l的留言本 - jboss-3.2.1_tomcat-4.1.24.zip
- MVC4入门经典视频2.5G60节课
- 使用canvas写的时间轴插件,可以实现
- 基于.NET的酒店管理系统
- InTheHand.Net.Personal.dll .Net 4.0版本
- SpringMVC最新最详细思维导图 (2).x
-
完美的.NET fr
amework卸载工具支持卸载 - .net简体繁体转换
- 计算机图形学源码DDA直线、中点直线
- windows server 2008 部署MVC5程序的方法
评论
共有 条评论