After reading some articles and discussions on this topic, my conclusion is:
References
After reading some articles and discussions on this topic, my conclusion is:
References
When you have many related functions, you can consider to group them together using Region.
Example, if you have four functions which are related to Paging, you can just add a region like below (ASP.NET 1.1, VB.NET syntax):
#Region "Paging"
Public Property CurrentPage() As Integer
' Your code here ...
End Property
Private Sub ImgBtnPrevBottom_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles ImgBtnPrevBottom.Click
' Your code here ...
End Sub
Private Sub ImgBtnNextBottom_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles ImgBtnNextBottom.Click
' Your code here ...
End Sub
Private Sub ItemsGet()
' Your code here ...
End Sub
#End Region
Now, go to your Visual Studio 2003. Click Edit > Outlining > Collapse to Definitions, you will see the below:
It is very simple to do, yet useful.
Compilation of Writing Web Content tips:
1st paragraph – outline your article, share the points you are going
review in the article, and state why these points are important.
2nd paragraph – review point one
3rd paragraph – review point two
4th paragraph – review point three
5th paragraph – summary. restate the points of your article and reiterate why those points were important.
References
More Resources
I realized from Google Webmaster Tools that I don’t have a google sitemaps and I hope to have one.
I also learnt that there are site out there which can generate this google sitemaps. I have tried some sites but they fail to do a good job. But, just now, at last, I found a good one. It is sitemapdoc.
What is the usage of this sitemap? My knowledge at this time is, it helps search engine to crawl my website better.
So, after the site has generated the xml, I copied and paste it to my notepad and save it as .xml file. Then, I upload it to my website. Then, I went to Google Webmaster Tools to add this Google Sitemaps. It took some time (less than 30 minutes) to process the sitemaps. Right now, I got a sitemaps, hurray!