Thank you, document.body.innerHTML was what I needed. I understand that I can't show the server side points but this will work for the client side modifications :).
Well I'm debugging a page and I would like to look at the result of the javascript functions in the page. This includes source changes and modification of HTML through javascript. Plain View Source doesn't cut it as it is only showing me the result of the page after the server side script but...
Client side script or server side script?
As client side this will likely not work unless you set a cookie with a counter in it for the refreshes as variables will be reset on reload.
Server side you should append a querystring variable to the url like:
mypage.asp?counter=0...
Sessions are assigned unique ids per user, so you need to have the user keep track of their session id somehow. You could do this with a form variable or a cookie. Else you can't tell what data is associated with what user.
You could make good use of form variables to keep from having to have...
frames have names so why don't you create a function to look through the parents recursively for a frame with the same name and then call reload() on that frame?
At creation time, fill the Vector with usernames and passwords. Then you want to check it against the Vector.
Vector a = new Vector();
User u = new User("admin","111");
a.add(u);
...
User b = new User();
b.setName(Text1.getText());
b.setPw(Text3.getText());
for(int k = 0; k < a.size(); a++)...
Well unless you find a scripting language that will let you execute code just like that, you might just want to do a google search for code that deals with Expression Trees.
You could create a JScrollBar object, set its properties and then add it to the JScrollPane using:
JScrollPane.setHorizontalScrollBar(<name of object>);
?
Hello, I seem to have a complex problem, did a google search, didn't find too much.
I'm trying to make a Jar file like so:
jar cv0 ZipFlex.jar *
I've also tried
jar -cv0 ZipFlex.jar *
and
jar -cv0 ZipFlex.jar *.class
This is entered into a terminal (Gnome and Xterm) on Debian with the...
Well fixed the problem, thanks for the tips. The floppy was blank, aye. I found out you can't mount a music cd and my problem with not being able to use the cdplayer was that I had to add my user account to the disk group where /dev/cdrom belongs to, as it was really a permissions problem...
I have Debian Sarge installed....I think 3.0
Anyways, after doing a net installation using the minimal boot up cd on my compaq presario laptop, I can't mount my cdrom or floppy drives.
I have tried it with a random floppy disk and it tells me that the file system is unrecognizable or something...
Yeah, I agree with the front end.
You can use PipeStreams in Java to communicate with processes so you could write a C program to handle the sockets (however, you have to mess with different socket codes unless libpcap handles independent of platform) and have the java program execute it. The...
I'm not really clear on this, but try this:
Look up Public and Private Keys and Certificates on Google. You'll need a Certifying Authority who will provide you with a certificate of Identity and a key that you can use keysigner or jarsigner (something like that) to sign the jar file with your...
Alright, an applet is like an embedded application put into a web document.
A servlet generates an html page and works on the server side to generate content.
A server is pretty much a standalone product that waits for and accepts connections.
If you mean when you run it on your computer from...
I realized I could try that, however, an issue is the internal browser cookie limit that is already reached by the website. I don't really want a dummy cookie replacing necessary information that can't really be reset. All the cookies used are written using server side scripts. So I was...
Alright, I have a script so far and I tested it in Mozilla and it seems to work, but no such luck in IE. The idea is to determine if the user has cookies enabled. If the user doesn't have at least cookies enabled for first-party cookies or cookies from the originating site, it redirects them...
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.