User Profile

Collapse

Profile Sidebar

Collapse
darkcode
darkcode
Last Activity: Mar 29 '08, 03:25 PM
Joined: Aug 24 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • darkcode
    replied to Web reference problem
    in .NET
    Problem is solved, the HOSTING company checked the user rights on the .net temp directory and not the windows/temp directory, after some discussions with their support they set the right permissions on the windows temp directory and now it works.
    See more | Go to post

    Leave a comment:


  • darkcode
    started a topic Web reference problem
    in .NET

    Web reference problem

    Sorry for the swedish error message but that's the server.. anyway
    quick translation
    Parsing error message: failed to generate temporary class (result=1).
    error CS2001: File not found C:\WINDOWS\TEMP \icyrvkwb.0.cs
    error CS2008: No Indata have been set.

    Source error
    [no relevant source code]


    my description of the error.
    I made a .net 2.0 web app, it uses a webservice...
    See more | Go to post

  • darkcode
    replied to Missing ?
    in .NET
    I did a sniff on it.. seems my ? is there when I send the data but when they recieve it it's not there.. strange..
    See more | Go to post

    Leave a comment:


  • darkcode
    started a topic Missing ?
    in .NET

    Missing ?

    I'm using the below code to pass data to an old asp page. The people at the asp server location can se the request in their logs but according to them there is no ? after .asp wich makes the asp page unable to get the querystring variables.. I did also try to set the OpenRead("") value to the full url with all the querystring values but got the same result.. why is .NET cutting away my questionmark??? ?

    myClient.Header s.Add("user-agent",...
    See more | Go to post

  • darkcode
    started a topic setting url from code behind
    in .NET

    setting url from code behind

    I came up on a interssting problem today..
    When I set a url to the src on a iframe from code behind the querystring part gets messed up.

    I set attributes.add( "src","aspx?id= 34&buy=true");

    but the code dosnt work and when I check the html code that have been generated I find that the iframe src attribute have had it's & characther replaced by &.. very annoying.. any quickie for...
    See more | Go to post

  • darkcode
    replied to Call to 3rd page from code behind
    in .NET
    I found the solution with these two lines of code

    WebClient myClient = new WebClient();
    myClient.Downlo adString(url);

    but it's a bit slow as the user have to wait for the call to be made..
    anyone know anything about how to put these two lines in a separate thread?
    See more | Go to post

    Leave a comment:


  • darkcode
    replied to Call to 3rd page from code behind
    in .NET
    Hi

    Yes, it's two different webb apps

    I think I can use this http://authors.aspalli ance.com/stevesmith/articles/netscrape2.asp

    that should make a request to the second server.. and if I don't dispaly the data from that server the user of app 1 should not be aware that info have been sent to app 2
    See more | Go to post

    Leave a comment:


  • darkcode
    replied to Call to 3rd page from code behind
    in .NET
    Hi thank you for your answer.
    I want something similar to response.redire ct but I don't want the user to see this "new page" as it should just be called in the code behind to send some data to a different server.

    Server 1 contains a webpage, when a user makes a certain choice on this webpage, information is passed on to Server 2 to store some information in a log. (Server 2 is old and uses asp 2.0 pages so they only...
    See more | Go to post

    Leave a comment:


  • darkcode
    started a topic Call to 3rd page from code behind
    in .NET

    Call to 3rd page from code behind

    Hi all.

    Any genius out there with a simple solution for this?

    protected void LinkButton2_Cli ck(object sender, EventArgs e)
    {

    //Here I want the code to make a call to a different url, almost like a response redirect but the user should not be redirected. Why? because it's a third party server that logs events by recieveing querystrings...

    Label1.Visible = true;...
    See more | Go to post

  • darkcode
    started a topic Call to 3rd page from code behind
    in .NET

    Call to 3rd page from code behind

    Hi all.

    I want to accomplish the following.

    protected void LinkButton2_Cli ck(object sender, EventArgs e)
    {

    Label1.Visible = true;
    }
    See more | Go to post
No activity results to display
Show More
Working...