Friday, October 16, 2009

Best Web Advisor:Best Web Solutions

Looking for excellent web solutions or you want advice for your online business.We offer the cheapest web solutions,cheapest web developmets,Cheapest HTML websites,Cheapest wordpress websites,asp.net websites,cheap SEO and SMM...

Please visit Best Web Advisor and Web Solution Provider: Website Innovators

Wednesday, September 9, 2009

Get Ecommerce/Shopping Cart Website in 3 simple steps

If you are looking to get an ecommerce website or a shopping cart.I can tell you how to get an cheapest ecommerce website or a shopping cart in 3 very simple steps...

1) Check open source ecommerce solutions like oscommerce.com or Prestashop.com or zencart.com .Select which ever you want

2) Search for pre designed templates that are easily available on internet.I can help you with that.

3) Get an expert like me who can setup the shopping cart solution with the design you want.

Cheers
Admin

Sunday, July 19, 2009

Seo Tips for Dynamic Content/Website

Most of the websites have dynamic content(text,links) coming from database.The developers should keep in mind the following few points for making the website search engine friendly:

1) Make sure each page have different title and meta description.You can pick headline/title of the content as Page Title and few words of the content in meta tag or meta description. If each dynamic page has different title and description
it will be more search engine friendly.

2)Make sure the url's do not have query strings.Avoid using query strings.

3)Make sure that every image has an alt tag.

4) Hyperlink should not have any javascript,it should display url when mouse is moved over them

5)Create a sitemap,it should have url for every dynamic page.

6)Links should not be 3-4 levels deep down.


I am sure if the developers use the above SEO tips in their asp.net/php dynamic websites,they will surely rank higher in search engines and make clients happy..

if you have any questions/views feel free to share

Social Media Marketing:Increasing Web Traffic

Social media marketing is now widely used for increasing web traffic on the websites or blogs.Its basically

1)creating profiles,groups,communities related to your website on social networking websites like orkut, facebook, myspace, hi5 and other similar social networking sites.

2) Searching other forums,blogs related to content on your website and creating your profile/account on them and actively posting new topics/comments on the discussion going on there,you can use digg,yahoo answers etc

3)You can also use social bookmarking to increase traffic on your website.

If you have any questions/views on social media marketing please feel free to post your comments.

So use social media marketing to increase traffic on your website....cheers

Monday, June 29, 2009

Unable to cast object of type 'System.Int32' to type 'System.String' :Error in Facebook Application

If you are getting "Unable to cast object of type 'System.Int32' to type "'System.String' error while using facebook.net from nikhil (http://www.nikhilk.net/FacebookNET.aspx) ,

to solve this error download source code for this dll and make a change in Framework\Service\Core\FacebookRequest.cs line 180 change

//userID = (string)result["uid"];
to userID = Convert.ToString(result["uid"]);

Sunday, April 19, 2009

failed to enable constriants,One or more rows contain values violating non-null, unique

Error:asp.net/c#/typed data set,strong datasets,xsd files
"failed to enable constriants,One or more rows contain values violating non-null, unique"

If this is the error you get into your dataset/xsd files then there is a problem with the table u r using to fetch records.You might have altered the datatype/length of the column.

the best way to resolve it is to re create the dataset/xsd file or use a simple stored procedure to fetch records...

Wednesday, April 8, 2009

The SMTP server requires a secure connection or the client was not authenticated. The server response was: denied access

Error while sending email...asp.net 2.0

"The SMTP server requires a secure connection or the client was not authenticated. The server response was: denied access

Reliable $1 Web Hosting by 3iX

you can resolve this error by setting
mailclient.UseDefaultCredentials = true; in the code you are using to send email. use this code

System.Net.Mail.SmtpClient mailclient = new System.Net.Mail.SmtpClient();
System.Net.NetworkCredential auth = new System.Net.NetworkCredential("support@abc.com", "123#");
mailclient.Host = "mail.abc.com";
mailclient.UseDefaultCredentials = true;
mailclient.Credentials = auth;
mailclient.Send(msg);