首页 | 本学科首页   官方微博 | 高级检索  
相似文献
 共查询到20条相似文献,搜索用时 140 毫秒
1.
在利用VC开发应用程序时,通常会用到列表控件,它的使用是相当容易的,但对于用户来说,在列表上查看信息时形式比较简单,特别是一些数据库应用,需要在查看记录的同时,显示出相应的图像信息,对于这一点常用的列表控件就无能为力了。 如果需要在应用中设置更为直观的列表,特别是在列表中以一定规律显示图象,可以为列表控件增加相应的属性和操作来完成。这里介绍一个实现图像列表控件的方法。  相似文献   

2.
树形控件和列表控件都是基于对话框使用的控件.列表控件显示一个项目列表供用户浏览和选择,而树形控件用来以树形格式显示有层次的信息.本文以基于对话框的新闻稿处理程序为例,编写了自己的列表控件类和树形控件类,并说明了它们在对话框编程中的应用.  相似文献   

3.
为了方便用户,多数网站都采用了页面导航.有了页面导航的功能,用户可以很方便地在一个复杂的网站中进行页面之间的跳转.在以往的Web编程中,要写一个好的页面导航功能,并不是那么容易的,也要使用一些技巧.而在ASP.NET2.0中,为了方便进行页面导航,新增了页面导航控件sitemapdatasource控件和其它如treeview等一些页面控件,使得能很方便地实现页面导航的不同形式.本文介绍了ASP.NET2.0应用中Web页面之间的几种导航方式,分别分析了各种导航方式的异同和优缺点,以帮助选择最佳的导航方式.  相似文献   

4.
该系统结构合理,功能完善,实现了新闻的动态管理,采用前台浏览和后台管理双层架构,前台部分包括用户登陆、新闻浏览及发布功能,后台管理则包括新闻添加、修改和删除功能。该系统用户分为普通游客和注册用户。普通游客可以方便地浏览新闻,注册用户可以方便、快捷地发布和管理新闻。新闻发布及后台管理页面包含身份验证的内容,未登陆的用户无法访问。在系统中设计了一个通用类,方便后台页面对数据库所作的各种操作,比如读取、写入或更新数据库。在各个页面的上方都添加了其它页面的链接,以便于在不同页面之间快速切换。在首页和新闻列表页面显示新闻列表的地方使用了GridView控件,以便于格式化地显示新闻信息。  相似文献   

5.
分析了RSS新闻的传输原理,通过实例,讲述了使用Visual Studio2010+C#语言在ASP.NET网站的页面中获取远程RSS新闻数据,以及使用GridView控件分页显示新闻列表、查看新闻的方法。  相似文献   

6.
主要采用双向链表及LRU(最少页面使用置换)算法来模拟数据库缓冲区中页面的换入换出情况,统计了I0次数,命中页数等信息.可以学到双向链表的使用方法及其在插入删除操作过程中速度上的优势、LRU算法的实现过程、MFC中的列表等控件的使用方法等.  相似文献   

7.
在Web技术飞速发展的今天,网站不再只是展示信息的平台,而是实现各种管理功能的B/S系统,即一个网站就相当于一个功能强大的软件系统。Visilal Basic.Net是开发具有管理功能网站的常用工具,它相对其它开发工具,具有简单易用、控件丰富、功能强大的特点,深受开发者的欢迎。而在用Vist18,lBasic.Net开发B/s系统时,如何用好数据绑定控件,是软件开发成功的关键。本文对如何用活用好Repeater(重复)和DataList(数据列表)控件,实现数据库访问功能进行了论述。  相似文献   

8.
在ASP.NET网站建设中,我们经常需要从Excel表格中读取一些相应的信息在页面上来显示,提供给用户方便的查看,怎样实现这一功能呢?Visual Studio 2005中有诸多的用来显示数据的控件,如DataGrid、Repeater、GridView等,这些控件由于各自的特点、属性的不同,因而都有自己独特的应用领域。本文就如何使用GridView显示控件来实现从Excel表格中读取数据进行研究和实现。  相似文献   

9.
TreeView是Visual Studio2005中的一种站点导航控件,能够采用树形层次结构非常方便地实现网站内部不同页面之间的导航切换。电子文件信息管理中主要涉及文件和目录的层次管理,根据这一特性,TreeView控件刚好可以在文件信息管理中发挥优势。通过使用TreeView控件可以将文件和目录按照不同类别进行分级管理,同时用户能够通过网络非常方便地连接到服务器实现高效、准确、快速查看或更新文件和目录信息。  相似文献   

10.
文章通过实例介绍了怎样利用Visual C 开发ActiveX控件,然后编写脚本将其插入Web页面,从而展示了ActyiveX控件在网络开发中的强大生命力。  相似文献   

11.
提出并实现了一种针对HTML文档的页面分割方法,其目的是为了能有效提取新闻网页的正文以进行数据挖掘.基本思想是通过模拟网页浏览器的部分渲染工作,来还原HTML文档中每个标签在浏览器窗口上的显示位置,并以此对页面分割,用于提取一些重要区域的信息.在实验中,对10多个知名新闻站点如新浪、网易、TOM新闻等,利用这一方法提取其网页中的新闻正文,准确率在88.5%左右,表明了这一方法的有效性和可行性.  相似文献   

12.
如何从互联网已有海量信息中为用户推荐符合其兴趣的新闻是一项极具挑战的工作。门户网站式的传统新闻传播方法没有考虑用户的个性化需求,因而无法给出合适的推荐。本文提出了一种基于用户协作的新闻共享模型,通过浏览器插件收集用户的浏览行为、分析用户对网页的隐性评价,并结合协同过滤算法实现相似用户间的新闻推荐。在原型系统中验证了本文所提方法的有效性,并分析了推荐算法的性能。  相似文献   

13.
校园网络新闻系统的设计和实现   总被引:2,自引:1,他引:1  
随着信息技术的发展,互连网已成为人们获取信息的重要来源。与传统媒体相比,网络新闻系统具有信息发布速度快、信息量大、页面设计灵活、不受时间空间的限制等优势。本文以某高校新闻系统为例,介绍了基于B/S模式的学校新闻网站的设计过程和视频服务器的架构。  相似文献   

14.
With the development of mobile technology, the users browsing habits are gradually shifted from only information retrieval to active recommendation. The classification mapping algorithm between users interests and web contents has been become more and more difficult with the volume and variety of web pages. Some big news portal sites and social media companies hire more editors to label these new concepts and words, and use the computing servers with larger memory to deal with the massive document classification, based on traditional supervised or semi-supervised machine learning methods. This paper provides an optimized classification algorithm for massive web page classification using semantic networks, such as Wikipedia, WordNet. In this paper, we used Wikipedia data set and initialized a few category entity words as class words. A weight estimation algorithm based on the depth and breadth of Wikipedia network is used to calculate the class weight of all Wikipedia Entity Words. A kinship-relation association based on content similarity of entity was therefore suggested optimizing the unbalance problem when a category node inherited the probability from multiple fathers. The keywords in the web page are extracted from the title and the main text using N-gram with Wikipedia Entity Words, and Bayesian classifier is used to estimate the page class probability. Experimental results showed that the proposed method obtained good scalability, robustness and reliability for massive web pages.  相似文献   

15.
利用XSLT实现网格中的页面服务标准化*   总被引:2,自引:0,他引:2  
用户接口系统是网格研究的重要组成部分,如何构造直观、清晰的交互式用户界面是研究的重点。以空间信息栅格(SIG)中页面服务的实现方式为例,主要讨论了XSLT页面模板在空间信息栅格中的作用,如何使用XSLT进行页面转换以及利用XSLT实现网格中的页面服务的流程等,介绍了利用XSLT技术实现网格中的页面服务标准化的方法。  相似文献   

16.
Along with the rapid development of online news production and consumption, information spreads rapidly among news portals through reprinting and re-posting. Understanding the dissemination process of online news has important implications for policy making, crisis management, and brand imaging. As the frequency of news reprinting between two news portals expresses the social relationship between them, the topological properties of complex networks of news portals indicate the dynamic patterns of online news dissemination. This research is the first study that examines patterns and organizational structure of online news networks based on historical data collected from more than one thousand Chinese news portals. Main findings reveal that information can spread widely and rapidly through online news portals. Specifically, some major news portals exchange information with each other frequently and they exchange information with small news portals directly, implying that hot-spot events, even they are first reported by a small news portal, can be re-posted by many major news portals in a short time and then spread over the Internet quickly. The dense connections between many major news portals ensure that the spread will not be influenced greatly by the refusal to report typical events of a small part of major news portals.  相似文献   

17.
随着网络的飞速发展和普及,越来越多的用户习惯上网浏览新闻。网页逐渐融入人们的生活,已成为人们日常生活的一部分。另外企业通过网站可以展示产品,发布最新动态,与用户进行交流和沟通,与合作伙伴建立联系等等。该文论述的就是采用JSP Tomcat MySQL开发环境开发动态的Web网络新闻发布系统。本系统实现新闻的浏览,新闻的搜索与点评,同时还得兼顾栏目的路径信息,新闻图片信息。推荐新闻信息,新闻点击信息和新闻审核信息等。另外后台管理员可以对新闻进行添加,审核,修改和删除。  相似文献   

18.
网页搜索中的查询时效性是指查询对新闻网页的需求。这种时间相关的因素,在网页排序过程中用于平衡其他非时间性因素,使排序更好地满足用户体验。为此该文提出了一种查询时效性的实时计算模型从用户搜索和媒体报道两个角度,分别对时效性建模,然后这两种不同来源的时效性相互补充,综合计算某个时刻用户搜索某个查询时,其综合时效性得分。这个量化得分在网页排序阶段用于提高或抑制新闻网页的露出;同时也为网页搜索结果中展现新闻直达区提供依据。在人工评测以及用户点击通过率统计上,该模型均取得了不错的实际效果。  相似文献   

19.
The Web has become a ubiquitous tool for distributing knowledge and information and for conducting businesses. To exploit the huge potential of the Web as a global information repository, it is necessary to understand its dynamics. These issues are particularly important for news Web sites as they are expected to provide fresh information on current world events to a potentially large user population. This paper presents an experimental study aimed at characterizing and modeling the evolution of a news Web site. We focused on the MSNBC Web site as it is a good representative of its category in terms of structure, news coverage and popularity. Specifically, we analyzed how often and to what extent the content of this site changed and we identified models describing its dynamics. The study has shown that the rate of page creations and updates was characterized by some well defined patterns that varied as a function of time of day and day of week. On the contrary, the content of individual pages changed to a different extent. Most updates involved a very small fraction of their content, whereas very few were more extensive and spread over the whole page. By taking into accounts all these aspects, we derived analytical models able to accurately capture and reproduce the evolution of the news Web site.  相似文献   

20.
刘伟  严华梁 《计算机工程》2012,38(11):167-169
提出一种统一的Web新闻对象自动抽取方法。通过抽取新闻页面中的分类、标题、发布时间、来源、作者、内容、相关评论链接和相关新闻链接作为分类属性,经页面解析、候选值抽取、真值识别3个步骤,实现新闻对象的自动抽取。实验结果表明,该方法在同时抽取新闻对象的多个属性方面具有较高的准确性,且抽取结果不依赖于特定的页面模板。  相似文献   

设为首页 | 免责声明 | 关于勤云 | 加入收藏

Copyright©北京勤云科技发展有限公司  京ICP备09084417号