Click here to Skip to main content
15,922,584 members
Home / Discussions / Web Development
   

Web Development

 
GeneralMinimum browser window width without scroll bars Pin
saedn6-Mar-05 0:04
susssaedn6-Mar-05 0:04 
GeneralIHTMLElementCollection and XP SP2 Pin
Andrew Kulikov5-Mar-05 22:52
Andrew Kulikov5-Mar-05 22:52 
GeneralJavascript, split and convert Pin
Esmo20005-Mar-05 14:41
Esmo20005-Mar-05 14:41 
GeneralRe: Javascript, split and convert Pin
Abuhijleh5-Mar-05 23:32
Abuhijleh5-Mar-05 23:32 
GeneralRe: Javascript, split and convert Pin
Esmo20006-Mar-05 3:04
Esmo20006-Mar-05 3:04 
Questioninitiating my web app. from an icon & costumizing the IE window? Pin
kimo_helmy5-Mar-05 11:28
kimo_helmy5-Mar-05 11:28 
GeneralNo Back page Pin
sainathkm5-Mar-05 9:57
sainathkm5-Mar-05 9:57 
GeneralRe: No Back page Pin
surya2217-Mar-05 21:58
surya2217-Mar-05 21:58 
use this code on the main page

<%
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"

If Len(Session("FirstTimeToPage")) > 0 then
'The user has come back to this page after having visited
'it... wipe out the session variable and redirect them back
'to the login page
Session("FirstTimeToPage") = ""
Response.Redirect "page2.asp"
Response.End
End If

'If we reach here, the user can view the page, create the form
%>









after that on the page2.asp use the following code

Session("FirstTimeToPage") = "NO"

try it
GeneralJavaScript Triggers Pin
Bassam Abdul-Baki4-Mar-05 3:18
professionalBassam Abdul-Baki4-Mar-05 3:18 
GeneralRe: JavaScript Triggers Pin
theJazzyBrain8-Mar-05 7:45
theJazzyBrain8-Mar-05 7:45 
Generaltextbox validation Pin
Bhuvanish3-Mar-05 7:00
Bhuvanish3-Mar-05 7:00 
GeneralRe: textbox validation Pin
JKroschel3-Mar-05 9:18
JKroschel3-Mar-05 9:18 
GeneralParser Error on Localhost Pin
gaSquare3-Mar-05 5:04
gaSquare3-Mar-05 5:04 
GeneralRe: Parser Error on Localhost Pin
dazzler215-Apr-05 15:31
dazzler215-Apr-05 15:31 
GeneralRe: Parser Error on Localhost Pin
dazzler217-Apr-05 17:34
dazzler217-Apr-05 17:34 
GeneralASP not working Pin
tincatinca3-Mar-05 0:14
tincatinca3-Mar-05 0:14 
GeneralMultiple actions in one button Pin
Bhuvanish2-Mar-05 10:39
Bhuvanish2-Mar-05 10:39 
GeneralRe: Multiple actions in one button Pin
Shog92-Mar-05 10:52
sitebuilderShog92-Mar-05 10:52 
GeneralRe: Multiple actions in one button Pin
Bhuvanish3-Mar-05 7:02
Bhuvanish3-Mar-05 7:02 
GeneralFocus and onKeyUp event problem Pin
hwait2-Mar-05 3:22
hwait2-Mar-05 3:22 
Generalinvalid syntax error Pin
ABBASI_RA2-Mar-05 3:04
ABBASI_RA2-Mar-05 3:04 
GeneralIs there any way to autopostback immediately when textbox's content is changed Pin
Kelvin Ang2-Mar-05 2:39
Kelvin Ang2-Mar-05 2:39 
GeneralRe: Is there any way to autopostback immediately when textbox's content is changed Pin
ABBASI_RA2-Mar-05 2:54
ABBASI_RA2-Mar-05 2:54 
GeneralRe: Is there any way to autopostback immediately when textbox's content is changed Pin
Kelvin Ang2-Mar-05 3:14
Kelvin Ang2-Mar-05 3:14 
GeneralRe: Is there any way to autopostback immediately when textbox's content is changed Pin
ABBASI_RA2-Mar-05 3:22
ABBASI_RA2-Mar-05 3:22 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.