摘要:
打印时候去掉边框:html:<input type="checkbox" style="width: 28px; height: 28px;position: absolute; clip: rect(6px 22px 22px 6px)" />解释:根据自己需要的大小调 width height,如果 width height 动的话,rect后面的参数要相应改变。这个是我感觉调试出来的最佳的大小,要想放大缩小,自己调整即可!注意:CheckBox 外面的td的样式要 竖着 向上对齐,横着居中,width大小比CheckBox 大1px即可 阅读全文
摘要:
public void Clear(System.Web.UI.Control topctrl) { foreach (System.Web.UI.Control ctrl in topctrl.Controls) { if (ctrl.GetType().Name== "TextBox") if (ctrl.ID != "tbEditShijian") ((TextBox)ctrl).Text = "";//清... 阅读全文
摘要:
看看ASP.NET页面刷新的实现方法:第一:C# codeprivate void Button1_Click( object sender, System.EventArgs e ){Response.Redirect( Request.Url.ToString( ) );}第二:C# codeprivate void Button2_Click( object sender, System.EventArgs e ){Response.Write( " < script language=javascript>window.location.href=document 阅读全文
摘要:
正常来说,老板键一般少不了:Alt+Ctrl+Shift+XX这种多组合方式,然而各类代码就是不直接说明,也没个提示,看来是有意隐藏,终于,还是被我发现其中的一些不为人知的隐藏属性:下面看一下本人修改自网络常见的代码:publicdelegatevoidHotkeyEventHandler(intHotKeyID);publicclassSystemHotKey:System.Windows.Forms.IMessageFilter{List<UInt32>keyIDs=newList<UInt32>();IntPtrhWnd;publiceventHotkeyEven 阅读全文