Deprecated: Assigning the return value of new by reference is deprecated in /home/tryangle/public_html/blog/wp-includes/cache.php on line 36

Deprecated: Assigning the return value of new by reference is deprecated in /home/tryangle/public_html/blog/wp-includes/query.php on line 21

Deprecated: Assigning the return value of new by reference is deprecated in /home/tryangle/public_html/blog/wp-includes/theme.php on line 507

Deprecated: Assigning the return value of new by reference is deprecated in /home/tryangle/public_html/blog/wp-content/plugins/codesnippet/codesnippet.php on line 248
Tryangled Dev » 2007 » September

Archive for September, 2007

How to Create Simple Sitemap in ASP.NET?

Saturday, September 22nd, 2007

 

<?xml version=1.0 encoding=utf-8 ?>


<siteMapNode url=~/default.aspx title=Home description=Home page>

<siteMapNode url=~/contact.aspx title=Contact description=Contact us />

<siteMapNode url=~/products.aspx title=Products description=Our products />

</siteMapNode>

</siteMap>

 

Posted by Mahesh ( Tryangled )

Is designing a cms is hard?

Saturday, September 22nd, 2007

NO‘ Will be the answer.

Its easy to create . steps to be followed while designing a cms :

1. First write the flow how ur cms must look like .

2. design the database (flexible)

3. there must be a structure how ur going to program.

a. usage of variables

b. global values

c. database connection

d. language packs installation (for multilingual website) .

Creating a content management system is very simple if u do the concept and flexibility for the code you write.

For more information click here :

Contact Tryangled CMS Development

Posted by Suresh B

What is CMS?

Saturday, September 22nd, 2007

CMS Stands for Content Management System.

We can change the contents displayed on a page from another area. the basic behind this is we are putting all the contents in a database . then retrieving from the front end.

There are a lot of web sites that use different types cms.

Example : Tready , Joomla, Mambo etc,.

Advantages:

1. easy to use .

2. simple procedure to be followed

3. Any one who does not have knowledge of computers can use it.

4. Create Dynamic page in a short span of time.

5. SEO friendly urls can be made easily.

Posted by Suresh B

Alphabetic validation using php?

Friday, September 21st, 2007

We can validate a value for alphabets by the following function

function check_alphabets($str)
{
// Suresh written for validating alpha values
for($i=0;$i<strlen($str);$i++)
{
$chara=ord($str[$i]);
if(!((($chara>96) && ($chara<123))||(($chara>64) && ($chara<91))))
return 0;
}
return 1;
}

Here is the way to call the function

if(check_alphabets($_REQUEST[name])<1)$err=”Please enter alphabets” ;
Posted by Suresh B

What are paid links? Will Google consider it?

Tuesday, September 18th, 2007

Paid links are simply text links for which the webmaster of the linked site paid. Paid links can be used to advertise your web site on other sites.
Most webmasters buy links to increase their search engine rankings. Unfortunately, Google doesn’t like paid links.

Posted by Suresh B

What are hidden links? Will Google detect hidden links?

Tuesday, September 18th, 2007

Hidden links are links that can be seen by search engines but not by humans:
·    White text on a white background (or any other text that has the same color as the background).
·    Links that have been changed with CSS so that they are extremely small.
·    Links in invisible CSS divs.
Its risk to use hidden link . Google will drop your site .

Posted by Suresh B