摘要: 近来一直在开发股票模拟系统,终于告一段落了,回想起来感慨很多。突然想应该做点总结了,想来想去还是觉得通过写点日志来把相关的知识点记录下来,下面就我在项目中经常用到的动态提示搜索选项功能的实现。 第一步,先做好搜索页面 阅读全文
posted @ 2010-03-03 14:45 chingho 阅读(1663) 评论(0) 推荐(1) 编辑
摘要: 当我们在Visual Studio添加一个自定义控件时,它都会给我们以下默认的代码。 [DefaultProperty("Text")] [ToolboxData("")] public class WebCustomControl1 : WebControl { [Bindable(true)] [Category("Appearance")] [DefaultValue("")] [Localizable(true)] public string Text { get { String s = (String)ViewState["Text"]; 阅读全文
posted @ 2010-03-03 14:34 chingho 阅读(2277) 评论(1) 推荐(2) 编辑