Cookie Munger is a small ISAPI DLL from MS that is supposed to support IIS-Sessions without temporary cookies. It does it by placing the session id into all URLs of a webpage send to the client. The MS sample is very buggy and does not work with IIS 5.0 without quite some changes. Does anyone know of a working version or an alternative piece of software? Thanks, Stefan
Stefan 0
Posts
-
A working Cookie Munger -
MSHTML and image screen coordinatesHi. I'm using MSHTML to get the HTML-code of a web page. Now i would like to know the screen-coordinates of the images on that page. Anyone who knows how that would be done using VC++?
-
How to check a socket is disconnectedI use raw Windows sockets. How to check whether the other side of the connection is closed? Thanks
-
How to make StatusBar tooltips?How could I make status bar to show tool tips for its panes? Regards, Stefan ----------
-
GetFieldValue() throws an exceptionI have a code like this CString cSQL; CDatabase db; db.OpenEx( NULL, CDatabase::forceOdbcDialog ); CRecordset tbl( &db ); cSQL.Format( "SELECT * FROM tablename WHERE ID = %d", nID ); tbl.Open( CRecordset::forwardOnly, cSQL ); try { tbl.GetFieldValue( "ID", cSQL ); tbl.GetFieldValue( "ID", cSQL ); } catch( CException* e ) { char szCause[255]; e->GetErrorMessage( szCause, 255 ); e->Delete(); } The first GetFieldValue() call gets appropriate value into cSQL variable. But on the second GetFieldValue() call I get CDBException and the value of szCause is "" - empty string and m_nRetCode member of CException object is 100. What is wrong in this code? Any help would be very helpful. Thanks in advance. Stefan