Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. cmitzel

    Transparent ActiveX Control Repaint Problem

    I have created a new ActiveX project with one control. It is currently nothing more than the wizard generated code VC++ gave me. I have specified a "windowless" control. When resizing the control, the VB window my control is sitting on does not repaint anything and I am left with...
  2. cmitzel

    vb.net - can't use https protocol to retrieve web page

    I am trying to access a web page with the https protocol. Here's my code: Dim http As System.Net.HttpWebRequest Dim strm As System.IO.Stream http = System.Net.HttpWebRequest.Create("https://secure.website.com") strm = http.GetResponse.GetResponseStream And here's the message I...
  3. cmitzel

    Create a new class based on CObject with the ClassWizard

    I am trying to create a new class in the ClassWizard. I just want the base class to be CObject, but that doesn't seem to be an option in the list. [sad] Can someone please help? Thanx, Chris [3eyes]
  4. cmitzel

    Detect SSL Encryption Level?

    I am looking for a way to detect the SSL encryption level in my cgi script (perl, using CGI object) so that I may reject any client that isn't able to connect at the strongest level of encryption available. So far I have been able to figure out that SSL is active, but not at what strength...
  5. cmitzel

    CGI and cookies

    The only problem I ran into when running your scripts is the fact that you do need to print a header when you retrieve the cookie. IE is capable of handling cookies (that's what I'm using) so that isn't your problem. Try putting the line: print $cgi->header; before your call to message()...
  6. cmitzel

    CGI and cookies

    Here's what you're script is outputting: Set-Cookie: test=testvalue; path=/; expires=Sun, 24-Mar-2002 20:54:30 GMT Date: Sun, 24 Mar 2002 19:54:30 GMT Content-Type: text/html; charset=ISO-8859-1 Content-type: text/html <h1>COOKIE SET</h1> What you're getting is two &quot;Content-type&quot...
  7. cmitzel

    CGI and cookies

    You're best bet for anything CGI is the CGI object. You create one in perl with the following code: use CGI; $cgi = new CGI; Then you can create a cookie with this code: # create a cookie $cookie = $cgi->cookie(-name=>'sessionID', -value=>'xyzzy'...

Part and Inventory Search

Back
Top