08 2012 档案

在windows phone 中使用panorama
摘要:1.在References中添加引用:Microsoft.Phone.Controls 2.在xaml的头部添加: xmlns:controls="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls" 3.替换默认的Grid: <Grid x:Name="ContentPanel" Grid.Ro... 阅读全文

posted @ 2012-08-14 09:54 冰危节奏 阅读(212) 评论(0) 推荐(0)

为什么网站不被百度收录或收录清零?
摘要:如何让百度新算法快速收录网站. 到http://www.baidu.com/search/url_submit.html 登记网站 网站登陆 可能得过几天 百度最近已经更改网页权重算法,主要目的是打压电子商务网站和一些门户网站(阿里巴巴和搜狐网易腾讯等都是被打压的对象),以及彻底删除.cn域名的一些垃圾网站。网站SEO如何应对百度新算法以及新站如何被百度快速收录呢?下面公布一些要点... 阅读全文

posted @ 2012-08-10 10:13 冰危节奏 阅读(677) 评论(0) 推荐(0)

[交流]百度在从六月开始的收录清零行动中的新算法
摘要:这是我的一个在百度工作的工程师朋友告诉我的百度在从六月开始的收录清零行动中的新算法,以下内容只是主要的方法,具体的详细算法就是根据以下内容来的,至于具体的算法是百度机密,我也获得不了。 1.百度对买卖链接进行了严厉的处罚,对导出链接超过40个(一些知名站点不受影响),链接工厂,垃圾站,半年以内的站所导出的链接全部没有权重。对于不相关友链全部降权,大约有相关网站友链的十分之一左右。 2.百... 阅读全文

posted @ 2012-08-10 10:12 冰危节奏 阅读(285) 评论(0) 推荐(0)

Window Phone ListBox的DataBinding:
摘要:<ListBox x:Name="lstTrips" ItemsSource="{Binding}" > <ListBox.ItemTemplate> <DataTemplate> <StackPanel> ... 阅读全文

posted @ 2012-08-07 15:47 冰危节奏 阅读(178) 评论(0) 推荐(0)

windows Phone 后退键历史的清除
摘要:protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e) { base.OnNavigatedTo(e); while (NavigationService.CanGoBack) ... 阅读全文

posted @ 2012-08-07 15:44 冰危节奏 阅读(307) 评论(0) 推荐(0)

XmlSerializer序列化一组成员到文本文件
摘要:写入: using (System.IO.IsolatedStorage.IsolatedStorageFile isf = System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForApplication()) { using (System.IO.Isolated... 阅读全文

posted @ 2012-08-02 17:44 冰危节奏 阅读(337) 评论(0) 推荐(0)

windows phone下进行Isolated的IO读写
摘要:using (System.IO.IsolatedStorage.IsolatedStorageFile isf = System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForApplication()) { if (isf.FileExists(fileName)) ... 阅读全文

posted @ 2012-08-02 17:30 冰危节奏 阅读(262) 评论(0) 推荐(0)

windows phone不同页面间传值
摘要:在windows phone中,不同页面间传值是用以下代码就可以了 PhoneApplicationService.Current.State[“strKey”] 我自己封装的代码: TripDealer.cs: using System; using System.Net; using System.Windows; using System.Windows.Contro... 阅读全文

posted @ 2012-08-01 14:06 冰危节奏 阅读(229) 评论(0) 推荐(0)

导航