Search Results

Showing results 1 to 40 of 301
Search took 0.02 seconds.
Search: Posts Made By: Thirusha
Forum: JavaScript / DHTML / AJAX 2 Days Ago
Replies: 3
Views: 200
Posted By Thirusha
My pleasure, please mark this thread solved if your question has been answered to your satisfaction.
Forum: ASP 3 Days Ago
Replies: 2
Views: 192
Posted By Thirusha
You can have a look at freeaspupload (http://www.freeaspupload.net) or
webreference.com (http://www.webreference.com/dev/upload/index.html)
Forum: JavaScript / DHTML / AJAX 3 Days Ago
Replies: 3
Views: 200
Posted By Thirusha
Nope, Ajax is client side, so no need to do any server side configurations.
Forum: JavaScript / DHTML / AJAX 4 Days Ago
Replies: 5
Views: 190
Posted By Thirusha
You weren't really calling the function, it starts running when the page loaded. I see that you are changing the href attribute to a hash inside the loop, so i modified your code to look like this:...
Forum: JavaScript / DHTML / AJAX 4 Days Ago
Replies: 7
Views: 201
Posted By Thirusha
when i first loaded this code into firefox it gave an error, then i changed this line:
#
function addit = function()
to this:
#
function addit ()

and it works in both FF 3.5 and IE 8
Forum: Oracle 5 Days Ago
Replies: 4
Views: 286
Posted By Thirusha
Are u then using a mysql database or an oracle database?

The commands to create tables and insert data are the same. what u can do is get sqldeveloper, then just create connections to the...
Forum: Oracle 5 Days Ago
Replies: 4
Views: 286
Posted By Thirusha
I have never used the toplink program but to me it seems as though it just "creates" the sql statements for you.

Regarding mysql and oracle, they both require different drivers, other than that it...
Forum: JSP 5 Days Ago
Replies: 8
Views: 424
Posted By Thirusha
sorry I don't understand your question.
Forum: JSP 5 Days Ago
Replies: 8
Views: 424
Posted By Thirusha
i have used it, but it has been a while, Oracle 10G works just like any other database, it also has a console where you can do all the data admin stuff.
Forum: JSP 9 Days Ago
Replies: 2
Views: 318
Posted By Thirusha
NoclassDefError, normally stems from not being able to find the class, in your case TagLibraryValidator

Ensure that this class is in the lib directory of your application
Forum: JSP 9 Days Ago
Replies: 8
Views: 424
Posted By Thirusha
Google provides loads of links to examples online.
Try this one here (http://www.oracle.com/technology/pub/articles/cioroianu_jsfdb.html)
Forum: JavaScript / DHTML / AJAX 9 Days Ago
Replies: 3
Views: 312
Posted By Thirusha
what you could do is preload the image and set its visibility to be hidden, then on the onclick event of the checkbox, you can just set the image to be visible.

OR

you can have a div next to...
Forum: HTML and CSS 10 Days Ago
Replies: 5
Views: 274
Posted By Thirusha
u have to change the innerhtml of td tag.
so the onmousover event will look something like this:
onmouseover = "document.getElementById('tdId').innerhtml='<img src='imgname.jpg'>' "
Forum: JSP 10 Days Ago
Replies: 1
Views: 310
Posted By Thirusha
If the information has been posted to the servlet, using request.getParameter will display the information passed.
You would use it something like this:
request.getParameter("firstname")
Forum: JavaScript / DHTML / AJAX 18 Days Ago
Replies: 7
Views: 329
Posted By Thirusha
a good place to learn javascript is w3schools (http://www.w3schools.com/js/default.asp)

I have no idea what this means

you add an onclick event like this:
<a onlick="somejsfunction()">click...
Forum: JSP 18 Days Ago
Replies: 2
Views: 384
Posted By Thirusha
I am not sure sure if this will help, but i had done something a similar, what i did is create a json string using javascript on my jsp page after button was clicked, then sent the json string using...
Forum: JavaScript / DHTML / AJAX 19 Days Ago
Replies: 2
Views: 379
Posted By Thirusha
You could do a check on the value something likeif (tBox.value != ""){//proceed to next question}else{alert("Please enter a value in the textbox")}
Forum: JavaScript / DHTML / AJAX 19 Days Ago
Replies: 5
Views: 383
Posted By Thirusha
Without being able to see your code, all i can say is that u can do a comparison on the value returned by responseText, something like
if (responseText == "no"){
//do something}else{//do something...
Forum: JavaScript / DHTML / AJAX 19 Days Ago
Replies: 1
Views: 264
Posted By Thirusha
You are going to need a server side language to connect to the database, Peter_budo has written a nice tutorial here (http://www.daniweb.com/forums/thread141776.html)
Forum: HTML and CSS 19 Days Ago
Replies: 2
Views: 314
Posted By Thirusha
Seems CSS3 has a marquee property, click here (http://www.w3.org/TR/css3-box/#marquee)

I know that a marquee can be done using javascript, so check these...
Forum: MS SQL 19 Days Ago
Replies: 8
Views: 975
Posted By Thirusha
@Peter_budo, based on his question, i think that i am correct in saying that it cant be done, one can use ajax, but you will still need a server side language, one cannot connect directly to the...
Forum: JavaScript / DHTML / AJAX 20 Days Ago
Replies: 3
Views: 374
Posted By Thirusha
Go here (http://www.w3schools.com/Ajax/ajax_example.asp)
Forum: JSP 20 Days Ago
Replies: 11
Views: 45,551
Posted By Thirusha
<c:redirect url="http:www.someurl.com" />
Forum: JavaScript / DHTML / AJAX 23 Days Ago
Replies: 1
Views: 196
Posted By Thirusha
Yes you can.
Forum: Java 24 Days Ago
Replies: 3
Views: 147
Posted By Thirusha
I haven't had the need to write one, but there are loads of examples online, using google i came across this one (http://www.melfam.com/javamarqmess.html)
Forum: MS SQL 25 Days Ago
Replies: 8
Views: 975
Posted By Thirusha
I dont think you can do that, you are going to need a server side language, like ASP, Java, PHP etc that will be able to communicate with the database.
Forum: MS SQL 25 Days Ago
Replies: 2
Views: 316
Posted By Thirusha
use DATABASE_NAME

SELECT TABLE_NAME
FROM INFORMATION_SCHEMA.TABLES
Forum: JavaScript / DHTML / AJAX 25 Days Ago
Replies: 1
Views: 291
Posted By Thirusha
You can go here (http://www.w3schools.com/Ajax/ajax_example.asp) and learn about AJAX, that will help you with what you are intending to do.
Forum: HTML and CSS 27 Days Ago
Replies: 2
Views: 308
Posted By Thirusha
can you please provide some code, it would make it easier to help you.
Forum: ASP 31 Days Ago
Replies: 2
Views: 892
Posted By Thirusha
Ensure that your virtual directory that the anonymous access is Checked.

Also check this page (http://support.microsoft.com/default.aspx?scid=kb;EN-US;259725)
Forum: JSP 31 Days Ago
Replies: 4
Views: 391
Posted By Thirusha
By numeric validation do u just want to validate that numeric characters were entered in the form?
Forum: ASP 31 Days Ago
Replies: 1
Views: 600
Posted By Thirusha
To display a bigger image you can use teh width and height attributes of the img tag, just as you have done in the code presented.
to change the display to more than 12, in the code that gets the...
Forum: JavaScript / DHTML / AJAX 31 Days Ago
Replies: 1
Views: 280
Posted By Thirusha
do a google search for "javascript example autocomplete" loads of examples are then available
Forum: JavaScript / DHTML / AJAX 31 Days Ago
Replies: 1
js
Views: 214
Posted By Thirusha
You run javascript in a browser, u can include it inside the html file or link it to the html file by calling the javascript file (yes the name should be filename.js) (filename being whatever name...
Forum: JavaScript / DHTML / AJAX 32 Days Ago
Replies: 3
Views: 459
Posted By Thirusha
They will show the same name because you can only hard code one element id, what u can do is this:
onmouseover=fu(this)
then in the javascript function change it to this:
function fu(el){...
Forum: JavaScript / DHTML / AJAX 32 Days Ago
Replies: 3
Views: 571
Posted By Thirusha
Pleasure
Forum: JavaScript / DHTML / AJAX 32 Days Ago
Replies: 3
Views: 571
Posted By Thirusha
I think you should add the javascript provided to a function then call the function using the body onload event, it will then work.
Forum: HTML and CSS 33 Days Ago
Replies: 11
Views: 603
Posted By Thirusha
Thats very strange, could u place the code that u are using with the style inside the same file please, and i can take a look as to why it isnt reading it.
Forum: MySQL 33 Days Ago
Replies: 3
Views: 549
Posted By Thirusha
Yes, i dont know what your table structure is, but u can put it in a field.
You can create a url field in one of your tables and insert into that field.
Forum: JavaScript / DHTML / AJAX 33 Days Ago
Replies: 2
Solved: ajax reloading
Views: 398
Posted By Thirusha
I see that your original problem http://www.daniweb.com/forums/thread229724.html has been solved please mark that as solved so that people dont answer a thread that has already been solved.

Now...
Showing results 1 to 40 of 301

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC