December 2003 - Posts

how to make google friendly ASP.NET pages?

ASP.NET have not and willnot have any optimizations for the google spider. ( Hello Rob and Scott !) So i must do that myself, without any specs. OK i know the common rules with the links and the page rank and design of the page.

This works pretty good.

My big problem are entrys in our forums on www.devtrain.de

Eg  http://www.devtrain.de/forummsg.aspx?id=3393&fid=14 is not indexed by google. The main page http://www.devtrain.de/forum.aspx?fid=14 with all entrys is indexed every 2 days. But google does not follow the link to the detail entry.

Now i have made a web page for the same posted content on a diffrent page (www.asp-konferenz.de). The presentation is done by repeater.

Same result. Forum main page is spidered every 2 days but google doesnt follow the link to the entry. Now i have changed it with a httpmodule ( look my earlier posting) to move away the querystring and mask the entryid in the url.

http://www.asp-konferenz.de/message3393.aspx

I have also added a contenttype and description meta tag. the dynimc title was done from the beginning. So now i am sit an wait for the spider.

If you have any improvments, give me feedback.

Posted by preishuber | 4 comment(s)

Domains are not good for naming a web project

We have domain (http://www.asp-konferenz.de) and i created a long time ago a ASP.NET project on it.

The created namespace is www.asp_konferenz.de. So all pages inherit like


...Inherits="www.asp_konferenz.de.prekonf"%

the minus is converted to underline- nothing bad

The problem began with registring a HTTPModule in web.config.

add name="httpModule1" type="www.my_domain.com.httpModule1, www.my-domain.com"

The assembly name differs from the namespace. I tryed several things and posted to newsgroups but get no answere. The only sensfull choice is to buidl a external assembly for the httpmodule class. Then put the assembly dll to the bin directory of the web App and regsiter the http module in web.config like

add name="httpModule1" type="HTTPM.httpModule1,HTTPM"

i am still not satisfied - any better ideas?
Posted by preishuber | 5 comment(s)

Rember: .NET readiness KIT

a long time ago Bijan Javidi (Microsoft), Clemens Vasters, some others and me developed a complete set of modules to teach and learn the .NET stuff. It was called the Microsoft .NET readiness Kit.
It contains PPT 's and Doc's for more then 30 topics of .NET development.
The material is in english, for free and a good set to teach classes and completley free!
my only problem is that i cant find it on the web.... On old place http://www.microsoft.com/germany/ms/msdnbiblio/dotnetrk/ =404 Does anyone have this kit for download?
Posted by preishuber | 3 comment(s)
More Posts