User Profile
Collapse
-
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. -
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... -
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..Leave a comment:
-
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",... -
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... -
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?Leave a comment:
-
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 2Leave a comment:
-
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...Leave a comment:
-
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;... -
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;
}
No activity results to display
Show More
Leave a comment: