Hi.
We are setting up a wiki for our radiology residency training
program. The work flow in our department is through a program called
IMPAX which supports VB.net scripts (I think it is VB.net..may be
vbscipt). Anyway, I would like to create a script that logs in
automatically to the wiki but they do not support academic
departments. Was wondering if I could get some help.
Here is an example script that works for another site we use that
helped us set up a script. The "XXXXX" is our login. This site only
requires a single entry for login. Is there an similar script that
would help me log in to the our wiki with our Username and password.
Thanks for any help.
Chuck
Chief Radiology Resident
LLU Radiology Training Program
'Impax 6 ContextServer Properties Stat-dx link script for SIV created
'by Charles Stout
Option Strict Off
Imports System
Imports System.Windows.Forms
Module Script
Sub Main()
Dim url as String
url = "http://www.amion.com/cgi-bin/ocs?Lo=XXXXX"
System.Diagnostics.process.Start(url)
End Sub
End Module