码迷,mamicode.com
首页 >  
搜索关键字:in section __text    ( 55715个结果
图片的css自适应
当需要css来缩放图片的时候,可以采用外层容器100%或者任意百分比,内层图片img tag 没有宽高,用sass写经过断点后的mixin中的样式就是这样:.workscon_section{ width: 100%; .left_art{ width: 100%; disp...
分类:Web程序   时间:2014-07-16 18:27:21    阅读次数:200
char * const p和const char *p的区别
1.前者定义P为常量,即只能单向赋值一次,P++展开为p=p+1,重复赋值给常量,出错,后者P为地址变量,地址变量是指向该变量的存储地址值如:4B3F6A,不能赋给一个字符值(字符相当于ascii表中对应的整数)如强制赋值,会把原地址变量P变为一个两位数的整数,造成地址指针溢出。而p++,则表示把该...
分类:其他好文   时间:2014-07-16 18:03:19    阅读次数:178
Jingle 相关问题
1. //page模板默认的相对位置,主要用于开发hybrid应用,实现page的自动装载 basePagePath : 'html/'。所以所有的section 要放在html文件下面才行
分类:其他好文   时间:2014-07-16 17:59:50    阅读次数:216
关于gridview控件
1e.Row.RowType == DataControlRowType.DataRow的意思e.Row.RowType 是指当前行的类型DataControlRowType 是GridView的行的类型集合 其中的DataRow是数据绑定行这个判断语句的意思就是判断当前行是不是数据绑定行2这个.....
分类:其他好文   时间:2014-07-16 17:50:06    阅读次数:211
获取IP,调用新浪接口获取所在地点的辅助类
1 using System; 2 using System.IO; 3 using System.Net; 4 using System.Text; 5 using System.Web.Script.Serialization; 6 7 namespace IpUtils 8 { 9 ...
分类:其他好文   时间:2014-07-16 17:36:50    阅读次数:188
获取月份的周时间段
包括C#方法和SQL方法。C#using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ class Program { ...
分类:其他好文   时间:2014-07-16 15:39:21    阅读次数:195
wp8 入门到精通 高仿微信发信息 键盘不消失
public MainPage() { InitializeComponent(); this.textBox.KeyUp += new KeyEventHandler(textBox_KeyUp); } void text...
分类:微信   时间:2014-07-16 15:34:13    阅读次数:467
判断数字正则表达式
好多种方式。可以用正则表达式,可以用其他过滤方式。using System.Text.RegularExpressions;/// /// 使用指定正则进行验证/// /// 正则表达式/// 待验证字符/// public static bool RegexValidate(string rege...
分类:其他好文   时间:2014-07-16 15:28:53    阅读次数:169
DataGridView实现分页
using System;using System.Collections.Generic;using System.ComponentModel;using System.Drawing;using System.Data;using System.Linq;using System.Text;u...
分类:Windows程序   时间:2014-07-16 15:28:32    阅读次数:276
MD5加密解密帮助类
using System; using System.Security.Cryptography; using System.Text; namespace Maticsoft.DBUtility { /// /// DES加密/解密类。 /// public class DESEncrypt { public DESEncrypt() { } #regi...
分类:其他好文   时间:2014-07-16 11:21:38    阅读次数:194
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!