码迷,mamicode.com
首页 >  
搜索关键字:web front end developer    ( 136364个结果
border-radius 样式表CSS3圆角属性
border-radius是CSS3圆角属性,用来实现DIV层的4个边框画成圆角。一、语法:border-radius:none|{1,4}[/{1,4}]如:border-radius:5px5px5px5px;二、取值::由浮点数字和单位标识符组成的长度值。不可为负值。三、说明:border- ...
分类:Web程序   时间:2014-05-01 08:28:26    阅读次数:471
ASP.NET Web – 状态管理
HTTP协议是无状态的。从客户端到服务器的连接可以在每个请求之后关闭。但是一般需要把一些客户端信息从一个页面传送给另一个页面。在保存状态的各种方式中,主要区别是:状态是存储在客户端还是服务器上。
分类:Web程序   时间:2014-05-01 08:24:40    阅读次数:311
VC中添加web控件的方法
在VC中使用WebBrowser控件的两方法黄森堂(vcmfc)著ClassWizard方式:1.创建包装类:View->ClassWizard->Add Class->Form a Type Library->C:\winnt\system32\shdocvw.dll->只选择IWebBrowse...
分类:Web程序   时间:2014-05-01 08:15:32    阅读次数:470
ASP.NET打包生成zip压缩文件
using System;using System.Collections.Generic;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.IO;using System.Drawin...
分类:Web程序   时间:2014-05-01 08:07:45    阅读次数:408
反向代理配置
nginxserver { listen 80; server_name localhost; root /apps/web/; index index.html; location / { } location /server { ...
分类:其他好文   时间:2014-05-01 08:03:15    阅读次数:902
Struts2 Demo
1、web.xml1 2 struts23 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter4 5 6 struts27 /*8 2、struts.xml 1 2 5 6 7 ...
分类:其他好文   时间:2014-05-01 07:30:35    阅读次数:274
一个struts2登录bug的解决
点登录的时候,在url后面总会加上一个;jsessionid=xxx 使找不到页面 的404 Bug ,百思不得其解,最后终于找到解决方案,实验最终成功解决了这个bug,下面是解决方案1,增加依赖 org.tuckey urlrewritefilter 4.0.3 2,在web.xml中配置过滤器....
分类:其他好文   时间:2014-05-01 07:22:26    阅读次数:407
[leetcode]Remove Nth Node From End of List @ Python
原题地址:http://oj.leetcode.com/problems/remove-nth-node-from-end-of-list/题意:Given a linked list, remove thenthnode from the end of list and return its he...
分类:编程语言   时间:2014-05-01 06:42:15    阅读次数:332
jquery tmpl 详解(转)
动态请求数据来更新页面是现在非常常用的方法,比如博客评论的分页动态加载,微博的滚动加载和定时请求加载等。这些情况下,动态请求返回的数据一般不是已拼好的HTML就是JSON或XML,总之不在浏览器端拼数据就在服务器端拼数据。不过,从传输量方面来看,返回HTML不划算,而在web传输方面,现在更多的是使...
分类:Web程序   时间:2014-05-01 05:34:31    阅读次数:462
c++ ACM常用函数
1 保留小数点后两位#include cout const char * spilt="/";char *p;p=strtok(str,spilt);while(p!=NULL){ //cout #includesort(Rs.begin(),Rs.end());sort(Rs.begin(),Rs...
分类:编程语言   时间:2014-05-01 05:05:45    阅读次数:409
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!