自定义控件定义控件以Label控件为例:1、首先在Common文件夹下添加Label.cs文件,其中代码如下://a.control的实体类必须继承NFinal.UserControl类
publicclassLabel:NFinal.UserControl
{
//b.因定格式,其中的泛型类必须为此控件类
public__Render__<Navigator>__render..
分类:
其他好文 时间:
2015-07-09 14:50:24
阅读次数:
81
自定义控件定义控件以Label控件为例:1、首先在Common文件夹下添加Label.cs文件,其中代码如下://a.control的实体类必须继承NFinal.UserControl类public class Label:NFinal.UserControl{ //b.因定格式,其中的泛型...
分类:
其他好文 时间:
2015-07-09 12:48:25
阅读次数:
142
创建模板1.新建Header.ascx用户控件,此控件就是模板,修改内容如下:<%@ControlLanguage="C#"AutoEventWireup="true"CodeBehind="Header.ascx.cs"Inherits="WebMvc.App.Views.Default.Common.Public.Header"%>
<HEADERclass=header>
我是头模板,<%=ViewBag.messa..
分类:
其他好文 时间:
2015-07-08 22:53:48
阅读次数:
226
创建模板1.新建Header.ascx用户控件,此控件就是模板,修改内容如下: 我是头模板, 以下是为了让编译器不出现错误警告而增加的内容,可以忽略.a.以上模版中,ViewBag.message变量是不存在的.为了让编译不出错,请在Header.ascx.cs文件中添加如下变...
分类:
其他好文 时间:
2015-07-08 18:39:33
阅读次数:
119
Git地址:https://github.com/markrendle/Simple.Data来源:http://bbs.nfinal.com/read-13
分类:
其他好文 时间:
2015-07-08 16:22:16
阅读次数:
114
AJAX返回我们经常会用到ajax,当我们想返回json时,需要这样写.context.Response.ContentType="application/json";context.Response.Write("{");context.Response.Write("\"code\":0,");context.Response.Write("\"data\":\"添加成功!\"");context.Response.Write("}")context.Re..
分类:
Web程序 时间:
2015-07-07 13:16:15
阅读次数:
163
AJAX返回我们经常会用到ajax,当我们想返回json时,需要这样写.1 context.Response.ContentType="application/json";2 context.Response.Write("{");3 context.Response.Write("\"code\"...
分类:
Web程序 时间:
2015-07-07 12:33:10
阅读次数:
149
用NFinal框架开发的项目类似于MVC的那种开发方式,有Controller层、Model层、View层,还包括表现层Web层,在NFinal开发的项目中真正执行的代码也就是Web层中的代码,Web中的代码是根据Controller与View模板中的代码生成的执行代码,我们只需要在Controller中写好逻辑,在View中..
分类:
其他好文 时间:
2015-07-04 17:00:56
阅读次数:
105
获取URL参数在控制器的方法中加入一些参数,例如user,然后输出.usingSystem;
usingSystem.Collections.Generic;
usingSystem.Web;
namespaceWebMvc.App.Controllers
{
publicclassSampleController:Controller
{
publicvoidShow(stringuser)
{
Writ..
分类:
Web程序 时间:
2015-07-04 16:51:12
阅读次数:
127
用NFinal框架开发的项目类似于MVC的那种开发方式,有Controller层、Model层、View层,还包括表现层Web层,在NFinal开发的项目中真正执行的代码也就是Web层中的代码,Web中的代码是根据Controller与View模板中的代码生成的执行代码,我们只需要在Controll...
分类:
其他好文 时间:
2015-07-04 11:10:36
阅读次数:
88