|
-
Jul 20th, 2003, 09:44 PM
#1
-
Jul 21st, 2003, 02:14 AM
#2
Hyperactive Member
no... endresponse will end the pages execution on that line (if set to true) otherwise execution will continue to the end of the page then redirect
correct me if im wrong anyone
-
Jul 21st, 2003, 02:58 PM
#3
Originally posted by tailz
no... endresponse will end the pages execution on that line (if set to true) otherwise execution will continue to the end of the page then redirect
correct me if im wrong anyone
oh man thanks! good thing I noticed that it's an overloaded function...
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jul 21st, 2003, 09:29 PM
#4
Hyperactive Member
In regards to the first query, I would probably just call the setTimeout method in JavaScript. If anyone knows a better way using .Net I'd like to know as well 
Cheers
MarkusJ
-
Jul 22nd, 2003, 12:39 AM
#5
Hyperactive Member
yea the redirection after a timeperiod, I'm 99% sure, would have to be done client side
-
Jul 23rd, 2003, 02:15 AM
#6
-
Jul 23rd, 2003, 02:22 AM
#7
Hyperactive Member
something like this... (untested )
Code:
<HEAD>
<SCRIPT>
function forward() {
//Redirect to new page
self.location = "http://www.targetpage.co.uk/";
}
</SCRIPT>
</HEAD>
<BODY>
<SCRIPT>
setTimeout("forward()",2000); //Wait for 2000 milliseconds
</SCRIPT>
</BODY>
-
Jul 23rd, 2003, 05:35 PM
#8
hey thanks, btw this one worked, I havent tried yours:
Response.Write("<META HTTP-EQUIV=""refresh"" CONTENT=""3;URL=some url"">")
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jul 24th, 2003, 01:15 AM
#9
Hyperactive Member
yea does same job, just yours is simpler 
All the time you'll see "you are being redirected to diff url, if browser doesnt redirect you click here..." etc
does that mean some browsers dont support this? if so, anyone wanna list them?
-
Jul 24th, 2003, 02:09 AM
#10
Originally posted by tailz
yea does same job, just yours is simpler 
All the time you'll see "you are being redirected to diff url, if browser doesnt redirect you click here..." etc
does that mean some browsers dont support this? if so, anyone wanna list them?
hmm probably... saying that, something wierd happened with this, I dont know what I did but no matter how many times I refreshed the page, it wouldnt redirect. I had to close the page and open a new page before it worked fine. I guess it could be because of asp.net stuff
umm probably old borwsers dont support it... dunno maybe you'll get teh same thing if you've disabled scripting languages in your browser
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|