May 2006 - Posts

german ASP-Konferenz is coming ( june19)

The ASP-konferenz is coming soon. Located in Burghausen near Munich from june 19th to 21. More than 30 ASP.NET and Web 2.0 relevated sessions.

Gurus at work:

Christian Wenz ( author of 1st ATLAS book)

Alexander Schwinn ebay

Bernhard Frank Microsoft

Christoph Wille ( Author of 1st C# book)

Daniel Zeiss ( Autor of AJAX Framwork ComfortASP.NET)

Hard Erlinger ( Autor of the ASP.NET Design Templates)

Karsten Samaschke (massive book writing)

and  more

 

Posted by preishuber | with no comments
Filed under:

Announcement week: Microsoft Standard User Analyzer

as i have blogged earlier, this week starts with a firework of announcements. I missed a intresting new tool

Microsoft Standard User Analyzer (pubished on thuesday)

This application compatibility tool helps developers and IT professionals diagnose issues that would prevent a program from running properly as a standard user.

maybe Google is evil 2nd part

Its some time ago that i blogged the abuse of my name in a google adsense campaign. This was a easy case, cause the guy was located in germany.

Now i figured out that jam software ( a competitor ) is using our registered trademark visendo as adword. For me its complicated to handle this in a correct matter. So i have written to google a email with the facts and to delete the Ad.

Google writes me back, that i must send a signed letter. WHAT?!

Hey google. i dont have broken the law, your business model is based on that and you guys get the profit!

part of the answere email

Hello Hannes,

Thank you for your email. Please note that we require a signed copy of your trademark complaint form. Please fill in all the appropriate fields, print the form, sign it, and then fax it to 1-650-649-1774 (Attn: Google Trademark Complaints).If you have any questions, please let me know and I would be glad to help.

Regards,

Sally

Google AdWords Trademark Team

Original Message Follows:

------------------------

From: "Preishuber" <hannXXXXpedv.de>

Subject: Visendo trademark used by adwords

Date: Tue, 23 May 2006 13:20:38 +0200

Complainant's Information: Please provide us with information about yourself.

Your Name*: Hannes Preishuber

Your Title: ceo

Company Name: ppedv AG

Your Relationship to Trademark Owner*: owner

Address: Marktlerstr. 15b 84489 Burghausen

Email*: hannXXXXpedv.de

Phone Number: +49-8677-9889-40

Google AdWords Customer ID (if any):

Trademark Owner (if not Complainant): Please provide us with information about the trademark owner.

Same as above

Trademark Country Word, Design, or Word & Design Registered?

Application or Registration No.

1. visendo germany Word Yes 30460391.0

Any US based lawer who can help?

 

mystery Da Vinci Code in Vista Beta?

today i burned the 4GB ISO image to a +RW DVD and have a strange result. The full surface of the DVD was patternd like:


you can see the full image (1,6MB) here

 

Microsoft is sending 1000 vendor employees 1 week in holidays

as i can read on german news portals, microsoft want to save money in fiscal year 2005 and move the billable hours form testers and developers to 06. Stock goes up for that news.

Perhaps most of you doesnt know. Microsoft fiscal year starts 1st of july. If you work for microsoft as a vendor billing is already closed so you can wait till next fiscal year. From a outside perspective this acting looks a little bit strange cause there are three month (june, jule and part of august) where its nearly impossible to get some deals fixed. This blocks microsoft and there employess in acting.

Posted by preishuber | with no comments

1st time where outputcaching make problems

i an my classes i tell my students that caching and espacially outputcaching are wonderfull features which should be used as often as you can.

Now i had a problem in conjunction with the loginstatus control. If you are logged in, a logout link is displayed and if you are anonymous a login link is displayed which directs the user to the login page.

 On this page caching was set to a very large time, cause of other displayed data. When the user clicks "sign out" nothing happens. When he change to other pages he seems to be logged out. The reason was that the IIS caches the pages and send a 304 command which says the Browser to display the "old" page.

My solution is to add the cookie as parameter

<%@ OutputCache VaryByParam="none" Duration="600" VaryByHeader="Cookie" %>

Its not perfect cause if you are working with data in cookies (which is not best) then caching will not work.

 

Posted by preishuber | 1 comment(s)
Filed under: ,

Back on new Blog Software CS

this is more or less a test posting

the UI have changed completley and i want to figure out how, what and why

took some while and email support to figure out how this works.

Done some ugly trick to get the tags in my [Select Tag] list

posted all of the tags, which i copied from the start page

.NET,.net development,.NET General,.Net Original,.Net,Quotations,.NET  Rocks!,.NET,Whidbey,Agile,Related,Ajax, Architecture,Architecture/Patterns,ASP.NET,Blogging,C#,Community, Databases,Development,Featured,Community,Information,General,General(All Posts), Misc., Miscellaneous,News,Off, topic,Other, Personal,Podcasts,Programming, Rants,Security,SharePoint,Sql,Server,Technology,Tips, Tools,VB.NET,Web,Services,Whidbey,Windows,SharePoint, Services, XML,

[UPDATE] dont write more thant 80 characters in one line or you will have a strange looking weblog

convert RDF to RSS with XSL

Funny headline !?

As i have written in a longer article (german) on www.devtrain.de, i searched for a way to display RDF data (which includes namespaces rdf:RDF) with xmldatasource. XMLDatasource can not handle namespaces in xpath.

Following XSL converts it to RSS which solves the problem

<?xml version="1.0" encoding="utf-8"?>
<
xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<
xsl:template match="/">
<rss>
<
xsl:for-each select="/*/*[name()='item']">
<
item>
<
title> <xsl:value-of select="child::*[name()='title']"/></title>
</
item>
</
xsl:for-each>
</
rss></xsl:template>
</
xsl:stylesheet>

Posted by preishuber | 1 comment(s)
Filed under: ,
More Posts Next page »