概述
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Web;
using System.Web.Mvc;
using System.Windows.Forms;
namespace _3._2._8使用Action返回值.Controllers
{
public class ActionResultController : Controller
{
// GET: ActionResult
public ActionResult Index()
{
return View();
}
public ActionResult Json()//返回一个JsonResult格式数据
{
var book = new { BookId = 1, BookName = "MVC框架", Author = "何腾飞", PublishDate = DateTime.Now };
return Json(book,JsonRequestBehavior.AllowGet);
}
public ActionResult JavaScript()//返回一个JavaScriptResult格式数据
{
string js = "alert('弹出一个窗口')";
return JavaScript(j
最后
以上就是漂亮爆米花为你收集整理的c# 带返回值的action_C#使用Action方法六种返回值的全部内容,希望文章能够帮你解决c# 带返回值的action_C#使用Action方法六种返回值所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复