Search

You searched for the word(s): userid:873875

Matching Posts

  • Re: '__o' is not declared - what does it mean?

    It always outputs, if you have a <%= something%> try remove the = and write a declaration instead
    Posted to Visual Web Developer 2005 Express (Forum) by tux on 11/14/2009
  • Re: '__o' is not declared - what does it mean?

    Try a bit unconventional thinking. If your intellisense variable is out of scope, then you can simply create the variable in your class/page/module and the warning/error goes away. Simply add: Public __o As Object ' VB.net public object __o ; // C#
    Posted to Visual Web Developer 2005 Express (Forum) by tux on 10/29/2009
  • Re: Replacing CGI Script called from Java Applet

    Solved using this code: Function readme() As String Dim sr As System.IO.StreamReader = New System.IO.StreamReader(Page.Request.InputStream()) Return sr.ReadToEnd().Trim() End Function Sub WriteToFile(Optional ByRef strStringToWrite As String = "Hello World") Dim fp As System.IO.StreamWriter Try fp = System.IO.File.CreateText(Server.MapPath("./") & "test.txt") fp.WriteLine(strStringToWrite) Response.Write("File Succesfully created!") fp.Close() Catch err
    Posted to Migrating from PHP to ASP.NET (Forum) by tux on 10/29/2009
  • Can a process block the entire server?

    Question: In a document management system, I have the feature that one can copy an entire folder including all subfolders and subfolder's subfolder etc. Now, if one copies the document root, this takes about 5 to 10 minutes. Now assume a user clicks on the "Copy" button (copying the root folder). Then, a javascript progress bar appears in the user's browser, and runs in the user's browser until the copy process has completed. During this 5 minutes where the server copies the
    Posted to Web Forms (Forum) by tux on 10/28/2009
  • Re: Big problem with Diagnostics.Process

    Yes, it really starts twice. Removed the second start, but the misbehaving persists, though only with a single process, as it should. Impersonation doesn't work with my pipline mode. I've now written a C++ executable that calls the converter via popen, and reads the result back. It works fine, but only for exactly as long as it calls the process outside IIS. Unfortunately, to work as CGI, it must work inside IIS. And then it doesn't work. Is that some kind of bug in IIS 5 ? What's
    Posted to Getting Started (Forum) by tux on 9/10/2009
  • Re: Problem with receiving HTTP Post data

    [quote user="booler"] [quote user="tux"]Nope, doesn't help.[/quote] Well, no, I would imagine it didn't. But, to be fair, if the original post had contained something along the lines of 'I want to log the contents of the HTTP request to disk' then you may well have received some more useful responses But you got it working though, so all's well that ends well. [/quote] Well, the problem was rather that I didn't know what to retrieve and where from. The
    Posted to Web Forms (Forum) by tux on 9/9/2009
  • Big problem with Diagnostics.Process

    I need help with the code below. I try to convert a AutoCAD file from the format dwg to the format dwf. Then, the dwf file is downloaded and opened on the client computer using a java applet. The command used to convert the dwg file on the command-line is: C:\inetpub\wwwroot\COR-Basic\cadviewer\converter\ax2008.exe -i="C:\inetpub\wwwroot\test\container\DU38_EG00_070116.dwg" -o="C:\inetpub\wwwroot\COR-Basic\cadviewer\files\DU38_EG00_070116.dwf" -f=dwf -model -text this works when
    Posted to Getting Started (Forum) by tux on 9/9/2009
  • Problem with receiving HTTP Post data

    $method = $ENV{'REQUEST_METHOD'}; if ($method eq "GET") { $form_info = $ENV{'QUERY_STRING'}; print LOGFILE "Method found was: REQUEST_METHOD\n"; } elsif ($method eq "POST"){ # Get the input $data_size = $ENV{'CONTENT_LENGTH'}; read(STDIN,$form_info,$data_size); print LOGFILE "\nMethod found was: POST\n"; I've a problem changing the following Perl CGi Script to asp.net Whatever I do, I cannot get the data. The problem is the $ENV
    Posted to Web Forms (Forum) by tux on 9/8/2009
  • Re: Problem with receiving HTTP Post data

    Nope, doesn't help. But I found the simple answer that I haven't found in an entire weekend: Function readme() As String Dim sr As System.IO.StreamReader = New System.IO.StreamReader(Page.Request.InputStream()) Return sr.ReadToEnd().Trim() End Function Sub WriteToFile(Optional ByRef strStringToWrite As String = "Hello World") Dim fp As System.IO.StreamWriter Try fp = System.IO.File.CreateText(Server.MapPath("./") & "test.txt") fp.WriteLine(strStringToWrite
    Posted to Web Forms (Forum) by tux on 9/8/2009
  • Re: Virtualized installation

    I've had installed Windows 7, and it really isn't much different from Vista. The only difference I noticed, apart from the UAC (which I anyway disabled), is that you can now move the running applications in the task bar, but one could do that with Gnome on Linux for years. But unfortunately, they removed the ShowDesktop icon from the taskbar, which is very annoying. Since it uses the same kernel as vista, it won't support more (old) hardware, and probably it also won't be more stable
    Posted to Installation and Setup (Forum) by tux on 9/3/2009
Page 1 of 3 (27 items) 1 2 3 Next >