I'm trying to display this website
WebCT in a JEditorPane, the code I have so far is:
public void setWebCT(){
try{
WebCT_Pane.setContentType("html");
WebCT_Pane.setPage("http://webct.nottingham.ac.uk/webct/entryPageIns.dowebct");
}//end try
catch (IOException e){
errorMessageDialogue(e.getMessage());
}//end catch
}//end setWebCT()
but it doesnt display the website properly, a screen shot of what displays can be found here:
[http://i2.photobucket.com/albums/y34/duncanbradshaw/Untitled.jpg]
Can anyone tell me what I'm doing wrong? Thanks