How can you implement trackbacks on a custom-coded blog (written in C#)?
3 Answers
The TrackBack specification was created by Six Apart back in the day for their Movable Type blogging system. After some corporate changes it seems to be no longer available, but here's an archived version:
http://web.archive.org/web/20081228043036/http://www.sixapart.com/pronet/docs/trackback_spec

- 177,530
- 117
- 400
- 535
-
1This URL is no longer valid. Best its pointed to [archive.org](http://web.archive.org/web/20081228043036/http://www.sixapart.com/pronet/docs/trackback_spec) – Nishant Aug 17 '13 at 06:25
Personally, I wouldn't. Trackbacks became completely unusable years ago from all the spammers and even Akismet hasn't been enough to drag them back to usable (obviously IMO). The best way I've seen to handle trackbacks any more is to have a function that will turn an article's "referrer" (you are tracking those, right?) into a trackback (probably as a customized comment type). This leverages the meat-space processing that guarantees that no spam gets through and still allows you to easily recognize and enable further discussion.

- 12,664
- 3
- 41
- 47
If you're custom coding your own blog you have too much time on your hands. Start with something like dasBlog or SubText and customize that to your needs. Then you get trackbacks for free.

- 399,467
- 113
- 570
- 794
-
i have subText and try to send them trackback locally from a week but that's not work ? any idea. – Dec 05 '10 at 12:45