一段时间来,不管是在学习还是应用asp.net
mvc应用程序,较多情况之下,需要动态创建一些html标签。如这篇《文本框下面有两个铵钮,点就加点减就减》http://www.cnblogs.com/insus/p/3741130.html。下面Insus.NET列举动态创建文本框(text),布尔...
分类:
Web程序 时间:
2014-05-23 07:25:27
阅读次数:
232
using System;using System.Collections.Generic;using
System.Linq;using System.Text;namespace SU{ /// /// 中文转拼音 /// public class
PinYin ...
分类:
其他好文 时间:
2014-05-23 06:46:51
阅读次数:
395
效果截图:代码展示:using System;using
System.Collections.Generic;using System.ComponentModel;using System.Data;using
System.Drawing;using System.Text;using Sys...
分类:
其他好文 时间:
2014-05-23 04:31:37
阅读次数:
312
using System;using System.Collections.Generic;using
System.Text;namespace ConsoleApplication3{ class Program { static void
Main(string[] args) { doubl...
分类:
其他好文 时间:
2014-05-23 04:08:51
阅读次数:
427
文字阴影text-shadow的使用方法text-shadow: length length
length color;前三个length分别表示 阴影离开文字的横方向距离(也就是X轴方向),阴影离开文字纵方向的距离
(即Y轴方向),阴影的模糊半径,color是指阴影的颜色专注前端div{ font...
分类:
Web程序 时间:
2014-05-21 17:38:35
阅读次数:
304
步骤:一、前台JS取HtmlTable数据,根据设定的分隔符把数据拼接起来二、后台先把前台传过来的字符串转换成HtmlTable实体,然后再转换成DataTable实体using
System;using System.Collections.Generic;using System.Text;us...
分类:
Web程序 时间:
2014-05-21 17:25:16
阅读次数:
442
在做商产品详情的时候,经常会有选项卡类似的几个产品说明,如:商品详情,商品规格,参数列表,售后服务等。
Ecshop后台里面默认只有一个编辑框(器),那么我们还得自己添加几个,以下是ecshop如何增加产品描述编辑器个数的步骤:
1)在数据库的表esc_goods里增加二个text的字段用来存储新增的二个编辑框的内容,
如:goods_desc2,goods_desc3(可以用phpmyad...
分类:
其他好文 时间:
2014-05-21 15:13:19
阅读次数:
190
--将text替换成你要查找的内容
select name
from sysobjects o, syscomments s
where o.id = s.id
and text like '%text%'
and o.xtype = 'P'
--将text替换成你要查找的内容
SELECT ROUTINE_NAME, ROUTINE_DEFINITION
FROM INFO...
分类:
数据库 时间:
2014-05-21 14:50:04
阅读次数:
373
WebStorm
8 with IdeaVim plugin
vim, sublime
sublime加上node插件。
nide
Brackets
vim + jshint2.vim
eclipse
Visual Studio 2013 + NTVS(Node.js
Tools for Visual Studio)
notepad++
atom.io
Nodejs c...
分类:
Web程序 时间:
2014-05-21 13:36:47
阅读次数:
493