Scripting :: Θέματα
Πρώτη :: Προηγούμενη :: Επόμενη :: Τελευταία Σελίδα 59 από 150
|
|
|
Κατέβασα μερικά asp στον υπολογιστή μου για να τα χρησιμοποιήσω στο site που φτιάχνω. Πάω να τα ανοίξω με τον ie για να τα εκτελέσω, και ο browser πριν ανοίξει κλείνει. Αυτό πού μπορεί να οφείλεται? Μήπως ξέρει κανείς πως μπορώ να προσαρμόσω τα asp στο site μου?
Από:
hackeras - 19/1/2004
2 απαντήσεις | Σχολίασε | Ψήφισε η καταχώρησε σε δίκτυο social news
|
|
|
|
Καλημέρα,
Αυτό που θέλω να μάθω είναι αν μπορώ να τρέξω asp σε apache, τον οποίο έχω εγκαταστήσει στον υπολογιστή μου, ο οποίος τώρα είναι configured με php, χωρίς βέβαια να "σβήσω" την php.
Ευχαριστώ.
Από:
_tasos - 19/1/2004
1 απαντήσεις | Σχολίασε | Ψήφισε η καταχώρησε σε δίκτυο social news
|
|
|
|
Εχω μια βαση σε access με τους κωδικούς για την είσοδο του χρηστη σε ελεγχομενη περιοχη.
Αfου ο χρηστης δωσει τον σωστο κωδικο και μπει στην περιοχή, θέλω ΜΕ ΒΑΣΗ ΤΟ ΠΟΙΟΣ ΧΡΗΣΤΗΣ ΕΙΝΑΙ (προφανως με βαση τον κωδικό του) να του εμφανίζει ένα μήνυμα που του έχω αφήσει (10 λέξεις) στην αρχική ή σε άλλη βαση MDB.
Σημειοτεον οτι αφου δωσει τον σωστο κωδικο, "κυκλοφορεί" στην ελεγχομενη περιοχή με ...\selidaX.asp?name=ΧΧΧΧ
ευχαριστω - παραθετω μερικά απο τα αρχεια που χρησιμοποιω
==========================
<%
'If the session variable is False or does not exsist then redirect the user to the unauthorised user page
If Session("blnIsUserGood") = False or IsNull(Session("blnIsUserGood")) = True then
'Redirect to unathorised user page
Response.Redirect"unauthorised_user_page.htm"
End If
%>
Prive - Αρχική σελίδα
<%
'Dimension Variables
Dim strUserName 'Holds the name of the user
'Get the users name passed from the previous page
strUserName = Request.QueryString("name")
%>
Α.Γ.Μ.Σ
<% =strUserName %> καλωσόρισες στην ιδιωτική μας σελίδα.
....
==========================
<<<>>>>>>>
<%
'Dimension variables
Dim adoCon 'Database Connection Variable
Dim strCon 'Holds the Database driver and the path and name of the database
Dim rsCheckUser 'Database Recordset Variable
Dim strAccessDB 'Holds the Access Database Name
Dim strSQL 'Database query sring
Dim strUserName 'Holds the user name
'Initalise the strUserName variable
strUserName = Request.Form("txtUserName")
'Check the database to see if user exsits and read in there password
'Initialise the strAccessDB variable with the name of the Access Database
strAccessDB = "users"
'Create a connection odject
Set adoCon = Server.CreateObject("ADODB.Connection")
'Database connection info and driver
'strCon = "DRIVER={Microsoft Access Driver (*.mdb)};uid=;pwd=letmein; DBQ=" & Server.MapPath(strAccessDB)
strCon = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath(strAccessDB)
'Set an active connection to the Connection object
adoCon.Open strCon
'Create a recordset object
Set rsCheckUser = Server.CreateObject("ADODB.Recordset")
'Initalise the strSQL variable with an SQL statement to query the database
strSQL = "SELECT tblUsers.Password FROM tblUsers WHERE tblUsers.UserID ='" & strUserName & "'"
'Query the database
rsCheckUser.Open strSQL, strCon
'If the recordset finds a record for the username entered then read in the password for the user
If NOT rsCheckUser.EOF Then
'Read in the password for the user from the database
If (Request.Form("txtUserPass")) = rsCheckUser("Password") Then
'If the password is correct then set the session variable to True
Session("blnIsUserGood") = True
'Close Objects before redirecting
Set adoCon = Nothing
Set strCon = Nothing
Set rsCheckUser = Nothing
'Redirect to the authorised user page and send the users name
Response.Redirect"pppp.asp?name=" & strUserName
End If
End If
'Close Objects
Set adoCon = Nothing
Set strCon = Nothing
Set rsCheckUser = Nothing
'If the script is still running then the user must not be authorised
Session("blnIsUserGood") = False
'Redirect to the unautorised user page
Response.Redirect"unauthorised_user_page.htm"
%>
Από:
(anonymous) - 19/1/2004
4 απαντήσεις | Σχολίασε | Ψήφισε η καταχώρησε σε δίκτυο social news
|
|
|
|
loipon exo win xp pro iis server na trexei se cable sindesh. o server doulebh kanonika. exo balei kai to smtp tora pos mporo na kano ti diko mou mail server? ti programata prpei na balo oste na exo xristes na exoun to diko tous pop email sto diko mou domain? ti prpei na balo sto mx record (to ip mou tou server ) basika to exo sto mydomain.com to site kanei ip pointing sto ip tou server. tora den ksero pos na kano xristes na exoun pop email acct sto diko mou sever. paidia oti kserete einai xrisimo. euxaristo.
Από:
nikoss - 15/1/2004
1 απαντήσεις | Σχολίασε | Ψήφισε η καταχώρησε σε δίκτυο social news
|
|
|
|
το ένα email προυπάρχει, ακριβώς όπως στο mailform.asp
το 2ο email να το παίρνει από πεδίο της φόρμας
Τα 2 emails να έχουν και διαφορετικά subject kai body.
Δεν ξέρω τι να προσθέσω στο mailform.asp
Ευχαριστώ
Από:
usmart - 25/12/2003
1 απαντήσεις | Σχολίασε | Ψήφισε η καταχώρησε σε δίκτυο social news
|
Πρώτη :: Προηγούμενη :: Επόμενη :: Τελευταία Σελίδα 59 από 150
Νέα Ερώτηση |
Καταχώρηση site