Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
D

Daniel Kirstenpfad

@Daniel Kirstenpfad
About
Posts
16
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • MTP over IP in C# (Windows Media Player Sync Protocol)
    D Daniel Kirstenpfad

    Jk published in his weblog(JKOntheRun) an article about the problem that maybe the new Windows Media Player 10 and the new "playsforsure" Features will never be available for actual Windows Mobile 2003 Pocket-PCs... thats a thing I am also worried about these days - because why the hell did I spent more than €600 for a device, with more than adequate memory capacity for all types of media, when it does not integrate in the existing "Media-World" that is drawn by available and upcoming Microsoft Products. Well have a look at the portable MediaCenter Devices... neat and really cool gadgets - a must have - you can sync them with your home pc´s - you can have the movies from your home´s MediaCenter on your portable MediaCenter, you can buy content from Microsofts Content-providing Partners... okay thats cool isn´t it. - But infact - I got that nifty "all-in-one device suitable for every purpose" called Pocket PC.... - Iam watching high-quality-mpeg4 movies on my PocketPCs for months... I listen to my mp3´s, ogg´s, aac´s and whatsoever... but those cool integration-feeling doesn´t come up with my PocketPC... and the Windows Media Player 10 for Windows Mobile would help that a bit - but what would sort things out: to have the same integration and Features that are available for other, compared to the Pocket PC dumb, devices.... And that´s why I started the "MTP-over-IP" Project. Because MTP is the Protocol all this cool devices use to communicate with the Applications... (there are some more like auto-discovery and so on...but first things first)... a working Implementation of MTP would make it possible that the Windows Media Player 10 on the PC could recognize the Pocket PC as a Media Device, as a Smart Device that it is... So. Due to quite heavy workload I have the moment I cannot do such a project alone - so I would like to ask everyone that is interested and capable of helping me with this project in doing so. At the moment the first lines of code are already written - I started the MTP Library in C# based on the .NET Framework at the Moment - the goal is to get the MTP Protocol working, on the .NET Framework and on the .NET Compact Framework... I published the first lines of code some days ago... you can grab it here (sorry that the blog-article is mainly in German...) Some links to the source: http://maniac.rz.tu-ilmenau.de/schrankmonster/PermaLink,guid,bc4f4294-54bc-4675-87c3-a8c892ab4b3

    C# csharp help dotnet performance

  • Access a local file from ASP.NET Webcontrol
    D Daniel Kirstenpfad

    Hello i wrote a Webcontrol that tries to access a Textfile on the local hard drive (C:\news.txt) - but it does not work at all. Can anybody tell me how to get this work ?

    ASP.NET csharp asp-net tutorial question announcement

  • Storing Class(Object) in a SQL Database (C#)
    D Daniel Kirstenpfad

    Hello I have a class that holds some interesing Data. Now i serialize this class (BinaryFormater) and i store this Class into a "IMAGE" Column of a SQL Table. After that i retrieve the Column from the Table and deserialize it, so i can get my Data-holding Class back. Thats the theory. Does anybody know how to do this correct ? Does anybody have some samples ? mfG. Daniel Kirstenpfad

    Database database csharp tutorial question

  • Storing Class(Object) in a SQL Database
    D Daniel Kirstenpfad

    Hello I have a class that holds some interesing Data. Now i serialize this class (BinaryFormater) and i store this Class into a "IMAGE" Column of a SQL Table. After that i retrieve the Column from the Table and deserialize it, so i can get my Data-holding Class back. Thats the theory. Does anybody know how to do this correct ? Does anybody have some samples ?

    ASP.NET database tutorial question

  • Creating complete HTML Page on the Fly
    D Daniel Kirstenpfad

    sometimes the harder way is the better way ;)

    ASP.NET csharp html asp-net question

  • Creating complete HTML Page on the Fly
    D Daniel Kirstenpfad

    well i´ve managed it by overrideing the Page-Render-Method.... and it works

    ASP.NET csharp html asp-net question

  • Creating complete HTML Page on the Fly
    D Daniel Kirstenpfad

    Hello i want to do that: you call the aspx like that: http://localhost/dummy/dummy.aspx?parameter=hello and the ASP.NET WebApplication should create a HTML Page and let the Browse Display it like that: ..blah... HELLO ! As you can see the HTML Page that is created by the WebApplication and later-on displayed by the Browser. in the future i will create Frame-Sets with this WebApplication - but all ways i tried ended in the fact that the webapplication-HTML-Output is always encapsulated into a form... but i need to output plain HTML Source that does have NO form at all.. (like for a frame-set). Any suggestions ? mfG. Daniel Kirstenpfad

    ASP.NET csharp html asp-net question

  • Additional information: Format of the file 'tfsnalib' is invalid.
    D Daniel Kirstenpfad

    Hello I´ve got an ASP.NET Webapplication that uses an unmanaged DLL to call some C++ functions. Everything works fine for about 1 month..but suddenly this Error occurs, obviously at the point i start the WebApplication and the DLL should be loaded: "A first chance exception of type 'System.BadImageFormatException' occurred in mscorlib.dll" Additional information: Format of the file 'blahlib' is invalid." Well. The DLL is correct. On another System exactly THIS DLL works correctly. What happened ? How can i fix this ?

    ASP.NET help question csharp c++ asp-net

  • Frames in ASP.NET
    D Daniel Kirstenpfad

    because the desired layout needs them... Think of a "Windows Explorer" ... or a Newsgroups Reader... ... the Newsgroup Reader is the desired App.... - but how to do it without frames ? mfg. Daniel

    ASP.NET csharp asp-net question

  • Frames in ASP.NET
    D Daniel Kirstenpfad

    Hi is there an easy way to use Frames in ASP.NET. Especially the fact that i have to pass Data between different Frames is difficult to handle. maybe you can offer me some samples ? mfG. Daniel Kirstenpfad

    ASP.NET csharp asp-net question

  • URL Escapeing
    D Daniel Kirstenpfad

    HeyHo i´ve got a URL Escaping Problem (URI)... i have: a string with "http://blah blah" inside i would like to have: a string with "http://blah%20blah" inside... .. and for all the other funny Strings a working Escaping Is there a useable and not so complicated way (Uri.EscapeString would do it..but is protected....) mfG. Daniel Kirstenpfad

    ASP.NET help

  • Default Button when ENTER is pressed
    D Daniel Kirstenpfad

    Hi maybe i´m blind - but i don´t find any way to define the default Button of a webform. The only behaviour i would like to get: The Webform starts... the user enters something...and when i now presses the enter key; a Button-Action that i define is called... Does anyone know how to do this ? Because obviously the Enter-Key is bound to nothing but a Refresh Action...

    ASP.NET tutorial question

  • _VIEWSTATE is toooooo big
    D Daniel Kirstenpfad

    Well; i fixed my problem by using sessionstate Stuff... but there another problem just poped-off.... iam saving the very big datatable i´m displaying into the sessiondata Object. Okay.. iam restoreing it... but it seems that the sessionstate object does not make any difference between users. In fact every user opening my WebForm just gets the datatable of the last user.... does anybody know how to treat this problem ? mfG. Daniel Kirstenpfad

    ASP.NET html sysadmin question

  • _VIEWSTATE is toooooo big
    D Daniel Kirstenpfad

    HiHo okay... i got a dynamic generated Page... and there is the VieState hidden Field in the HTML Source passed to the user... okay okay..its needed - but is there a way to shrink the size of this viewstate without loosing features...maybe cacheing it on the server itself ? mfG. Daniel Kirstenpfad

    ASP.NET html sysadmin question

  • Insert Plain HTML Code in ASP.NET page
    D Daniel Kirstenpfad

    Thanks mate... that did exactly what i was looking for... at least the literal control does not show up in the toolbox... even not in vs2003 mfG. Daniel Kirstenpfad

    ASP.NET csharp html asp-net help

  • Insert Plain HTML Code in ASP.NET page
    D Daniel Kirstenpfad

    HiHo i need to insert Plain HTML Code into my ASP.NET WebForm... well: I got several objects like textbox, buttons and so on... but after that, at a specific location in the html-source i need to insert dynamically generated HTML-Source. Who of you can help me out mfG. Daniel Kirstenpfad

    ASP.NET csharp html asp-net help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups