52,566 Archived Topics
Remove Filter ![]() | |
Hi, I want to fill data from database on the webpage. There's no problem with reading the data, filling the menu and so on, but I want to put the text & pictures in the article and this is a real problem :lol: Is there some component (like panel or … Web Development asp.net | |
I have got this code, which am trying to display it in white writing. I could get the first part in white but couldn't get the variable ($HTTP_SESSION_VARS['items'] to come up in white. echo '<font color="#ffffff"><b>Total Items = </b></font>'.$HTTP_SESSION_VARS['items']; I have also tried the code below but got an error … | |
In my asp.net c# web app. I have 10 text feilds. I want to avoid duplicate same value in this text feilds. how I can do this using javascripts. :cry: Web Development asp asp.net javascript | |
I am working on a seat selection page for an ASP.NET school project on movie booking system. I have created the seats using buttons (A1, A2, A3) etc. When the user click on the button, the button colour changes and the user finalized the payment. I have an issue here. … | |
Am not too sure what this code does can someone help me please? I know it starts a session but what all that xtra validation? // start the session session_start(); if (!get_magic_quotes_gpc()) { if (isset($_POST)) { foreach ($_POST as $key => $value) { $_POST[$key] = trim(addslashes($value)); } } | |
Hi, I have made the necessary changes in the web.config so that I can get to the security Tab for the ASP.NET configuration. The new error when trying to go to the security Tab is: The following message may help in diagnosing the problem: Could not find stored procedure 'dbo.aspnet_CheckSchemaVersion'. … | |
Hi All, I have problem in manipulation data grid. The datagrid contains dynamic number of columns, and there is possibilty of the datagrid to be longer than the browser's viewport. Users/clients will need to scroll horizontally, This can make user to loss track of the other part of the datagrid. … Web Development asp.net web-browser web-server | |
Hello, I'm attempting to create a page on my company website that lists products in my inventory. I've created a[URL=http://www.thepiezoexchange.com/mercury_inventory.htm]simple page[/URL], but need to create the scripting to make it do the following: 1. When the customer enters a quantity in the form field next to the part number(s), the … Web Development asp email javascript pay-per-click | |
hi i ahve developed one artcicle submit site. in taht i have done list of authors and the number of article submitted by them. but in the first page taht is fine but in second page onwards the number of article shows 0. i cna show the website http://articlenetworks.com/authors.php this … Web Development php | |
hi i ahve a mysql databse in which list of name is stored. i wnate to retrive the data form that databse. i have problem in retriving it. if i have name jack 3 times in my databse, but when i wnat to show the names i get jack jack … Web Development php | |
Hi, I am new to ASP.NET, working on a web app using Visual Studio and VB. My App was working fine before and after I made few changes, It opens "Default.aspx" for any selection. I've even remaned the file "default.aspx" in the solution to something else and made sure there … Web Development asp asp.net visual-studio | |
[COLOR=Navy]Hello, Ps can anyone enlighten me on how to learn PHP. I mean I am a novice and would like to know if it requires a compiler etc like C++,C ..to compile codes. In essence what are the things needed to learn PHP...and how can I really develop myself well … Web Development php | |
Hey there, im not very great at php and im wondering how i could fix this error [CODE]Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home2/blindst/public_html/forumbeta/vtopic.php on line 328 No replys to this topic.[/CODE] This is line 328 [CODE]$sql2=("SELECT * FROM `reply` WHERE tid = '$id' … | |
I'm trying to add an RSS feed to my videogame website, but it isn't working. These are the steps I have done so far: A) I have copy and pasted the RSS reader to a blank notepad file, and named it rssfeed.php. This is that code: <?php $olderror_reporting =error_reporting(0); include … | |
i ahve a summary for example hsssssssssssssssssssssssssssssssssssssssssssssssssssss hsssssssssssssssssssssssssssssssssssssssssssssssssss sbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb i wante to break these summary and dispaly only first line. hsssssssssssssssssssssssssssssssssssssssssssssssssssss which function i have to use? any body please help me Web Development php | |
Hello Everybody, Can anyone help me? I want to download the phptriad.exe 2.2 I have I want php 5 with php triad please let me know and give me the url if anyone knows this... thanks in advance... Milind Web Development php | |
There is something I'm not 100% sure about. If we have multiple versions of the .Net framework like 1.0, 1.1 and 1.1 hotfix, can we uninstall older versions with no problems? I think we can but should keep the latest we have ( 1.1 ) and its hotfixes. In other … Web Development asp.net | |
Hi all i try to change the keyboard layout and languge in multilanguages (English and another Dutch-dir=ltr- or Hebrew-dir=rtl-) web pages, its usually changed by Alt+Shift ,KeySend method can control applications but can be usefull but about web page i have no idea i could not find anything can help … | |
I'm very new to using asp.net and am trying to run my company's website with IIS - I know that it's set up properly because our other projects work fine on our local host. The problem I'm getting is with the web.config file. The project was outsourced and we no … Web Development asp asp.net microsoft web-server | |
Guys, i have been struggling with this for past three days... here is what i have... aspx page [CODE]<form id="Form1" method="post" runat="server"> <asp:repeater id="titleRepeater" runat="server" EnableViewState="False"> <ItemTemplate> <b><%# DataBinder.Eval(Container.DataItem,"Item_No") %> <br> </b> <asp:DataGrid ID="maingrid" Runat="server" AutoGenerateColumns=True DataSource='<%# GetDataSource( Container.DataItem )%>' OnItemDataBound="maingrid_showformatting" ShowFooter=True > </asp:DataGrid> <br> </ItemTemplate> </asp:repeater></form>[/CODE] codebehind [code] Private … Web Development asp asp.net dataset first-post sql | |
Hi, I'm programming in ASP.net (C#) and I want to open the page with our reservation system in the new popup window (well, I'm not glad to do so, but it must be :rolleyes: ). Is there some way to do this using C#? Thanx, Steve | |
<form action="php.php?b=<?php echo $b; ?>" method="post"> Enter your news/rumor: <input type="text" name="name" /> Enter your news/rumor: <input type="text" name="website" /> Enter your news/rumor: <input type="text" name="comment" /> <input type="submit" /> </form><br /> then on php.php: $t=$_GET["b"]; mysql_connect("db.lepslair.com", "username", "my password"); mysql_select_db("lepslair"); mysql_query("INSERT INTO nonmembers($name, $website, $comment)) VALUES(name, website, post_text) "); … Web Development first-post php | |
I worked on this site over the summer at an office, I'm now back on christmas break, and will work again this summer. With the help of many people online I got the following code to work. But now, it doesn't work. As far as I know, the code SHOULD … | |
i'm attempting to intall a simple wiki on my site. i installed the files acording to the install doc, but am getting the error message "Warning: Wrong parameter count for htmlentities() in /home/www/dept-of-films/tipiwiki2/index.php on line 128". Line 128 is... $filtered = stripslashes(htmlentities("\n\n".$raw,ENT_NOQUOTES,"UTF-8")); is this something i can fix myself and … Web Development | |
I wan't to be able to have a list of birthdates advance by one digit when that particular persons b-day rolls around. Is there a simple script out there that I can apply here? Thanks in advance, rs Web Development javascript | |
In some of the site i have seen rss feeds for example ezinearticles.com. i can see rss feeds. please any body tell what is the use of that? thanks Web Development php | |
i ahve site in which people can submit the article for free. but now i am trying to add feature in that article distribution. if person pay me $50 i can distribute his article to many sites. so i need the site such taht he can pay through credit card … | |
Hi PHPers, Firstly, a [COLOR=Red]Very Happy New Year To ALL!![/COLOR] Hope everybody enjoyed this festive season :cheesy: Back to work, sigh... I am encountering this problem, below is a code which i have written, but the page only displayed the result of my code which is line 27. But when … | |
Hi, I would like to find out how to call javabean from jsp page with passing values upon onChange event. Pls provide example if possible | |
i wrote this basic codes to check against gd library existence: [PHP]$image = @imagecreate(480, 250) or die ("Cannot Initialize new GD image stream"); $background_color = imagecolorallocate ($im, 0, 0, 0); $text_color = imagecolorallocate ($im, 255, 0, 0); imagestring ($im, 255,255,0, "A Simple Text String", $text_color); header ("Content-type: image/gif"); imagegif($im);[/PHP] result: … | |
I have a website that lists customer's jobs that have shipped. When they click on the carrier's name it links to the carrier's website, but it uses the current window. Can I force the link to come up in a new window so my customer can see both my site … Web Development php | |
Can any one explain me how to submit form value using JavaScript? Web Development javascript | |
I belong to a forum on forumer.com. Recently, we had a member sign up (it's a support group for parents of premature babies) using STOLEN pictures from other members' websites and this new member was trying to pass these babies off as her own. Although it is NOT against forumers … Web Development php | |
Ok so I am trying to create some BB code from scratch, and my big problem is the \S and \s and .* are very greedy. For example, when I try to use bb code on something like this: [php]$text = "[b]abcdefg[/b] !@#$%^&* [b]0123456789[/b]"; $text = preg_replace("/\[b\](.*)\[\/b\]/","<b>\\1</b>",$text); //same thing: //$text … Web Development php | |
hi all, a 'space' in asp.net is ' ', how about 'tab' in asp.net? by the way, can i [B]add image to a listbox user control? [/B] if so, please provide the codes or any ref links.. [COLOR=DarkRed]a million thanks![/COLOR] | |
:D What is the lifetime of values within the viewstate. :D for how much time are they going to store the values of our controls Web Development asp.net | |
I know how to create standard php files, but how would I add the ?blabla to the end of the url. IE my forum url looks like this /index.php?act=home How would I make it look like that? Thanks Web Development php | |
How can I make media photos at my site?When click them,the medias play.Which sofware should I use?Can you tell me how? Web Development php | |
I am having problem in connecting the database. As I am new to it so I have started with simple basic statements. But the compiler is giving the following error Type 'OleDbConnection' is not defined. In fact it gives error at many other things as well. As when I was … Web Development asp.net | |
I figured it was about time I updated my mod_rewrite tutorial for vBulletin. Therefore, I decided to provide you guys with the exact, full mod_rewrite that I use here at DaniWeb. It's written for a clean install of vB 3.0.7. [b]This version is not for the faint of heart![/b] Some … Web Development algorithm daniweb-announcement display first-post html-amp html-css publishing seo session vbulletin xml | |
Hi all, I'm relatively new to ASP.NET - used to code in Coldfusion. I've got this control created in a page <asp:listbox>. I also have a javascript function in the same page to add listitems into the listbox on certain client calls such as the following:- [CODE] var anOption = … Web Development asp asp.net client-server coldfusion javascript | |
If I have an array $abc=[0,0,0,1,0,2]; how to change it to $abc=[1,2]; (remove all 0), is there php function can handle that? thanks. Web Development php | |
I need a reliable text editor where I can edit just the text & not the code. I don't like CMSs, so please don't even suggest them :) I was going to use Contribute, until my web developer told me it doesn't work with external PHP files. It would also … Web Development | |
:?: I am new to this site but, I need help figuring out this simple form that is suppose to send the data to our school's server. The first one is my html form and the second is the asp file. I don't know how to get the simple form … Web Development asp display first-post | |
I am selling vBulletin on eBay ([url]http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=5650034687[/url]) and am wondering if I have to contact vBulletin first before I transfer it. The reason I am selling it is because I have lost the need for it. Thanks, Avrom Web Development vbulletin | |
HEELO , in my asp form i have following fields 1)Name (text box) 2)Job Title (text box) 3)company name (text box) 4)email address (text box) 5)telephone (text box) 6)nature of enquiry (combo box) combo box consist of following values a)sales 2)technical service 3)web development 4)employment opportunities basically my question relate … | |
to help me add some new features to my dating site, im tryin to add video chat, if u know how to do this or have some good idea pm me | |
Hi, I am tryiny to write a program which will allow me to upload a image and after which i had uploaded the image, I will be able to calculate the RGB values of the image which i have uploaded. The code works this way: //user to upload image file … Web Development display file-stream first-post image php sql | |
OK I wrote this query but i keep on getting error on it: [PHP]$query2 = "INSERT INTO ATTENDANCE (Class,Time,T_User_Name,S_Number,Absent,Date) VALUES ('$Class','$S_Type','$_COOKIE[User]','$S_Number','1','$Date')"; [/PHP] the error i get from php logs is: [28-Dec-2005 17:51:07] PHP Parse error: parse error, unexpected T_VARIABLE in /test/teachers/take.php on line 27 ------------------------- line 27 is the query … Web Development php | |
hi im new to jsp iam using netbeans. I have a image in C: called w.gif. in index.jsp i have <img src="C:/w.gif" alt="W"> but it doesnt show the picture. any help? thanx |
The End.