- 博客(7)
- 收藏
- 关注
原创 部署NuGet服务器和发布自己的NuGet包
直接正题。。。 部署NuGet服务器: 1.在visual studio中创建空项目。 2.安装NuGet.Server包:Install-Package NuGet.Server。安装成功,提示覆盖web.config,是。 3.打开web.config,找到configuration->appSettings->key="apiKey",设置value=“9058B31A-D0E3
2016-04-12 19:48:32
5813
原创 如何生成machineKey
>cmd >PowerShell_ISE 新建 # 生成一个可复制并粘贴到 Web.config 文件中的 元素。 function Generate-MachineKey { [CmdletBinding()] param ( [ValidateSet("AES", "DES", "3DES")] [string]$decryptionAlgorithm = 'AES', [V
2015-10-20 15:44:59
3173
原创 css heml js 遮罩
css#bg{ position: absolute; top: 0%; left: 0%; width: 100%; height: 100%; background-color:#000; z-index:1001; opacity:0.40; } #show{ position: absolute; top:
2015-04-14 14:57:12
452
原创 背景图片居中
body{ margin:0px; background-image:url(../image/DefaultBack.jpg); background-repeat:no-repeat; background-position:center top; height:1400px; }
2015-02-06 11:16:46
326
原创 栈的基本实现
#include#includeusing namespace std;const stackSize = 10;const stackIncrement = 5;typedef struct{int *base;int *top;int stackSize;} SqStack;int InitStack(SqStack &s){s.base = (int*)malloc( stackSize*s
2014-03-24 18:09:43
456
原创 图片缩放
$.fn.extend({ Zooming: function( b, h, w, newH, newW ){ var scaleH = (h/newH).toString(); var scaleW = (w/newW).toString(); var h1 = parseFloat(scaleH.split( "." )[0]); var h2 = parseFloat(sc
2013-01-15 11:55:44
262
原创 自学C++
#include #include using std::string; using std::cout; using std::cin; using std::endl; template class Math { public: M plus( T a, M b ) { return ( a + b ); }; private: T max;
2012-03-20 09:36:39
507
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人