摘要: 设置链接 NavigateUrl 填写链接 text 属性 为显示内容 阅读全文
posted @ 2016-02-17 10:44 超级学渣渣 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 我百度到的答案,原文请点击 错误信息: WebForms UnobtrusiveValidationMode 需要“jquery”ScriptResourceMapping。请添加一个名为 jquery (区分大小写)的 ScriptResourceMapping。 说明: 执行当前 Web 请求期 阅读全文
posted @ 2016-02-15 19:27 超级学渣渣 阅读(2411) 评论(0) 推荐(1) 编辑
摘要: 在登陆界面将需要显示的信息存储在session中,通过session显示出来 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using 阅读全文
posted @ 2016-02-15 18:02 超级学渣渣 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 按照学号查找显示信息,我现在也不知道各部分代表的含义,先记下来 阅读全文
posted @ 2016-02-15 17:46 超级学渣渣 阅读(847) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using Syste 阅读全文
posted @ 2016-02-15 17:38 超级学渣渣 阅读(500) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5 using System.Data.SqlClient;//连接数据库必须的 6 using System.C 阅读全文
posted @ 2016-02-15 17:37 超级学渣渣 阅读(374) 评论(0) 推荐(0) 编辑
摘要: You are given array ai of length n. You may consecutively apply two operations to this array: remove some subsegment (continuous subsequence) of lengt 阅读全文
posted @ 2016-02-14 11:26 超级学渣渣 阅读(440) 评论(0) 推荐(0) 编辑
摘要: A. Robot Sequence time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Calvin the robot lies 阅读全文
posted @ 2016-02-14 10:28 超级学渣渣 阅读(290) 评论(0) 推荐(0) 编辑
摘要: using System.Data.SqlClient;//连接数据库必须的 using System.Configuration; CommandType所在的命名空间 system.data; Preparecommand 命名空间 system.data 阅读全文
posted @ 2016-02-13 14:42 超级学渣渣 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 二分图染色 b点跟除自身外所有的点连接,共n-1个,首先把连接n-1个的点全部设为b点,其它点任意一点设为a,与a相连的都是a点,剩余为c点。最后验证是否成立。 验证条件为,所有连接的点之间的差值的绝对值不超过1,未连接的点之间的差值的绝对值都大于1. 1 #include<bits/stdc++. 阅读全文
posted @ 2016-02-13 09:08 超级学渣渣 阅读(401) 评论(0) 推荐(0) 编辑