上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 29 下一页
摘要: // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory logge... 阅读全文
posted @ 2017-09-25 15:29 shiningrise 阅读(919) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/i6first/p/5123995.html 阅读全文
posted @ 2017-09-24 23:24 shiningrise 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-09-24 17:44 shiningrise 阅读(233) 评论(0) 推荐(0) 编辑
摘要: if object_id('tempdb..#tempTable') is not null Begin drop table #tempTable End SELECT TOP 1000 [校区],[学年],[考试年级],[考试类别],avg(语文含挑战) '平均分',STDEV(语文含挑战) '标准差' into #tempTable FROM [SchoolAnalyze].[dbo]... 阅读全文
posted @ 2017-09-24 16:26 shiningrise 阅读(356) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/keepfool/ 阅读全文
posted @ 2017-09-23 16:27 shiningrise 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 重置 MySQL 自增列 AUTO_INCREMENT 初时值 注意, 使用以下任意方法都会将现有数据删除. 方法一: 1 2 (好处, 可以设置 AUTO_INCREMENT 为任意值开始) 提示:如果表列和数据很多, 速度会很慢, 如90多万条, 会在10分钟以上. 方法二: 1 (好处, 简单 阅读全文
posted @ 2017-09-22 20:29 shiningrise 阅读(8751) 评论(0) 推荐(0) 编辑
摘要: 1.什么是ImageProcessor.Web ImageProcessor.Web是基于ImageProcessor的web图像处理模块,允许开发者使用URL查询字符串参数的方式作为指令执行图像处理。 最新版有些问题,请大家使用4.5版本 2.常用功能 完整功能请参见官方文档:http://ima 阅读全文
posted @ 2017-06-26 20:23 shiningrise 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 210.72.145.44 (国家授时中心服务器IP地址)133.100.11.8 日本 福冈大学time-a.nist.gov 129.6.15.28 NIST, Gaithersburg, Maryland time-b.nist.gov 129.6.15.29 NIST, Gaithersbu 阅读全文
posted @ 2017-05-27 16:36 shiningrise 阅读(749) 评论(0) 推荐(0) 编辑
摘要: http://cn.filegee.com/index.html 阅读全文
posted @ 2017-05-24 13:41 shiningrise 阅读(144) 评论(0) 推荐(0) 编辑
摘要: sudo su 有冲突 全部回答r http://www.hustoj.com/?p=47 OJ技术思考:评测安全 https://zhuanlan.zhihu.com/p/26984739 阅读全文
posted @ 2017-05-22 19:30 shiningrise 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-05-21 12:57 shiningrise 阅读(597) 评论(0) 推荐(1) 编辑
摘要: 1.什么是ImageProcessor.Web ImageProcessor.Web是基于ImageProcessor的web图像处理模块,允许开发者使用URL查询字符串参数的方式作为指令执行图像处理。 最新版有些问题,请大家使用4.5版本 2.常用功能 完整功能请参见官方文档:http://ima 阅读全文
posted @ 2017-05-21 12:41 shiningrise 阅读(341) 评论(0) 推荐(0) 编辑
摘要: git clone --bare http://git.rcrtm.com/git/dianli.git git clone --mirror https://git.oschina.net/candoo/dianli.git git push --mirror https://git.oschin 阅读全文
posted @ 2017-05-16 16:24 shiningrise 阅读(352) 评论(0) 推荐(0) 编辑
摘要: http://docs.topshelf-project.com/en/latest/index.html 我曾经把名称错为Topself 阅读全文
posted @ 2017-05-05 20:58 shiningrise 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 应用程序脱机 系统升级维护中. 注意事项: (1)App_Offline.htm 不能小于 512 字节。 (2)IIS 不能 Stop。 (3)只有对.aspx文件的请求才自动转到App_Offline.htm文件;如果请求的是.htm文件,则不会转到App_Offline.htm 阅读全文
posted @ 2017-04-26 10:18 shiningrise 阅读(192) 评论(0) 推荐(0) 编辑
摘要: ... 阅读全文
posted @ 2017-04-25 20:49 shiningrise 阅读(248) 评论(0) 推荐(0) 编辑
摘要: protected override string AfterAddJS() { return CanDoo.FineUI.Utility.AfterSaveJS_ReloadData(EntityId)+CanDoo.FineUI.Utility.AfterSaveJS_ReloadFather(); } ... 阅读全文
posted @ 2017-04-24 20:37 shiningrise 阅读(126) 评论(0) 推荐(0) 编辑
摘要: ListHelper.BindEnumDDL(typeof(ViewTypeEnum).ToDescription(), ListItemHelper.EnumToListItems(typeof(ViewTypeEnum)), -1L, this.ed_ViewType, true); 阅读全文
posted @ 2017-04-21 14:35 shiningrise 阅读(104) 评论(0) 推荐(0) 编辑
摘要: string filePath = HttpContext.Current.Server.MapPath("~/log4net.config"); FileInfo fileInfo = new FileInfo(filePath); XmlConfigurator.ConfigureAndWatch(fileInfo); Logger.In... 阅读全文
posted @ 2017-04-11 20:50 shiningrise 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 源码下载 注意: 这里的分页执行的语句是: SELECT * FROM (SELECT ROW_NUMBER() OVER (ORDER BY Degree DESC) peta_rn, * FROM Achievement WHERE Course=N'C#程序设计') peta_paged WH 阅读全文
posted @ 2017-04-11 13:38 shiningrise 阅读(241) 评论(0) 推荐(0) 编辑
摘要: using (var db = DbScopeFactory.Create()) { //这里修改数据 db.SaveChanges(); } 阅读全文
posted @ 2017-04-10 22:25 shiningrise 阅读(169) 评论(0) 推荐(0) 编辑
摘要: (转)C# Enum,Int,String的互相转换 枚举转换 Enum为枚举提供基类,其基础类型可以是除 Char 外的任何整型。如果没有显式声明基础类型,则使用 Int32。编程语言通常提供语法来声明由一组已命名的常数和它们的值组成的枚举。 注意:枚举类型的基类型是除 Char 外的任何整型,所 阅读全文
posted @ 2017-04-05 20:47 shiningrise 阅读(173) 评论(0) 推荐(0) 编辑
摘要: protected virtual void InitGrid() { var q = _IContracts.Entities; q = Search(q); GridList.RecordCount = q.Count(); if (GridList.Page... 阅读全文
posted @ 2017-04-04 12:46 shiningrise 阅读(147) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include #include using namespace std; int m; char a[250]; char b[250]; int c; int main(){ scanf("%d %s",&m,a); //printf("%s\n",b); //cin>>... 阅读全文
posted @ 2017-03-31 10:32 shiningrise 阅读(315) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include #include using namespace std; int a; char b[100]; float s; int main(){ scanf("%d %s",&a,b); //printf("%s\n",b); int len = strlen(b)... 阅读全文
posted @ 2017-03-30 15:01 shiningrise 阅读(285) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include #include using namespace std; float b; int main(){ scanf("%f",&b); cout=1) { cout<<"1"; b = b -1; ... 阅读全文
posted @ 2017-03-30 14:27 shiningrise 阅读(167) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include #include using namespace std; char a[100]; long b; long s; int main(){ scanf("%s",a); scanf("%d",&b); int len = strlen(a); s =... 阅读全文
posted @ 2017-03-30 14:16 shiningrise 阅读(201) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include #include using namespace std; char a[1005]; int main(){ scanf("%s",a); int len = strlen(a); long long sum = 0; for(int i = 0 ... 阅读全文
posted @ 2017-03-30 14:04 shiningrise 阅读(343) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std; bool mark[10000005]; int a,b,L,R,K; int A[1005]; bool check(int res){ int k=0; for(int i=a;iR)break; if(res>=L&&check(res))ma... 阅读全文
posted @ 2017-03-30 13:17 shiningrise 阅读(310) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std; int main(){ string s; getline(cin,s); for(int i =0 ; i = 'a' && s[i]= 'A' && s[i]= 'w' && s[i]= 'W' && s[i]<='Z')) { s[i] += 4 ... 阅读全文
posted @ 2017-03-28 14:33 shiningrise 阅读(204) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std; int main(){ string a,s ; char s1[1000]; cin>>a; int i= 0,j=0; bool f=false; while(1) { f=false; while(a[i] !=a[i+1]... 阅读全文
posted @ 2017-03-28 14:12 shiningrise 阅读(525) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://developer.mozilla.org/zh-CN/docs/Web/HTTP/X-Frame-Options?redirectlocale=en-US&redirectslug=The_X-FRAME-OPTIONS_response_header X-Frame-O 阅读全文
posted @ 2017-03-27 10:46 shiningrise 阅读(8310) 评论(0) 推荐(1) 编辑
摘要: #include #include using namespace std; int main(){ string a,b ; long m,n; m=1;n=1; cin>>a>>b; for(int i = 0 ; i < a.length(); i++) { m *= (a[i] - 64); m... 阅读全文
posted @ 2017-03-24 20:08 shiningrise 阅读(206) 评论(0) 推荐(0) 编辑
摘要: https://codepay.fateqq.com/ 阅读全文
posted @ 2017-03-24 13:33 shiningrise 阅读(184) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include using namespace std; int main(){ int p ,q; int m,n; cin>>p>>q; m = p & q; int i = 0; int k = 0; while(m > 0) { i+... 阅读全文
posted @ 2017-03-23 22:17 shiningrise 阅读(244) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std; int main() { //十进制转换为若干进制>2,>num>>n; int s[100]; if(n>=2&&n=1;j--) { if(s[j]>=10) { cout<<s[j]+... 阅读全文
posted @ 2017-03-23 21:55 shiningrise 阅读(410) 评论(0) 推荐(0) 编辑
摘要: var i,j,k,n,ans,p,len,chk,zh:longint; ch:char; s:string; a:array[1..100] of longint; begin readln(ch); chk:=ord(ch)-96; readln(n); for i:=1 to n do begin readln(s); ... 阅读全文
posted @ 2017-03-22 13:56 shiningrise 阅读(185) 评论(0) 推荐(0) 编辑
摘要: http://m.blog.csdn.net/article/details?id=47984703 阅读全文
posted @ 2017-03-18 19:48 shiningrise 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 使用示例: 在编辑器中输入缩写代码:ul>li*5 ,然后按下拓展键(默认为tab),即可得到代码片段: 下载和安装 Emmet为大部分流行的编辑器都提供了安装插件,下面是它们的下载链接: Sublime Text Eclipse/Aptana TextMate Coda Espresso Chocolat Komodo Edit Not... 阅读全文
posted @ 2017-03-17 19:58 shiningrise 阅读(262) 评论(0) 推荐(0) 编辑
摘要: http://www.2cto.com/kf/201507/413329.html 阅读全文
posted @ 2017-03-16 08:51 shiningrise 阅读(120) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 29 下一页
// 侧边栏目录 // https://blog-static.cnblogs.com/files/douzujun/marvin.nav.my1502.css