摘要:
提到Like语句大家都很熟悉,比如查找用户名包含有"c"的所有用户, 我们可以用 use mydatabase select * from table1 where username like'%c%" 以下是完成上面功能的另一种写法: use mydatabase select * from table1 where charindex('c',username)>0 这种方法理论上比上一种方法多了一个判断语句,即>0, 但这个判断过程是最快的, 我相信80%以上的运算都是花在查找字符串及其它的运算上, 所以运用charind 阅读全文
摘要:
sleep 2秒后显示结果<script type="text/javascript"> Ext.onReady(function () { Ext.widget('panel', { title: 'My Slow Iframe', width: 300, height: 300, items: { xtype: 'component', autoEl: { ... 阅读全文
摘要:
默认收缩的按钮的位置是在panle的header的右侧的。通过class属性 让它显示在左侧的位置<style type="text/css"> .my-panel .x-tool{left:0 !important;} .my-panel .x-panel-header-text-container{padding-left:18px;}</style> <script type="text/javascript"> Ext.onReady(function () { Ext.widget('panel 阅读全文
摘要:
原文地址:http://ext4all.com/post/extjs-4-show-pdf-in-a-panel注意:前提是你的浏览器需要安装上PDF的插件。!例如:Adobe Reader效果图:<script type="text/javascript"> Ext.onReady(function () { Ext.widget('panel', { title: 'My Pdf Panel一步一步学习asp.net MVC', width: 600, height... 阅读全文