ASP.NET
文章平均质量分 80
浅笑Sunshine
对于asp.net的开发有浓厚的兴趣,平时一个人的时候喜欢弹吉他,喜欢听歌
展开
-
用存储过程向数据库存值
cs文件中的代码 //收看视频三个标准 //从页面传参数过来 int V1_BiaoZhou = Convert.ToInt32(TextBox1.Text); int V1_FeiZhi= Convert.ToInt32(TextBox4.Text); int V原创 2014-01-02 14:13:38 · 565 阅读 · 0 评论 -
asp.NET中常用到的一些操作功能代码段。。
CS代码using System;using System.Collections;using System.Configuration;using System.Data;using System.Linq;using System.Web;using System.Web.Security;using System.Web.UI;using System.W原创 2013-12-24 11:27:05 · 930 阅读 · 0 评论 -
用JS代码解决一个聊天系统聊天消息是否刷屏
今天解决了一个小问题,关于怎么使用JS代码判断聊天系统中聊天消息是否刷屏的问题解决代码如下: aspx中的代码:http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml"> --%>原创 2013-12-25 15:29:38 · 1765 阅读 · 0 评论 -
asp.net中页面显示当前系统时间(aspx)
当前系统时间: today = new Date(); function initArray() { this.length = initArra原创 2013-12-26 16:43:47 · 3390 阅读 · 0 评论 -
对于asp.netMVC3模式里面不解的地方总结
1,当一个页面上需要显示两个表中的数据时 首先我们应该在需要引用这些数据的控制器里面的index()方法里面调用DAl目录下的LeiBieDBAccess类里面的Get()方法。 public ActionResult Index() { Models.LeiBie[] LeiBieList = DAL.LeiBieDBAccess.Ge原创 2014-03-09 17:26:48 · 637 阅读 · 0 评论 -
asp.net生成验证码
登陆时验证码的制作(asp.net)1、显示样式:2.新建一个页,Default2.aspx3.在Page_load事件拷入如下代码stringtmp = RndNum(4);HttpCookiea =newHttpCookie("ImageV ", tmp); Response.Cookies.Add(a);this.ValidateCode(t转载 2014-04-22 16:07:00 · 545 阅读 · 0 评论