博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
asp.net mvc3开发系统点滴之二
阅读量:6614 次
发布时间:2019-06-24

本文共 1233 字,大约阅读时间需要 4 分钟。

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">

<html xmlns="" >

<head runat="server">
    <title>HotelTest</title>
</head>
<body>
    <div>
   <table>
            <tr>
                <th style="width: 150px">
                    景点名称
                </th>
                <th style="width: 150px">
                    景点编号
                </th>
                <th style="width: 150px">
                    景区编号
                </th>
            </tr>
            <% foreach (System.Data.DataRow dr in (ViewData["hotel"] as System.Data.DataTable).Rows)
               { %>
            <tr>
                <td>
                 <%= dr[2].ToString()%>
                </td>
                <td>
                   <%= dr[3].ToString()%>
                </td>
                <td>
                  <%= dr[4].ToString()%>
                </td>
            </tr>
            <% } %>
        </table>
    </div>
</body>
</html>

using System;

using System.Collections;
using System.Collections.Generic;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Ajax;

using SQSMvcSolution.Models;

using SQSMvcSolution.Commans;
using System.Web.Routing;
using SQSMvcSolution.Filters;
using System.Data;
using Discuz.Common;
using Discuz.Config;

namespace SQSMvcSolution.Controllers

{
    public class HotelController : Controller
    {
        //
        // GET: /Hotel/

        public ActionResult Index()

        {
            return View();
        }
        public ActionResult HotelTest(int id)
        {
            SQSMvcSolution.Models.BLL.Ticket Bl = new SQSMvcSolution.Models.BLL.Ticket();
            ViewData["hotel"] = Bl.GetHotelTb(id);
            return View();
        }
    }
}

转载地址:http://gneso.baihongyu.com/

你可能感兴趣的文章
iOS - Quartz 2D 第三方框架 Charts 绘制图表
查看>>
MM顾问的常见面试问题(ZZ)
查看>>
转:Windows 8上强制Visual Studio以管理员身份运行
查看>>
迟来的加勒比海盗3 观后
查看>>
类与对象 - PHP手册笔记
查看>>
谈一谈互联网创业补贴变味后的现象
查看>>
MapGIS转Shp文件的单位问题
查看>>
使用Karate轻松实现自动API测试
查看>>
React
查看>>
CentOS -bash: warning: setlocale: LC_MESSAGES: cannot change locale (en_US.UTF-8)
查看>>
编写一个基本的Android应用程序
查看>>
我的友情链接
查看>>
查看Linux操作系统安装的位数(getconf 命令应用)
查看>>
前后端中转服务remoteService的设计与实现
查看>>
ifstream读取文件失败和乱码问题
查看>>
Python信息采集器使用轻量级关系型数据库SQLite
查看>>
zookeeper中的exception的问题
查看>>
final+基本类型导致只编译常量类引起的错误
查看>>
分库分表的几种常见玩法及如何解决跨库查询等问题
查看>>
把GPS经纬度放入两个字符串,写入文件
查看>>