Friday, March 13, 2009

Replace Blog Title with Title Post

Optimize the title will affect us in making our blog in the top rank search engine search results. Use tricks if you change your blog title with the posting title and it will create a better entrance to the range front of the search engine.

1. Go to "Layout-->>Edit HTML
2. Find this code <title><data:blog.title/></title>
3. After you find it, replace with

<b:if cond='data:blog.pageType == &quot;index&quot;'>
<title><data:blog.title/></title>
<b:else/>
<title><data:blog.pageName/></title>
</b:if>


4. Save it.

Good Luck.


Read More......

Make "Readmore" in Your Blog

Typically posting will be showing the latest posted on the main blog. However, if you post too long, then it will make a full front page. If you want to post that you posted on the main display only some of the stories,course then there is a link Read More / Read More to see more then follow the following steps:

1. Open the Layout menu and then select Edit HTML.
2. CheckList expand widget template
3. Find the following code in your blog template (place approximately on 1 / 4 the lower part of the code hmtl):

<p><data:post.body/></p>


4. If you found it, change the code with

<b:if cond='data:blog.pageType == "item"'>
<style>.fullpost{display:inline;}</style>
<p><data:post.body/></p>
<b:else/>
<style>.fullpost{display:none;}</style>

<p><data:post.body/></p>

<a expr:href='data:post.url'>Read More......</a>
</b:if>


5. Save the results.
6. Then select the Settings menu and select Formatting
7. In the Post Template box fill in the following code:

<span class="fullpost">


</span>


8. Then Save.
9. When you want to make a post, there are 2 choices "Compose" and "Edit Html", select the "Edit HTML", then automatically the code will look like the following:

<span class="fullpost">


</span>


10. Put the article that will be displayed in main page (before any posts "Redmore") above this code: <span class="fullpost"> while the rest of the post in place between the code and <span class="fullpost"> </ span >

Read More......

Thursday, February 19, 2009

Microsoft BizTalk Server 2000

The new Microsoft BizTalk Server 2000 provides powerful tools for the exchange of information between businesses. The tools included with BizTalk Server 2000 allow you to create BizTalk schemas, to map fields and records from one specification to another, and to move data from one corporation to another using XML. These tools are based on the XML technology and standard and provide the data translation for an application-integration server. You can visit the Microsoft BizTalk Server 2000 Web site at http://www.microsoft.com/biztalkserver/ to download the BizTalk Server 2000 Technology Preview. The site includes instructions on how to install and set up a BizTalk server.




The five main tools in BizTalk Server are BizTalk Editor, BizTalk Mapper, BizTalk Management Desk, BizTalk Server Administration Console, and BizTalk Server Tracking. These tools can provide you with the ability to receive and send documents in a variety of formats, validate and create documents, work with multiple protocols, and ensure document delivery. In this tutorial, we will discuss the tools of BizTalk Server 2000.

Read More......