|
|
| | 21/02/2008 | | The list that is referenced here no longer exists | | | Are you get this error while using the updatelistitems method of SHAREPOINT web service (list.asmx)?
Are you aiming to data stored in a subsite?
If so, the solution is to point the webservice of the subsite directly.
If your main site is http://cia, and your subsite is http://cia/coa, yo ... [read all] |
|
|
|
|
| | 30/01/2007 | | Wikipedia say NOFOLLOW to spammers | | | Lately there were a lot of discussions about this problem, as more and more spammers were getting interested in having links on Wikipedia.
At the end, Wikipedia added the NOFOLLOW tag to all his outbound links.
This is a clear message to spammers: Wikipedia doesn't represent anymore a good o ... [read all] |
|
|
|
|
| | 31/10/2006 | | Visual web developer: compile and publish your web site | | | Visual web developer is a very good free environment to develope web projects over the .NET 2.0 framework.
Everything works fine, developing is great, debugging much better than in visual studio 2003.
The problem comes when you need to publish the web site. This option is not available on v ... [read all] |
|
|
|
|
| | 30/09/2006 | | cheat Call of Duty 2 | |  | Cheat list:
To activate all cheat codes, go to OPTION\GAME OPTION and ENABLE CONSOLE, click on YES.
On the title menu press: ~ and write:
developer 1 = enable cheat codes, a LOAD button will appear; click on it and select the level.
When the level has loaded, press ~ again and ... [read all] |
|
|
|
|
| | 13/06/2006 | | Sending mail throught Lotus Notes from a dotnet application | | | This is the code I have used in a dotnet application to send emails via Lotus Notes.
You have to open the Lotus Notes Client, while running the program.
First of all add a reference to Lotus and to Domino libraries in your project.
Then copy the following code in your function:
... [read all] |
|
|
|
|
| | 24/05/2006 | | Buying and selling web domains | | | Nowadays, buying and selling domains seems to be a good businness.
Lots of people forget to renew their domain and very often it is possible to register good names with good pagerank and lots of backlinks.
There are many companies that help you in finding the most valuable domains soon avail ... [read all] |
|
|
|
|
| | 22/05/2006 | | RSS feed in Google homepage | | | Some months ago, I wrote an article about registering to MyYahoo.com and submitting the own RSS feed, in order to let Yahoo know the existence of your RSS feed.
Now I can give you another advice: the Google personal homepage gives you the same opportunity.
Register to google, log in and subm ... [read all] |
|
|
|
|
| | 22/02/2006 | | SQL server: how to use a cursor | | | In SQL Server you can create a cursor quite easily.
If possible, use directly update or insert, instead of a cursor, because they are much more efficient.
A typical situation is when you need to execute a stored procedure from a set of data that you can get from a select, a view or a table.< ... [read all] |
|
|
|
|
| | 09/02/2006 | | ASP: Writing and reading cookies to store data | | | In ASP you can use mainly two ways to store persistent data, sessions and cookies.
Let's talk about coookies.
Each cookie you create is represented by a small text file on the client's computer. If you want to save a large number of values, you can also create a single cookie with multiple k ... [read all] |
|
|
|
|
| | 05/02/2006 | | Web pages Hosting | | | When you build a web page, you need to put it somewhere, in order to publish it for all internet surfers.
There are a lot of differents solutions provided by hosting companies.
First of all, you need to register your internet domain name. Better you choose a domain name containing the k ... [read all] |
|
|
|
|
| | 02/02/2006 | | ASP.NET: Generate a bar code | | | Last month I had to insert a bar code on a page of a web site, as this page had to be printed and mailed to a company.
After some research, this is the result.
First of all create an ascx control, for example barcodectrl.ascx.
In this control, place the following HTML:
< ... [read all] |
|
|
|
|
| | 31/01/2006 | | ACCESS: Stored query | | | In this tutorial we will talk about another powerful feature of database programming, Stored Procedures. Most of the time we use ASP pages, we use them to retrieve (select) or manipulate (insert, update) records in the database.
It is very common to use stored procedures when working with "serio ... [read all] |
|
|
|
|
| | 28/01/2006 | | Prevent SQL injection in ASP / SQL server pages | | | SQL Injection is a way to inject mal-code in your SQL code.
A typical situation is when you get username and password from a login form.
If you build your sql query as a string like:
dim sqlquery
sqlquery = "select count(*) FROM tb_users WHERE username='" & username & "' AN ... [read all] |
|
|
|
|
| | 25/01/2006 | | How to get listed on Google and gain a good page rank | | | Getting listed quickly by Google is not very difficult. The beauty is that the exact same technique that gets you listed quickly also gives your page a decent starting PageRank as well.
First, let me tell you what you do not do. You don't use the "Add URL" form with Google at http://www.goo ... [read all] |
|
|
|
|
| | 25/01/2006 | | Site Optimization: Key Points to Remember | | | If you are preparing to optimize a website, there are certain points you need to keep in mind. The site needs to be attractive both to your visitors and to the search engine spiders. If you want to build a site that will make both groups want to return, keep reading.
There are many things to kee ... [read all] |
|
|
|
|
| | 23/01/2006 | | Crypt and decrypt data using a symmetrical key in ASP | | | Do You need to send critical data to somebody?
Here you will learn how to crypt data using a symmetrical key.
As both of the sender and the receiver of the data must have the same key to crypt and decrypt, remember that it is very important to give the data in a secure way.
The best solu ... [read all] |
|
|
|
|
|
| | 22/01/2006 | | Screen Scraping in ASP.NET | | | One of the great things about ASP.NET is that many things that required a COM component in classic ASP are
easily accomplished through a native ASP.NET Web page. This is because ASP.NET has access to the hundreds of
.NET Framework classes, which are the same set of classes that all .NET-app ... [read all] |
|
|
|
|
| | 20/01/2006 | | Add Link | | | A website is a creature, no blood, no skin, but for sure it is a living creature.
Do not leave your website alone in the web!
Websites need friends like humans do, to survive and to grow.
Do you think your website need protection, or need a friend?
Don't let your website di ... [read all] |
|
|
|
|
| | 19/01/2006 | | Send mail using CDO and CDONTS | | | Cdo component is installed on Win 2003.
Here is the function sendmail that you can use in your ASP code:
function sendmail(emailfrom,emailto,emailbcc,emailsubject,emailcorpo)
Dim MiaMail
Set MiaMail = Server.CreateObject("CDO.Message")
MiaMail.From = emailfrom
MiaMai ... [read all] |
|
|
|