Hi - I've successfully created a VPN connection b/t my BEFSX41 (home office) and Sentinel 1.3. This works great when connecting from another computer either using dial-up of cable modem. However, when I attempt to connect from my work office Sentinel makes the connection, I see the connection...
Hi,
I have succesfully created a vpn connection between a Linksys BESX41 and SSH Sentinel 1.3.2. However, I would like to be able to control permissions for vpn users. Currently when a user connects to my network they have complete control, they are able to see all my shares, etc. Is there...
I hear ya - I am fortunate to have a cable modem. I run my own web server and email server - everything is behind a firewall of course. I use Winproxy, easy to use, secure and inexpensive. As for the IP my am issued a dynamic IP from my ISP - however there are several companies which let you...
Are you getting an error to the effect "...must be a public creatable class.." or something like that?
This might work: define a public udt in an ActiveX DLL (instancing set to Multiuse). Then dim a private member variable as your udt type.
'''in the DLL
Public Type as PersonUDT...
VB has a reputation of not being powerfull enough to wright commercial apps - while it is true that C++ dominates the field of shrink wrapped software, VB is King when it comes to business solutions (mainly front ends to databases). However, with VB 6 the language has moved more towards an...
Remote Scripting is the answer!
when you select an item in the first drop down you can send this to an asp page which querys the db and get back values WITH OUT reloading the page - very cool.
Yes, I got this far. But what I want to do is have a new page load as soon as the session times out - even if the user does not try to access a protected page.
Thanks
I am looking for a good and quick way to develop web pages. My experience is with ASP and back end programming. I have used HomeSite, but would like a simpler way to develop rich client side functions (rollovers, menus, etc). Is DreemWeaver a good candidate to work with Active Server Pages...
When a browser makes a call to a web service does the page get refreshed? I have used Remote Scripting, which allows you to call methods in another asp page WITHOUT refreshing your page. The limitations with Remote Scripting is that you can't send or receive structured data(arrays, object)...
I have an asp page which populates a variable on the server side, how do I get access to this variable in client side script.
<HTML>
<HEAD>
<SCRIPT language=javascript>
Function GetValue()
{
//Can I access MyVar here???
}
</SCRIPT>
</HEAD>
<BODY>
<%
dim MyVar
'do my database stuff
MyVar=value...
Sure:
create an asp page - name it test.asp
<%
response.write "<HR>This is a test</HR>"
%>
save this in your www root directory and point your browser to it.
http://localhost/test.asp
dim sStringOne
dim myArray(2)
myArray(0) = "hello"
myArray(1) = "goodbye"
sStringOne = myArray(0) & "string"
'sStringOne will now be "hellostring"
If all you need to do is have users submit orders via a browser and then write those orders to a db - this is trivial via HTML and ASP. Then once you have the oders on the backend db you can do whatever processing you would normally do.
As far a security goes there are several options:
1. Have...
Try not creating the ADO connection and recordset object in your ASP page and doing this:
<%
dim oMyObject
dim oMyRS
dim strClassString
strClassString ="PB80.n_clssrch.1.0"
'this is your COM object
set oMyObject = Server.CreateObject(strClassString)
'usually there is a method in...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.