DangerDev 107 Posting Pro in Training

run both as separate project and separate program.
but run server before running client.

DangerDev 107 Posting Pro in Training

try this

DangerDev 107 Posting Pro in Training

suppose u want to put value of strText in to textbox
then u can do as:
//in jsp
String strRsp="<input type='text' value='"+strText+"' name='txt1'/>";

print strRsp string as response string.

and then store back..

to store value u have to use form and form submit event.

DangerDev 107 Posting Pro in Training

make some changes...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
      <html>

      <head>
 
      <title> Test </title>
  
      <script language='javascript'>
   
      redirTime = "5000";
  
      redirURL = "b.html";
  
      function redirTimer() {
  
      self.setTimeout("self.location.href=redirURL;",redirTime);
	  //navigator.location.href="b.html";
  
      }
  
      </script>
  
      </head>
  
      <body>
  
      <script language='javascript'>
  
      redirTimer();  
      </script>
 
      </body>
  
      </html>
DangerDev 107 Posting Pro in Training

i noticed that something has happened,

How will u come to know that some thing has happened? through some event right...
on that event call a function there u cancel the previous timeout using
clearTimeout()

DangerDev 107 Posting Pro in Training

u can call like this:

<html>
<head>
 <script>
	function Hi()
	{
		alert('Hi');
	}
 </script>
</head>
<body>
	<a href="javascript:Hi()">Hi</a>
</body>
</html>

or
u paste following in url it will work

javascript:(alert('hi'))

DangerDev 107 Posting Pro in Training

Hi
From u'r problem it seems that u need to call some os api, which cant be done directly through Java, since java does not touch OS.
For calling any OS api u need to call native library call, u can get info about this from net.
Take help of Google.

DangerDev 107 Posting Pro in Training

Hi

in javascript code two modification is needed:
1.

function showCustomer(str)
{
xmlHttp=GetXmlHttpobject();  //error  it is GetXmlHttpObject();
if(xmlHttp==null)
...............
}

2. define function GetXmlHttpObject(); before calling it i.e. before showCustomer();
u cannot call a function until unless it is not defined.

DangerDev 107 Posting Pro in Training

go for java media framework

DangerDev 107 Posting Pro in Training

u'r question is not clear
i think u can do it by File class of java.

DangerDev 107 Posting Pro in Training

where is js code......

DangerDev 107 Posting Pro in Training

if u r looking for free dev envi go for linux c c++ java gtk++ etc.

Ezzaral commented: See forum rules on "text-speak". You should understand this after 125 posts. -1
DangerDev 107 Posting Pro in Training

most of the severs come for both xp and linux platform like apche etc. accept some like IIS which is only for window platform.

DangerDev 107 Posting Pro in Training

inside UserListIn.add u put the validation code which will loop through the database and see whether id has been taken by some one or not if id is found it should give error msg
you can also raise exception in that case

DangerDev 107 Posting Pro in Training

u'r all if statments contain return at last so no need to put else it will solve u'r prob

DangerDev 107 Posting Pro in Training

u can save as binary data

DangerDev 107 Posting Pro in Training

try to find some book thats good for beginner....

DangerDev 107 Posting Pro in Training
DangerDev 107 Posting Pro in Training

hi
use gu.getID().equals(ID)
in place of gu.getID() == ID, here u r comparing string not nums.

DangerDev 107 Posting Pro in Training

nice.......

see if u have to impress some one and if u r good in some programming language use data base and make one application using language. this will give u extendability and with each new requirement u will be able to move forward.

so if u dont know any lang learn some uptill then use spreadsheet.

DangerDev 107 Posting Pro in Training

UserListIn.size() will return total no. of element in array(not index of last item), so put i< not i<= in for statement.

DangerDev 107 Posting Pro in Training

try this

use google ;)

DangerDev 107 Posting Pro in Training

I have important pictures I need from that laptop, how would I be able to get those pictures because I don't mind doing a recovery format but i don't want to lose those pictures.

connect harddisk to another computer from there u can get all important data.

DangerDev 107 Posting Pro in Training

do this:
inside removeMember get one member like this-
GymUser gu= UserListIn.get(i);
use this gu in place of UserListIn;

DangerDev 107 Posting Pro in Training

No Homework, try u'r self

DangerDev 107 Posting Pro in Training

search temp folder in c: check the size , if it is more than 100 MB del it.
in c: it self a system folder will be there with name
System Volume Information check the size, if it is more try to delete old items by checking there access or creation date.

DangerDev 107 Posting Pro in Training

Hmmm, not ideal as you've said. Is there any real chance that a semantic URL attack could happen if I put the eid in the URL? Or am I relatively safe?

its not good to put info into url which u dont want others to know.

DangerDev 107 Posting Pro in Training

UserListIn.get(i) will return object of i'th position in this list
for more info see this

DangerDev 107 Posting Pro in Training

for ie use


document.execCommand("Stop");

DangerDev 107 Posting Pro in Training

<a href="somlink.com" onclick="window.stop();">my link</a>

this doesnot works in IE.

DangerDev 107 Posting Pro in Training

It seems this assignment was set by Professor Chris Szalwinski who runs the Structured Programming course at the School of Computer Studies at Seneca College in Toronto. Maybe someone should E-Mail him, to let him know what his students are doing :-/

....what an assignment. ;)

DangerDev 107 Posting Pro in Training

do u'r home work without internet,,,,,,,,,,

dont be dependent on net too much, it will suck.

DangerDev 107 Posting Pro in Training

nice discussion........

DangerDev 107 Posting Pro in Training

reduce the size of pages...

DangerDev 107 Posting Pro in Training

just post old standards it will help us to find out new one instead of reinventing the wheel...

DangerDev 107 Posting Pro in Training

also, dont copy code from pdf it sucks......

DangerDev 107 Posting Pro in Training

>>>bobbyraw
:) nice suggestion,,,,,i agreeeeeeeee

DangerDev 107 Posting Pro in Training

then again same strategy, make a global array or make a class MyArray which will handle all needed operation for u. either u can go for making global object of that class or u can declare static array inside that class.

,,,class stuff is better, coz u'll learn oops through.

DangerDev 107 Posting Pro in Training

AFTER Microsoft aquire Yahoo, it will be all about the benjamins, both companies have stock for leff that 30. and going down althoug google feel to a meager 1.39 point, still they dont compare to 495,,,,,,,,we all can add right,,,,now imaginf when this giant take over yahoo, and the market share that both have,,,,,,,,its simular to Cingular and AT&T,,,,,it's all about who got the bigger portion of the market and that the bottom line,,,,, the money.....now imagine when they revamp the whole WWW and latch on to google ADsense.......not to mention the mobile market that microsoft command,,,,

nice.........now can u explain...

DangerDev 107 Posting Pro in Training

hi
dont use innerHTML property with text box. its property of tag element like div.
use
document.getElementById('txtSMS').value="hiiiii";

or see an example;

<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
  <script type="text/javascript" >
    function clickMe()
    {
        alert(document.getElementById('id_TB1').value);
        document.getElementById('id_TB1').value="hiiiii";
    }
  </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:TextBox ID="id_TB1" runat="server"></asp:TextBox>
    </form>
    <input type='Button' ID="Button1" OnClick="javascript:clickMe();" Text="Click Me" /></div>

</body>
</html>
peter_budo commented: Nice example +7
DangerDev 107 Posting Pro in Training

what abt selecting multiple file at once, i think that's not possible in web envi.

DangerDev 107 Posting Pro in Training

Hi,
I dont think u can do that. if succeeded pls post the ans. here itself.

and have the Javascript/HTML upload the photos automatically.

this thing u cant do with js or html as it may create security problem, hence not there.

DangerDev 107 Posting Pro in Training

hi
make a link list of pageinfo having following as node
Node{
TimeStamp t;
PtrToPage ptr;
}

now on the basis of this u can implement various available page replacement policy.
some are here:

http://en.wikipedia.org/wiki/Page_replacement_algorithm
http://www.sci.csuhayward.edu/~billard/cs4560/node15.html

DangerDev 107 Posting Pro in Training

hi
i think u r talking about variable no. of argument for that u can use stdarg.h

DangerDev 107 Posting Pro in Training

hi....
hey can u send me d soft copy of the seminar u gave on teleimmersion?????
i m in 3rd year comp..i m giving seminar on it so needed some help...plz....

....send me too.

hi
u can choose topic like
computer every where "imbutech"
or
RFID

DangerDev 107 Posting Pro in Training

hi
whenever u r developing the website use 3 or 4 browsers to see the result, and after the development of each and every step see the result on every browser this is the only way to check the compatiblity with not only colors but with elements too.

DangerDev 107 Posting Pro in Training

Hi
u can go for development of u'r own search engine using free java api Lucene
or
u can try Nutch from apache .

DangerDev 107 Posting Pro in Training

either define a global variable count
or pass it to the recursive function by defining it global
or make a separate class who will take care of counter where counter will be static member variable.

DangerDev 107 Posting Pro in Training

you inspect the code at client side, there u check the property of text box and then try to put id over text box, using this id access the textbox and use it for ajax,
probably it should work.

DangerDev 107 Posting Pro in Training

challenging is my talent , winning is my duty