473,770 Members | 4,055 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

session variables

I think I have figured out my problem but I don't know how to solve it. We
are going to start using a forums package and do not want our users to have
to login to both our site, and then again to the forums package. The
creator of the forums package provides what seems to be an easy workaround
for this. Create two session variables, one for ID, the other for Password,
and his program will take care of the rest.

I have all of my forums package off the root of the drive that has my
Inetpub directory, and within my IIS settings have a virtual directory
pointing to the actual folder. I'm wondering that since my actual forums
folder is outside my IIS, or if its a virtual directors my Session Variables
are not being picked up. I also wonder this for the following reason. On
all of my pages I have

<% If Session("Logged In")= "Proceed" Then
Else
Server.Transfer "LoginReturning .asp"
End If
%>

which keeps people from bookmarking and coming back in without logining back
in to the site. However on the forums default.asp page this does not work,
which leads me to believe once again it's a placement issue on my hardrive
with my folders. If I am wrong in my assumptions, and I can do this, how
would I pass the session variable to my default.asp page in my forums
folder? Here is the page that does the checking of my login verification:

<%
Option Explicit
Dim strConnect
%>
<!-- #Include File="Data.asp" -->
<html>
<head>
<meta name="GENERATOR " content="Micros oft FrontPage 6.0">
<meta name="ProgId" content="FrontP age.Editor.Docu ment">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>
<body>
<%

Dim objconn, objrs
Dim lcsql, strName, strEmail, strPassword, Trial, Expiredate,
strCookie2

Set objconn = Server.CreateOb ject("ADODB.Con nection")
Set objrs=Server.Cr eateObject("ADO DB.Recordset")
objconn.open strConnect

Trial = Date

strEmail = request.form("E mail")
strPassword = request.form("p assword")

lcsql="select * FROM results WHERE Email =
'"+request.form ("Email")+"' and password = '"+request.form ("password")+"' "
objrs.Open lcsql,objconn,0 ,1,1

'No records returned because user not found

If objrs.EOF then
%>
<Script Language=VBscri pt>
ReturnItem = msgbox( "Either your name or password was
incorrect, try again.", vbOKOnly, "INCORRECT ENTRY")
</Script>
<%
Server.Transfer "LoginReturning .asp"

else
Session("Logged In") = "Proceed"

'The next two session vars are for the forums page
Session("USER") = request.form("E mail")
Session("PASSWO RD") = request.form("p assword")
'Check to see that Session variables were indeed assigned
response.write Session("PASSWO RD")
response.write Session ("USER")
Server.Transfer "Index.asp"
end if
objrs.Close
objconn.Close
%>

</body>

</html>

Terry
Nov 5 '06 #1
5 1686

"Terry On Windigo" <te***@windigo. comwrote in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
I think I have figured out my problem but I don't know how to solve it.
We
are going to start using a forums package and do not want our users to
have
to login to both our site, and then again to the forums package. The
creator of the forums package provides what seems to be an easy workaround
for this. Create two session variables, one for ID, the other for
Password,
and his program will take care of the rest.

I have all of my forums package off the root of the drive that has my
Inetpub directory, and within my IIS settings have a virtual directory
pointing to the actual folder. I'm wondering that since my actual forums
folder is outside my IIS, or if its a virtual directors my Session
Variables
are not being picked up. I also wonder this for the following reason. On
all of my pages I have

<% If Session("Logged In")= "Proceed" Then
Else
Server.Transfer "LoginReturning .asp"
End If
%>

which keeps people from bookmarking and coming back in without logining
back
in to the site. However on the forums default.asp page this does not
work,
which leads me to believe once again it's a placement issue on my hardrive
with my folders. If I am wrong in my assumptions, and I can do this, how
would I pass the session variable to my default.asp page in my forums
folder? Here is the page that does the checking of my login verification:

<%
Option Explicit
Dim strConnect
%>
<!-- #Include File="Data.asp" -->
<html>
<head>
<meta name="GENERATOR " content="Micros oft FrontPage 6.0">
<meta name="ProgId" content="FrontP age.Editor.Docu ment">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>
<body>
<%

Dim objconn, objrs
Dim lcsql, strName, strEmail, strPassword, Trial, Expiredate,
strCookie2

Set objconn = Server.CreateOb ject("ADODB.Con nection")
Set objrs=Server.Cr eateObject("ADO DB.Recordset")
objconn.open strConnect

Trial = Date

strEmail = request.form("E mail")
strPassword = request.form("p assword")

lcsql="select * FROM results WHERE Email =
'"+request.form ("Email")+"' and password = '"+request.form ("password")+"' "
objrs.Open lcsql,objconn,0 ,1,1

'No records returned because user not found

If objrs.EOF then
%>
<Script Language=VBscri pt>
ReturnItem = msgbox( "Either your name or password
was
incorrect, try again.", vbOKOnly, "INCORRECT ENTRY")
</Script>
<%
Server.Transfer "LoginReturning .asp"

else
Session("Logged In") = "Proceed"

'The next two session vars are for the forums page
Session("USER") = request.form("E mail")
Session("PASSWO RD") = request.form("p assword")
'Check to see that Session variables were indeed assigned
response.write Session("PASSWO RD")
response.write Session ("USER")
Server.Transfer "Index.asp"
end if
objrs.Close
objconn.Close
%>

</body>

</html>

Terry
It isn't a problem of where the folder is placed physically. The fact that
you have made the folder a virtual folder under your own application would
make it part of your application and therefore able to see the session
variables for the app.

The problem most likely is that you have made this virtual folder into an
application in it's own right. Open the properties on the virtual folder
and on the virtual directory tab click the remove button. This stops the
folder from acting as it's own application.

Nov 5 '06 #2
I really had high hopes that would work, but it didn't. The forums .asp
page isn't picking up the session vars.
"Anthony Jones" <An*@yadayadaya da.comwrote in message
news:%2******** ********@TK2MSF TNGP04.phx.gbl. ..
>
"Terry On Windigo" <te***@windigo. comwrote in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
>I think I have figured out my problem but I don't know how to solve it.
We
>are going to start using a forums package and do not want our users to
have
>to login to both our site, and then again to the forums package. The
creator of the forums package provides what seems to be an easy
workaround
for this. Create two session variables, one for ID, the other for
Password,
>and his program will take care of the rest.

I have all of my forums package off the root of the drive that has my
Inetpub directory, and within my IIS settings have a virtual directory
pointing to the actual folder. I'm wondering that since my actual forums
folder is outside my IIS, or if its a virtual directors my Session
Variables
>are not being picked up. I also wonder this for the following reason.
On
all of my pages I have

<% If Session("Logged In")= "Proceed" Then
Else
Server.Transfer "LoginReturning .asp"
End If
%>

which keeps people from bookmarking and coming back in without logining
back
>in to the site. However on the forums default.asp page this does not
work,
>which leads me to believe once again it's a placement issue on my
hardrive
with my folders. If I am wrong in my assumptions, and I can do this, how
would I pass the session variable to my default.asp page in my forums
folder? Here is the page that does the checking of my login
verification :

<%
Option Explicit
Dim strConnect
%>
<!-- #Include File="Data.asp" -->
<html>
<head>
<meta name="GENERATOR " content="Micros oft FrontPage 6.0">
<meta name="ProgId" content="FrontP age.Editor.Docu ment">
<meta http-equiv="Content-Type" content="text/html;
charset=window s-1252">
<title>New Page 1</title>
</head>
<body>
<%

Dim objconn, objrs
Dim lcsql, strName, strEmail, strPassword, Trial, Expiredate,
strCookie2

Set objconn = Server.CreateOb ject("ADODB.Con nection")
Set objrs=Server.Cr eateObject("ADO DB.Recordset")
objconn.open strConnect

Trial = Date

strEmail = request.form("E mail")
strPassword = request.form("p assword")

lcsql="select * FROM results WHERE Email =
'"+request.for m("Email")+"' and password =
'"+request.for m("password")+" '"
objrs.Open lcsql,objconn,0 ,1,1

'No records returned because user not found

If objrs.EOF then
%>
<Script Language=VBscri pt>
ReturnItem = msgbox( "Either your name or password
was
>incorrect, try again.", vbOKOnly, "INCORRECT ENTRY")
</Script>
<%
Server.Transfer "LoginReturning .asp"

else
Session("Logged In") = "Proceed"

'The next two session vars are for the forums page
Session("USER") = request.form("E mail")
Session("PASSWO RD") = request.form("p assword")
'Check to see that Session variables were indeed
assigned
response.write Session("PASSWO RD")
response.write Session ("USER")
Server.Transfer "Index.asp"
end if
objrs.Close
objconn.Close
%>

</body>

</html>

Terry

It isn't a problem of where the folder is placed physically. The fact
that
you have made the folder a virtual folder under your own application would
make it part of your application and therefore able to see the session
variables for the app.

The problem most likely is that you have made this virtual folder into an
application in it's own right. Open the properties on the virtual folder
and on the virtual directory tab click the remove button. This stops the
folder from acting as it's own application.

Nov 6 '06 #3

"Terry On Windigo" <te***@windigo. comwrote in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
I think I have figured out my problem but I don't know how to solve it.
We
are going to start using a forums package and do not want our users to
have
to login to both our site, and then again to the forums package. The
creator of the forums package provides what seems to be an easy workaround
for this. Create two session variables, one for ID, the other for
Password,
and his program will take care of the rest.

I have all of my forums package off the root of the drive that has my
Inetpub directory, and within my IIS settings have a virtual directory
pointing to the actual folder. I'm wondering that since my actual forums
folder is outside my IIS, or if its a virtual directors my Session
Variables
are not being picked up. I also wonder this for the following reason. On
all of my pages I have

<% If Session("Logged In")= "Proceed" Then
Else
Server.Transfer "LoginReturning .asp"
End If
%>

which keeps people from bookmarking and coming back in without logining
back
in to the site. However on the forums default.asp page this does not
work,
which leads me to believe once again it's a placement issue on my hardrive
with my folders. If I am wrong in my assumptions, and I can do this, how
would I pass the session variable to my default.asp page in my forums
folder? Here is the page that does the checking of my login verification:

<%
Option Explicit
Dim strConnect
%>
<!-- #Include File="Data.asp" -->
<html>
<head>
<meta name="GENERATOR " content="Micros oft FrontPage 6.0">
<meta name="ProgId" content="FrontP age.Editor.Docu ment">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>
<body>
<%

Dim objconn, objrs
Dim lcsql, strName, strEmail, strPassword, Trial, Expiredate,
strCookie2

Set objconn = Server.CreateOb ject("ADODB.Con nection")
Set objrs=Server.Cr eateObject("ADO DB.Recordset")
objconn.open strConnect

Trial = Date

strEmail = request.form("E mail")
strPassword = request.form("p assword")

lcsql="select * FROM results WHERE Email =
'"+request.form ("Email")+"' and password = '"+request.form ("password")+"' "
objrs.Open lcsql,objconn,0 ,1,1

'No records returned because user not found

If objrs.EOF then
%>
<Script Language=VBscri pt>
ReturnItem = msgbox( "Either your name or password
was
incorrect, try again.", vbOKOnly, "INCORRECT ENTRY")
</Script>
<%
Server.Transfer "LoginReturning .asp"

else
Session("Logged In") = "Proceed"

'The next two session vars are for the forums page
Session("USER") = request.form("E mail")
Session("PASSWO RD") = request.form("p assword")
'Check to see that Session variables were indeed assigned
response.write Session("PASSWO RD")
response.write Session ("USER")
Server.Transfer "Index.asp"
end if
objrs.Close
objconn.Close
%>

</body>

</html>

Terry
It sounds like you have set up the virtual directory as an application in
its own right.
In the directories properties on the virtual directory tag click the remove
button to stop the directory acting as an application.

Note the physical location of the folder is not significant.
Nov 6 '06 #4

"Terry On Windigo" <te***@windigo. comwrote in message
news:%2******** **********@TK2M SFTNGP02.phx.gb l...
>I really had high hopes that would work, but it didn't. The forums .asp
page isn't picking up the session vars.

look at the top of your asp page and check that it does not have
EnableSessionSt ate=False

if that is not the case i refere to AJ's advice
>

"Anthony Jones" <An*@yadayadaya da.comwrote in message
news:%2******** ********@TK2MSF TNGP04.phx.gbl. ..
>>
"Terry On Windigo" <te***@windigo. comwrote in message
news:%2******* *********@TK2MS FTNGP03.phx.gbl ...
>>I think I have figured out my problem but I don't know how to solve it.
We
>>are going to start using a forums package and do not want our users to
have
>>to login to both our site, and then again to the forums package. The
creator of the forums package provides what seems to be an easy
workaround
for this. Create two session variables, one for ID, the other for
Password,
>>and his program will take care of the rest.

I have all of my forums package off the root of the drive that has my
Inetpub directory, and within my IIS settings have a virtual directory
pointing to the actual folder. I'm wondering that since my actual
forums
folder is outside my IIS, or if its a virtual directors my Session
Variables
>>are not being picked up. I also wonder this for the following reason.
On
all of my pages I have

<% If Session("Logged In")= "Proceed" Then
Else
Server.Transfer "LoginReturning .asp"
End If
%>

which keeps people from bookmarking and coming back in without logining
back
>>in to the site. However on the forums default.asp page this does not
work,
>>which leads me to believe once again it's a placement issue on my
hardrive
with my folders. If I am wrong in my assumptions, and I can do this,
how
would I pass the session variable to my default.asp page in my forums
folder? Here is the page that does the checking of my login
verificatio n:

<%
Option Explicit
Dim strConnect
%>
<!-- #Include File="Data.asp" -->
<html>
<head>
<meta name="GENERATOR " content="Micros oft FrontPage 6.0">
<meta name="ProgId" content="FrontP age.Editor.Docu ment">
<meta http-equiv="Content-Type" content="text/html;
charset=windo ws-1252">
<title>New Page 1</title>
</head>
<body>
<%

Dim objconn, objrs
Dim lcsql, strName, strEmail, strPassword, Trial, Expiredate,
strCookie2

Set objconn = Server.CreateOb ject("ADODB.Con nection")
Set objrs=Server.Cr eateObject("ADO DB.Recordset")
objconn.open strConnect

Trial = Date

strEmail = request.form("E mail")
strPassword = request.form("p assword")

lcsql="select * FROM results WHERE Email =
'"+request.fo rm("Email")+"' and password =
'"+request.fo rm("password")+ "'"
objrs.Open lcsql,objconn,0 ,1,1

'No records returned because user not found

If objrs.EOF then
%>
<Script Language=VBscri pt>
ReturnItem = msgbox( "Either your name or password
was
>>incorrect, try again.", vbOKOnly, "INCORRECT ENTRY")
</Script>
<%
Server.Transfer "LoginReturning .asp"

else
Session("Logged In") = "Proceed"

'The next two session vars are for the forums page
Session("USER") = request.form("E mail")
Session("PASSWO RD") = request.form("p assword")
'Check to see that Session variables were indeed
assigned
response.write Session("PASSWO RD")
response.write Session ("USER")
Server.Transfer "Index.asp"
end if
objrs.Close
objconn.Close
%>

</body>

</html>

Terry

It isn't a problem of where the folder is placed physically. The fact
that
you have made the folder a virtual folder under your own application
would
make it part of your application and therefore able to see the session
variables for the app.

The problem most likely is that you have made this virtual folder into an
application in it's own right. Open the properties on the virtual folder
and on the virtual directory tab click the remove button. This stops the
folder from acting as it's own application.


Nov 6 '06 #5
Follow up to those that helped. It is now working for me. The answer was
to stop it running as an application which all of you said. It didn't work
initially, then something clicked in my head and told me to stop and start
IIS. When I did that it worked. You guys really helped me out. I would
never have thought of the correct answer. Thanks, again.

Terry

"Slim" <me@here.comwro te in message
news:Oi******** ******@TK2MSFTN GP02.phx.gbl...
>
"Terry On Windigo" <te***@windigo. comwrote in message
news:%2******** **********@TK2M SFTNGP02.phx.gb l...
>>I really had high hopes that would work, but it didn't. The forums .asp
page isn't picking up the session vars.


look at the top of your asp page and check that it does not have
EnableSessionSt ate=False

if that is not the case i refere to AJ's advice
>>

"Anthony Jones" <An*@yadayadaya da.comwrote in message
news:%2******* *********@TK2MS FTNGP04.phx.gbl ...
>>>
"Terry On Windigo" <te***@windigo. comwrote in message
news:%2****** **********@TK2M SFTNGP03.phx.gb l...
I think I have figured out my problem but I don't know how to solve it.
We
are going to start using a forums package and do not want our users to
have
to login to both our site, and then again to the forums package. The
creator of the forums package provides what seems to be an easy
workaround
for this. Create two session variables, one for ID, the other for
Password,
and his program will take care of the rest.

I have all of my forums package off the root of the drive that has my
Inetpub directory, and within my IIS settings have a virtual directory
pointing to the actual folder. I'm wondering that since my actual
forums
folder is outside my IIS, or if its a virtual directors my Session
Variables
are not being picked up. I also wonder this for the following reason.
On
all of my pages I have

<% If Session("Logged In")= "Proceed" Then
Else
Server.Transfer "LoginReturning .asp"
End If
%>

which keeps people from bookmarking and coming back in without logining
back
in to the site. However on the forums default.asp page this does not
work,
which leads me to believe once again it's a placement issue on my
hardrive
with my folders. If I am wrong in my assumptions, and I can do this,
how
would I pass the session variable to my default.asp page in my forums
folder? Here is the page that does the checking of my login
verification :

<%
Option Explicit
Dim strConnect
%>
<!-- #Include File="Data.asp" -->
<html>
<head>
<meta name="GENERATOR " content="Micros oft FrontPage 6.0">
<meta name="ProgId" content="FrontP age.Editor.Docu ment">
<meta http-equiv="Content-Type" content="text/html;
charset=wind ows-1252">
<title>New Page 1</title>
</head>
<body>
<%

Dim objconn, objrs
Dim lcsql, strName, strEmail, strPassword, Trial, Expiredate,
strCookie2

Set objconn = Server.CreateOb ject("ADODB.Con nection")
Set objrs=Server.Cr eateObject("ADO DB.Recordset")
objconn.open strConnect

Trial = Date

strEmail = request.form("E mail")
strPassword = request.form("p assword")

lcsql="select * FROM results WHERE Email =
'"+request.f orm("Email")+"' and password =
'"+request.f orm("password") +"'"
objrs.Open lcsql,objconn,0 ,1,1

'No records returned because user not found

If objrs.EOF then
%>
<Script Language=VBscri pt>
ReturnItem = msgbox( "Either your name or
password
was
incorrect, try again.", vbOKOnly, "INCORRECT ENTRY")
</Script>
<%
Server.Transfer "LoginReturning .asp"

else
Session("Logged In") = "Proceed"

'The next two session vars are for the forums page
Session("USER") = request.form("E mail")
Session("PASSWO RD") = request.form("p assword")
'Check to see that Session variables were indeed
assigned
response.write Session("PASSWO RD")
response.write Session ("USER")
Server.Transfer "Index.asp"
end if
objrs.Close
objconn.Close
%>

</body>

</html>

Terry

It isn't a problem of where the folder is placed physically. The fact
that
you have made the folder a virtual folder under your own application
would
make it part of your application and therefore able to see the session
variables for the app.

The problem most likely is that you have made this virtual folder into
an
application in it's own right. Open the properties on the virtual
folder
and on the virtual directory tab click the remove button. This stops
the
folder from acting as it's own application.



Nov 7 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
2392
by: Al Jones | last post by:
This is a repost form the vbscript newgroup - if this isn't the appropriate group would you point me toward one that is. Basically, I seem to be losing session data part way though preparing an email from (possibly) three seperate forms. the following code is the end of a routine which stashes data from the first form off to session variables and then redirects itself to the proper form / procedure depending upon the state of two...
6
656
by: Lina Manjarres | last post by:
Hello, I have a session variable in a login page. Then I go to a form page where I uses the ProfileID and the UserID. Then I go to a result page where I would like to use the UserID as a filter, but I can't get the value is stored in it. How can I do that? Thanks a lot!
4
5593
by: PJ | last post by:
A particular page seems to be having issues with correctly setting Session variables. I am setting a couple of session variables on the Page_Unload event. While stepping through code, the immediate window will show the values in Session after the relevant lines that set the variables in the Page_Unload event. However, on postback, these variables are no longer in Session. All Session variables that were set previous to that particular...
31
7007
by: Harry Simpson | last post by:
I've come from the old ASP camp where session variables were not used. When i started using ASP.NET in 2001, I started using them again because it was ok from what I'd read. I've been merrily using Session variables for three years now and i'm entering a project with my new boss who has never quite come around that session variables are ok. What's the concensus here. How can i convince him that they are ok in ASP.NET. OR
10
3516
by: tshad | last post by:
I have been using the default session state (InProc) and have found that I have been loosing my information after a period of time (normally 20 minutes). Is there anyway to find out how much more time I have on a session? If I do a refresh, does reset the session clock? Do you have have to go to another page to reset the session timeout or will a postback also do it? This is important as we have a few pages that a user
3
2912
by: Alan Wang | last post by:
Hi there, Once my application gets complicated and complicated. I found it's really hard to keep track of Session value I am using in my asp.net application. I am just wondering if anyone have any experience on how to keep track of session value. Any help it's appreciated. Thanks Alan
3
2679
by: Phillip N Rounds | last post by:
I'm writing a user control which has two states: Active & InActive. I additionally am required that there to be only one active control per page, and all logic has to be contained within the control. In its inactive state, only a single button appears. If the user clicks on this button, the control becomes active( the rest of the control's functionality becomes visible), and all other instances of this user control on the page should...
18
3445
by: BillE | last post by:
When a user opens a new IE browser window using File-New-Window the integrity of an application which relies on session state is COMPLETELY undermined. Anyone who overlooks the fact that File-New-Window creates an instance of IE in the same process with the same SessionID as the parent window is in big trouble. This fundamentally restricts the usefullness of using session state management. I probably missed it somewhere - can...
26
3617
by: BillE | last post by:
Some ASP.NET applications use Session Variables extensively to maintain state. These should be re-written to use viewstate, hidden fields, querystring, etc. instead. This is because if a user opens a new IE window with Ctrl-N or File-New-Window, BOTH WINDOWS SHARE THE SAME SESSION VARIABLES. This cannot be prevented.
12
3845
by: MrHelpMe | last post by:
Hello again all, I've finished my whole application and now I don't like the whole session variables that I am using. I have a form, user fills in info clicks submit and using CDOSYSMail an email link gets created with an encoded query string. i.e http://www.yahoo.ca?#$@%@&#%#$@&^@%# which translates into http://www.yahoo.ca?userID=54&LocationID=Denver. Now when the user get's this email and clicks on the link I have a
0
9425
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10230
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10004
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
6678
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5313
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5450
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3972
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3576
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2817
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.