Click here to Skip to main content
15,920,630 members
Home / Discussions / Web Development
   

Web Development

 
GeneralCannot get network and local printers on the web server Pin
reza toorani16-Dec-07 4:02
reza toorani16-Dec-07 4:02 
QuestionHow can I make a poll with bar charts on my homepage? Pin
Manfr3d16-Dec-07 0:41
Manfr3d16-Dec-07 0:41 
General.NET Contenet Management System Pin
Naif_Prof15-Dec-07 23:55
Naif_Prof15-Dec-07 23:55 
GeneralRe: .NET Contenet Management System Pin
Pete O'Hanlon16-Dec-07 11:58
mvePete O'Hanlon16-Dec-07 11:58 
Questionhow can i fill my dropdownlist using AJAX Pin
koolprasad200314-Dec-07 19:38
professionalkoolprasad200314-Dec-07 19:38 
AnswerRe: how can i fill my dropdownlist using AJAX Pin
pmarfleet14-Dec-07 22:28
pmarfleet14-Dec-07 22:28 
AnswerRe: how can i fill my dropdownlist using AJAX Pin
Vasudevan Deepak Kumar15-Dec-07 22:18
Vasudevan Deepak Kumar15-Dec-07 22:18 
Questionhow can expire previous page Pin
idsanjeevjha14-Dec-07 16:01
idsanjeevjha14-Dec-07 16:01 
i wants to if user is logout and then don't allow to go back with standard button i am using for logout but it don't control on back button of standard button
[code]
<%@ Language=VBScript %>
<% Option Explicit %>
<html>
<head>
<title>Voice Of Baraunians</title>
<!--#include file="front.inc"-->
</head>
<body ">
<%If Request.Cookies("empno") = "" Then%>
<div style="Position:Absolute; top:150; left:250;background-color: #f0f0f0">
<center><h2><font face="arial" color='blue'>You are not authorised to view this page. You will be prosecuted for this action</font></h2></center>
</div>
<%Else%>
<div style="Position:Absolute; top:150; left:100">
<h2>Logging Out ............</h2>
<h4>Wait a moment.</h4>
</div>
<%
Dim conn
Dim R
Dim vempno
Set conn = Server.CreateObject("ADODB.Connection")
conn.Mode = adModeReadWrite
conn.Open("DSN=Oracle; USER ID = gatepass; PASSWORD = gp")
Set R = Server.CreateObject("ADODB.Recordset")
R.Open "Select empno from emp_authority", conn, adOpenStatic, adLockOptimistic, adCmdText
vempno = Request.Cookies("empno")
R.Find "empno = " & vempno & ""
Response.Cookies("empno") = ""
R.Close
Set R = Nothing
conn.close
Set Conn = Nothing
Response.Redirect "message3.asp"
End If
%>
</body>
</html>

sanjeev

GeneralRe: how can expire previous page Pin
Christian Graus14-Dec-07 18:40
protectorChristian Graus14-Dec-07 18:40 
GeneralRe: how can expire previous page Pin
Michael Sync15-Dec-07 5:01
Michael Sync15-Dec-07 5:01 
QuestionRe: how can expire previous page Pin
idsanjeevjha16-Dec-07 16:05
idsanjeevjha16-Dec-07 16:05 
GeneralCookies without a webserver Pin
Gene Arnold14-Dec-07 8:06
Gene Arnold14-Dec-07 8:06 
GeneralRe: Cookies without a webserver Pin
Christian Graus14-Dec-07 11:46
protectorChristian Graus14-Dec-07 11:46 
GeneralRetrieving an HTML Control at Runtime Pin
Brendan Vogt14-Dec-07 3:54
Brendan Vogt14-Dec-07 3:54 
GeneralRe: Retrieving an HTML Control at Runtime Pin
Christian Graus14-Dec-07 10:07
protectorChristian Graus14-Dec-07 10:07 
GeneralRe: Retrieving an HTML Control at Runtime Pin
pmarfleet14-Dec-07 12:30
pmarfleet14-Dec-07 12:30 
Generalembedding microsoft word into web browser and making the program event driven Pin
hk14-Dec-07 3:52
hk14-Dec-07 3:52 
GeneralAdding an HTML Control to a ASP.NET Panel control Pin
Brendan Vogt14-Dec-07 1:51
Brendan Vogt14-Dec-07 1:51 
GeneralRe: Adding an HTML Control to a ASP.NET Panel control Pin
Christian Graus14-Dec-07 11:41
protectorChristian Graus14-Dec-07 11:41 
GeneralCookies problem Pin
Rahul Babu14-Dec-07 1:37
Rahul Babu14-Dec-07 1:37 
GeneralRe: Cookies problem Pin
Michael Sync15-Dec-07 5:02
Michael Sync15-Dec-07 5:02 
Generaladding row dynamically Pin
neoghy12-Dec-07 23:01
neoghy12-Dec-07 23:01 
GeneralRe: adding row dynamically Pin
Michael Sync13-Dec-07 1:10
Michael Sync13-Dec-07 1:10 
Questionhow to get value of selected item in dropdown list using javascript ? Pin
Arun Senthil Kumar12-Dec-07 18:23
Arun Senthil Kumar12-Dec-07 18:23 
GeneralRe: how to get value of selected item in dropdown list using javascript ? Pin
Michael Sync12-Dec-07 21:04
Michael Sync12-Dec-07 21:04 

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.