52,566 Archived Topics
Remove Filter ![]() | |
var a = document.createElement('a'); a.appendChild(dynval); a.href='javascript:void(0)' a.onclick=bindme(dynval) td.appendChild(a) row.appendChild(td) function bindme(bval){ temp=bval return function(){ alert(temp) } } The above code is not complete.... the problem is i am generating dynamic rows inside table's tbody. and i split the rows in to client side pages where each page may display 5 … Web Development javascript | |
Hi Friends. I am using javascript to display timer in my .aspx page..I also use javascript to do validations in that page.when i alert the user with a message.i.e when alert function is called,the timer stops and becomes idle.Again when i click the ok button of the message box that … Web Development javascript | |
would anyone can help me to solve this problme¬¬ i have to change the password in two system at the same time, one is web system which is designed by J2EE and the other is lotus notes. i have written a vb program for changing the password in lotus notes, … Web Development javascript | |
I have asked this question earlier, but could not get a reply that worked :-( I have a single login_success.php file where I have written a function IsWithinFixedGeofence(point) { ...... .... ... if ( distance <= MINIMUMDISTANCE ) { return PointsOfInterest[i]; } I want to be able to store the … Web Development javascript php | |
Hey ! i want to know that is it possible to copy from word doc and paste it on to textarea on a asp page. when i do it normally bullets on document are not paste on to textarea . they covert into different symbols(inverted ?) what should i do … Web Development asp | |
hi, I'm new to asp codes.I'm making my pages with Dreamweaver and using the simple Recordset dialog box options.i have gone ok with all that... but when i try to see my pages on the first run i have no problems but when i push the back button on IE … Web Development asp first-post windows-server | |
hi guys......i want to view a piechart extracting items from a mysql database. i've created a button on a jsp page(view.jsp) which is calling another jsp page(viewrst.jsp) when i click that. the code for (viewrst.jsp) is given below: [code] <%@ page language=[COLOR=red]"java"[/COLOR]%> <%@page import=[COLOR=red]"org.jfree.chart.*;"[/COLOR]%> <%@page import=[COLOR=red]"java.sql.DriverManager;"[/COLOR]%> <%@page import=[COLOR=red]"java.sql.*;"[/COLOR]%> <%@page import=[COLOR=red]"org.jfree.data.jdbc.*;"[/COLOR]%> … | |
I have some check boxes.I want to print text of selected check boxes of the page.Code which I wrote is neither giving error nor giving correct output .Please help me .Here is the code [INLINECODE]protected void btnSelect_Click1(object sender, EventArgs e) { string strchkSelected = ""; foreach (Control ctl in Page.Controls) … Web Development asp.net | |
I want to generate a code that will automatically take the poll-id..of which the user wishes to view the result of that poll. there's the code:using mysql & java & another thing i wish to use this on a jsp page: [CODE] package votepiepack; import java.sql.Connection; import java.sql.DriverManager; import java.sql.*; … Web Development java-jsp | |
I need a simple login script that has the ability to redirect a user. For example: - I want to be able to protect certain pages so that a user has to login to access them (in this case they wouldn't get redirected) - Then in another case I would … | |
hey guys i was woundering if it was possible to connect and grab infromation from a database triggered by a drop down menu click in php .... or will i have t o learn java and figure it out there .. im sure there is a way tho somone help … Web Development php | |
Hi Experts, I am using mozilla firefox 1.5. I want to delay the page close when the user clicks on the close (X) button of the browser. I want to display something like "Closing Please wait......" for 5 seconds (run a code in the background) and then close the window … Web Development javascript | |
Hi all,:icon_exclaim: Refer to the term of commenting, does it has the comment generator for Ruby to generate the comments that we had comment on our classes, method or parameter like phpDoc or ScriptDoc for script. I'm very glad for those who can tell me about this staff. :) Regards, … Web Development ruby | |
hi, i've set up several javascript effects on my page, so now i need some controls to have completely loaded before the user can interact with the page. how can i control the rendering times? thanks. yasser. Web Development javascript | |
hi I'm doing online reservation hotel using vb.net with sql server2000.i have some problem with checking room availability i tried lot of sql query but doesn't get what i want. the customer choose the arrive date and the enddat from the calendar after that it should disply the available room … | |
Hi, I have time stored as an integer in sql server. The time is separated into fields of hour, minute and am/pm. I need to output the data and sort the time, but of course, 12 is coming after 1. Is there a way to sort my hour integers in … Web Development coldfusion | |
I have two questions 1. How do I use a Replace() function in JSP e.g. String strName = "My name is"; String strName2 = replace(strName, "is", "is Michael"); 2. How do I make a string to start with a capital letter e.g. I want [COLOR=red]d[/COLOR]avid to be [COLOR=red]D[/COLOR]avid Thank you. Web Development java-jsp | |
I have an idea how to do this, but never did it before heres my code: <label for="weatherCity">City:</label> <select name="weatherCity" id="Cities"> <option value="0"> </option> here's my query: SELECT distinct state FROM ols_weather_current ORDER BY 1 asc; [code=java] Connection connection; PreparedStatement pstmt; ResultSet rst2; try { // execute the query connection … Web Development java-jsp | |
Am new to SQL and PHP. Only been using them for about 3 weeks to create an e-commerce site for some friends. I have been trying to set up a link to paypal's shopping basket feature from my listing page. I'm trying to get the link to appear next to … Web Development display email first-post html-css image microsoft microsoft-windows mysql php sql | |
I want to generate a code that will automatically take the poll-id..of which the user wishes to view the result of that poll. there's the code:using mysql & java & another thing i wish to use this on a jsp page: [code] package votepiepack; import java.sql.Connection; import java.sql.DriverManager; import java.sql.*; … Web Development java-jsp | |
I'm fairly inexperienced with java and haven't had any experience with SOAP at all and have been trying to get a Sample SOAP webapp working. After I startup tomcat and go to [URL]http://localhost:8080/soap/admin[/URL] the Apache SOAP Admin page comes up and if I try to click on any of the … | |
Hello guys! As usual i need anybody help. pleeeeaaaaase..... :) My problem is to take value from the URL. Not the entire value but only part of it like the example below. [URL]http://localhost.localdomain/YPS/lets-talk-main-conversation-full.php?id=5[/URL] This is the link where the value id is passed from the previous page. Value for id … Web Development php | |
Hi, I have written below code but i do not know how to validate using javascript, cud anyone please help me out. <select size="1" name="hours" class="selectstyle" style="width:40px" onchange="alert(document.modifyschedule.hours.options[document.modifyschedule.hours.selectedIndex].value"> <? for($j=1;$j<=24;$j++) { if($timesplit[0]==$j) echo "<option value=".$j." selected>".$j."</option>"; else echo "<option value=".$j." >".$j."</option>"; } ?> </select> <select size="1" name="minutes" class="selectstyle" style="width:40px" onchange="alert(document.modifyschedule.minutes.options[document.modifyschedule.minutes.selectedIndex].value"> … Web Development javascript php | |
Hi everybody I am developing a CMS which will manage all the conent of website. for manl link for the website there will be category class which consist of page and for content there will page class page may consist sub page there will be following four classes [B]Category page … | |
I have some java code that is pulling from SQL some data, which is filling a groupbox with Medicare ICD-9-CM billable codes. The user can click the Category, then select the codeset then the third box fills in the sub codes and description for them to make the final selection … Web Development asp client-server javascript legal open-source session | |
I'm posting in the PHP forum cause that's what I'm using to connect to MySQL. If there's a better place to post this let me know... Anyway, I have data that consists of discrete lines of text which must be in a certain order. Like if you were taking a … | |
i'm building a webpage using CSS and javascript to produce special effects. i use onmouseover, onmouseout, and onclick events inside a table's cells to change their cssclasses. everything was going perfect so far, as i'm using VS 2008 BETA2, with the default browser IE 7.0 so now when i try … Web Development javascript | |
[B]I've installed Apache2.2.4 & php5.2.3 in my windows xp, evry thing is going perfect but when I want to transfer a session variable to another form its not tranfering.......plz any body help me on this regard. will I have to configer any file....its urgent for me..[/B] | |
Hi every body I want ot add CAPTCHA in my registration process any here please help Thanks in advance Web Development php | |
Hello every one, I have made the insertion, viewing part of the database, but want to have an edition part too, could anyone plz kindly guide me, how it is possible to have edition part too? NOTE; I am using PHP 5..., MySQl 5... , and Apache Server | |
Hello everybody, I want to have search option and the search result in one page, so I write the following code, but I dont know why after search there is no results displayed: [LIST] The file name is SearchInSide.php[/LIST] [CODE]<HTML> <BODY> <FORM Action="SearchInSide.php" Method="POST"> <div align="center"> <table border="0" cellpadding="0" cellspacing="0"> … | |
I'm a beginner in [B]ASP.NET[/B], wanna learn this important development technology. can any one tell me, where I can found some useful video tutorials. [I]Thanks to all in anticipation. [/I] | |
[B]I want to create a table, with a column which datatype will be LONG BLOB, what will be it's size????? e.g. [U][I]create table tab1(name varchar(20), pic longblob([COLOR="Red"]?????????[/COLOR]));[/I][/U] plz give me the currect code...........[/B] | |
I am in need of web template engine and I am considering two options. PHPSavant and Smarty. I am using PHP ver. 5 and PostgreSQL database. PHPSavant supports PHP5 only in beta2 version, so I am affraid of some serious bugs, but at the other hand, as far as I … Web Development php postgresql | |
i wrote this script and i cant get any ouput from it. [code] $time = $_POST['time']; $budget = $_POST['budget']; $visual = $_POST['visual']; $update = $_POST['update']; $custom = 0; $stream = 0; $easyup = 0; $selfup = 0; $upserve = 0; if($time == "deadline"){ $custom = $custom + 1; } if($time … Web Development php | |
Dear all .Netters, I want my RadioButtonList can not be selected by users, so i set the Enable to be false. The problem is the font colour become gray. so does any one of you can help me how to keep the font colour still black and can not be … Web Development asp.net | |
how do i make a tabbed iframe which can change its height automatically and make height equal to the content inside it. I have never used iframe before this. i dont want scrollers. i want it to call the size of the content inside it. i have tried some scripts … Web Development html-css javascript xml | |
Anyone Developing an airline reservation system in CF? Web Development coldfusion | |
i have a site at [URL="http://cometorate.com/"]http://cometorate.com/[/URL] i tried todo a cPanel move to my server here. [URL="http://66.196.43.131/~cometora/"]http://66.196.43.131/~cometora/[/URL] on the new server above i keep getting the errors below. i just dont know what any of this means. can anyone help? Warning: fopen(/usr/local/apache/htdocs/online.txt) [function.fopen]: failed to open stream: Permission denied in … Web Development apache cpanel file-stream php | |
so, i started at php and i'm doing some exercises from the book, but when i type this code into my "view.php", the output is all wrong...[code=php] <?php include("dbconnect.php") ?> <h2>View my GuestBook!!</h2> <?php $result=mysql_query("select * from guestbook") or die(mysql_error()); while ($row=mysql_fetch_array($result)) { echo "<b>Name:</b>"; echo $row["name"]; echo "<br>\n"; echo … Web Development php | |
Okay - there is no otherway to phrase this ... [B]Help![/B] I am not a programmer, never claimed as such... but I do use a php based CMS, which I adore - Xaraya. So I am building a site for a client, and it's gotten to be a rather ugly … Web Development cms first-post php xml | |
Hello. I am currently having a problem with a script. I am using the rand() function to make big randomized numbers. The problem is that rand() only returns numbers lower than about 2 billion. I need more than that. Is there any function in PHP that gives you REALLY BIG … Web Development php | |
Hello, I really need your help in vbulletin forum .. I am owner of vbulletin forum designed for arab and it's specialised in html and php tutorial how can I highlight code like daniweb forum ?? I dom't know if administrator can help me or not but I hope !! … | |
Dear members, can any body plz help me out to insert image file in MySQL.......is it possible ???????? [B]If possible plz give me the code............[/B] | |
I am trying to protect email addresses on a web page from spammers. I found a javascript snippet from Syronex Anti Spam Solutions ([url]http://www.syronex.com/antispam/[/url]) and it has worked well in the past. Since I have upgraded Firefox to the newest version I cannot access the email from my links. Is … Web Development email javascript | |
Hi I want to understand how to pass any variable betwen functions with PHP. Could anyone make it easy for me to understand please as I want the 'id' field? basically I have a list of records an a click to edit button. This brings up the editor. All works … Web Development php | |
I have been looking into ways I to cut down on MySQL Querys in a page and I was wandering if you could up to update querys into one mysql_query function like this: [php]mysql_query("UPDATE table SET val1=val1+1, val2=val2+1 WHERE id = (int); UPDATE table SET val3=val3+1, val4=val4+1 WHERE id = … | |
I have been studying PHP part time off and on for a month or so and I get it a little, but I really want to know how to build software and I am pretty much the world's most novice programmer. Does anyone out there know of the best free … Web Development php |
The End.