52,566 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for Pankaj18

Hi, I want to display a text, getting from database, into a DropdownList using text property. My Code:: [code=ASP.NET]SqlDataReader drd; if (drd.Read()) { drpcompname.Text = drd.GetValue(0).ToString(); }[/code] But It Display an error:: 'drpcompname' has a SelectedValue which is invalid because it does not exist in the list of items. Parameter …

Web Development asp.net
Member Avatar for Ramesh S
0
127
Member Avatar for StefaRSA

HI, I am using Roshan's Ajax dropdown code for my two ajax dropdown menus. All is working fine, but when I want to use $_POST in the submitted form in FireFox, its not working...??? Its working fine in IE. Can anybody please help me with this problem? The Form where …

Web Development mysql php
Member Avatar for Tulsa
0
135
Member Avatar for mahe4us

Hi to all, I would like to give a feature for users while they are uploading their pictures. Suppose if the user uploaded a picture, then the user has facility to change the uploaded picture into horizontal mirroring and vertical mirroring. Once the user changed the image to his wishes …

Web Development image php
Member Avatar for AXJ
0
290
Member Avatar for DiyaMV

Is there emaito option in HTML available in php I want to open up outlook so that the user reviews the filled mail before sending it. I want to include table and chart also in the body of the message.

Web Development php
Member Avatar for FlashCreations
0
123
Member Avatar for dnanetwork

i'm working on paypal web application. i have no idea how it works. all i want is after my cart page it should call for paypal page where user should enter the credit card details...so help...?

Web Development asp.net
Member Avatar for Ramesh S
0
101
Member Avatar for gingank

I have a question about how to change the web config Below is my code [CODE]<configuration> <appSettings/> <connectionStrings> <add name="MyXT" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\XT.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient" /> </connectionStrings> <system.web>[/CODE] If i want to change it from SQL Express to Standard SQL how i have to write about it. Now the data …

Web Development asp asp.net
Member Avatar for Ramesh S
0
470
Member Avatar for dwdata

I am working of a musicians volunteer DB. I have a ADD Volunteer page: [code] <?php require_once('auth.php'); ?> <!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> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" /> <title>Village Of Hope Worship</title> <style type="text/css"> <!-- .style1 { font-size: 24px; font-weight: bold; } .style3 { …

Web Development html-css php user-interface
Member Avatar for dwdata
0
192
Member Avatar for ayesha789

Hi all, How I can show the Home Icon and Favorite Icon on the Web Page. Please Also Tell me about the Slider in which I put the Home and Favorite Icon so anyone can make my website as their homepage or favorite page easily. Thanks.

Web Development javascript
Member Avatar for vectro
0
127
Member Avatar for Barefootsanders

Hi all.. .I'm trying to use preg_split but I'm having trouble getting the regular expression I want. What I have now is a long character string, upwards of 200 characters depending on user input. I'm trying to do is break up my string an array, each element in that array …

Web Development php regex
Member Avatar for somedude3488
0
135
Member Avatar for cinemaduro

Hey all. First time poster here. This looks like a great community! I'm getting a "Parse error: syntax error, unexpected T_STRING" error. I'm just starting to get into PHP and can't for the life of me see where the problem is. This is part of the NextGen Gallery plugin for …

Web Development php wordpress
Member Avatar for cinemaduro
0
157
Member Avatar for Magicianer

I'm using a script called Ajax Upload to upload files. I have a div that has a php script inside so that when the page loads I can see the listing of all the files. My problem is that I want to update this list of files without having to …

Member Avatar for Magicianer
0
211
Member Avatar for thecodingbee

Hi there, i have a problem with this updater script which means that when i click update, change the record, and press submit-it says record changed or something like that, but does not actually do anything! Here is the code, it is supposed to be three files- list_file.php, update.php, update_ac.php, …

Web Development mysql php
Member Avatar for thecodingbee
0
96
Member Avatar for nccsbim071

How can i get the public key token for the assembly that i want to add in root web.config file. Please Help

Web Development asp asp.net assembly
Member Avatar for nccsbim071
0
179
Member Avatar for vanessia_1999

Hi, I need a little help. This might be something simple but hard for me. I am trying to list all the name of the product which is $description and the $quantity neatly by using a table. My problem is that it is only showing one product information instead of …

Web Development php
Member Avatar for nish123
0
106
Member Avatar for ace_dman

Guys can you give me idea for a thesis , it should be web based programming language that I know- PHP,MYSQL,AJAX,FLASH Im not in a group so its individual, so I need help:( ..thanks

Web Development flash php
Member Avatar for Menster
0
59
Member Avatar for ppomu

Hello, I have developed a web based application using jsp and connection as Oracle 9i database. The problem encountered is that whenever I am opening any jsp pages, a session is being created in the database which even after being killed did not disappear. In fact it should be that …

Web Development html-css java-jsp oracle session
Member Avatar for peter_budo
0
147
Member Avatar for rockyman12

Here's what i know.. Server side languages: php (open source) asp (ms) asp.net (ms) what i do not know is.. Ruby ?? Ajax ?? JSP ?? Dhtml?? And the title: Rss, web services and SOAP (what soap u mean washing soap ???) And which language is used to create a …

Member Avatar for diafol
0
152
Member Avatar for varun_1411
Member Avatar for Cynthia

Hi, I want to know if there is a way to prevent users from manually typing in the URL and entering the page after they have already signed out? I was able to make the back button disabled. Let's say if they have already click logout and when they click …

Web Development javascript
Member Avatar for Bojero
0
159
Member Avatar for itsrahulk

Hi everyone !! I want to code a php email sending and receiving program just like gmail or yahoo. i don't have any idea of php network programming. Could anybody please help me how should i proceed or from where i can get hellp on this? Waiting for your replies. …

Web Development php
Member Avatar for Bojero
0
74
Member Avatar for itnagusak

i have a form being filled. i don't want the user to be able to submit twice. how can i either prevent the user from going back or disable the submit button? i am currently disabling the submit button but when the user clicks back(from the next page) it asks …

Web Development javascript
Member Avatar for sureronald
0
207
Member Avatar for adamramadhan

[ICODE]<?php class ShopProduct { public $title; public $content; function __construct($title,$content) { $this->title = $title; $this->title = $content; } function getProducer() { return $this->title; } function getContent() { return $this->content; } function foo() { echo "hello!";return 1; } // end class shop product } $product1 = new ShopProduct('Product 1','somegirls'); $product2 = …

Web Development oop php
Member Avatar for emarshah
0
91
Member Avatar for nish123

Hello friends.. I want to destroy the session when user click on Back button or browser... is it part of Javascript or Php..? i think its just a small Query..!! Thank u..!! :)

Web Development php session
Member Avatar for emarshah
0
110
Member Avatar for coleguitajuan

Hi all! Im trying to creat thecode for save a value into a variable ($sales_code) formed per 2 letters (VW, DF, RK or DI) depending on this algorithm: 79% of the time it's VW, 7% of the time it's DF, 7% of the time it's RK, 7% of the time …

Web Development algorithm php
Member Avatar for Menster
0
110
Member Avatar for kssi89

Hello everyone, I'm trying to test PHP of WAMP on a vista machine but every time I attempt to launch a page in IE, the browser asks if I want to download the PHP page. Here is the code I've used: [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> …

Web Development php windows-vista
Member Avatar for emarshah
0
171
Member Avatar for gobi_roy

hi, there, i want to use .gif button and use in the hyperlink. i am not able to move to another page by clicking it. the code is as below: [CODE]<asp:HyperLink ID="HyperLink1" runat="server"><img alt="" longdesc="file:///C:/Documents and Settings/user/My Documents/Visual Studio 2008/WebSites/WebSite9/Images/line.gif" src="Images/line.gif" style="width: 1273px; height: 6px" /></asp:HyperLink>[/CODE]

Web Development asp asp.net perl visual-studio
Member Avatar for kameswari
0
142
Member Avatar for cjay175

hi all, I am wondering if someone could give me a quick hand with some php im trying to edit in Wordpress. Heres the original peice I am trying to edit: [CODE] <div class='dateauthor'> <small class='capsule'><?php the_time('F jS, Y') ?> by <?php the_author() ?> </small> </div>[/CODE] What I want to …

Web Development javascript php wordpress
Member Avatar for Wickedself
0
127
Member Avatar for vanessia_1999

I am having organization set up with my table. I am trying to code for a report to have the Purchase Date and Shipped Status information added/display onto my report but I continue getting errors such as the value is not showing up and my information look out of place. …

Web Development php
Member Avatar for kireol
0
133
Member Avatar for sugumarclick

hi all, Im doing in-house project ... Im creating form which has a drop down box for gender.... and also a document which contains "he/she" type... when i select the male option in that dropdown box the doc which contains "he/she" should autopopulate to its corresponding gender and generate it …

Web Development php
Member Avatar for kireol
0
129
Member Avatar for elamigosam

HI I have a issue I have a text box, and I need some how, that every time the user press the enter key, to make a space in the text that he types, a <br> tag is inserted at the end of the text, so when I call it …

Web Development php
Member Avatar for elamigosam
0
159
Member Avatar for cjay175

hi all, I am wondering if someone could give me a quick hand with some php im trying to edit in Wordpress. Heres the original peice I am trying to edit: [CODE] <div class='dateauthor'> <small class='capsule'><?php the_time('F jS, Y') ?> by <?php the_author() ?> </small> </div>[/CODE] What I want to …

Web Development php wordpress
Member Avatar for cjay175
0
228
Member Avatar for gingank

Hi guy i got problem on the web configure when upload to iis and it come out this error Server Error in '/myTT' Application Configuration Error Error line 31=<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></assemblies></compilation> Below is my web config code: [CODE]<?xml version="1.0"?> <!-- Note: As an alternative to hand editing this …

Member Avatar for Ramesh S
0
400
Member Avatar for gptArun

hello there, need urgent help in ffmpeg, shows no error. but not working for me :( i tried out so many examples, after that i found below code - ffmpeg and other paths are also fine. our hosting is from - [url]www.hostupon.com[/url] [code=php]<?php define('PHPVIDEOTOOLKIT_EXAMPLE_ABSOLUTE_BATH', dirname(__FILE__).DIRECTORY_SEPARATOR); // Set our source file …

Web Development php
Member Avatar for gptArun
0
176
Member Avatar for FlashCreations

Hi, I've been designing a web application that scales to fit the available window space in the web browser so that there is no need to use the scroll bar (and the whole point of the application is to fit the window). I've already figured out how to catch resizes …

Web Development javascript web-browser
Member Avatar for FlashCreations
0
428
Member Avatar for postal07

Been trying to get a mouseover dropdown menu to work when I copy and paste the code all I get is the code where the buttons should be.When it does work I go to preview I get script errors.I am new to this html thing I am using frontpage 2002.This …

Web Development html-css javascript
Member Avatar for PsychicTide
0
214
Member Avatar for The king

hi every one , i have a problem in asp.net server when i run the site it give me this error in internet browser plz if any one can help me and thanx for all of u, and this problem in oracle server (ISQL plus)also the error msg: ((Internet Explorer …

Web Development asp asp.net dns oracle
Member Avatar for thewebhostingdi
0
122
Member Avatar for vik85

hi everybody i am new in javascript .i hope all guys helpful.i have my site [URL="http://www.tonerquestsite.com"]tonerquestsite.com[/URL].my javascript is not working for IE can you help me out .my css file is [code=css]/* -------------- layout ------------------ */ /*qmfv{visibility:hidden !important;}*/ qmfh{visibility:visible !important;} .leftNav {position: relative; z-index: 0;} /*!!!!!!!!!!! QuickMenu Core CSS [Do …

Web Development html-css javascript
Member Avatar for essential
0
202
Member Avatar for progtick

I am losing my mind here. I am using Visual Studio 2008 to develop a website and I am using masterpage and contentpage. If I delete this line from one of the controls on page, then the page formatting breaks. If I keep it, it stays fine. [CODE]<link rel="stylesheet" type="text/css" …

Web Development asp asp.net visual-studio
Member Avatar for serkan sendur
0
122
Member Avatar for o12357

Hi everyone, i would like to know whether the result of a mysql query executed from one php page will be available to another php page on the same site. thanks!

Web Development mysql php
Member Avatar for o12357
0
69
Member Avatar for gobi_roy

hi, there, i need to know why is it i get this error when i run the web site.[B]A page can have only one server-side Form tag[/B]

Web Development asp asp.net web-server
Member Avatar for serkan sendur
0
177
Member Avatar for missbeginner

I want to use a click button to go to next page, and display the detail info of the person i select. but this code wont work. help help! [code=asp.net] void ButtonHandler(Object sender, EventArgs e) { Button ViewReports = (Button)sender; switch (ViewReports.CommandName) { case "ViewReportsClick": Response.Redirect(ViewReports.CommandArgument.ToString()); break; case "ViewRemunerationClick": Response.Redirect(ViewRemuneration.CommandArgument.ToString()); …

Web Development asp.net
Member Avatar for missbeginner
0
91
Member Avatar for Yellowdog428

Hay guys I am looking for some help here I have a page in asp that I am trying to get a button to display a pop up with the value of a textbox on the parent page. This should be a simple popup with a multiline textbox inside it …

Web Development asp asp.net
Member Avatar for serkan sendur
0
126
Member Avatar for spidey

I have a table displaying the list of vendors from the database. I have to select one row (vendor details). For VendorID: ------------------------Start--------------------- <table> <tr> <td>Name</td> <td>Telephone</td> <td>Email</td> </tr> <%do while not rs.eof%> <tr> <td onClick="HighLightTR('#cccccc','cc3333');"><input type="hidden" name="vendorid" value="<%=rs("VendorID")%>"><%=rs("Name")%></td> <td><%=rs("Tel")%></td> <td><%=rs("Email")%></td> </tr> <%rs.movenext loop%> </table> --------------------------End------------------------- The page also has …

Web Development asp display email image javascript
Member Avatar for missbeginner
0
192
Member Avatar for sonia sardana

PROJECT DETAILS- This system uses two files....item.txt and transaction.txt.. .when u add products, it goes to item.txt with its current stock. ...when u sell product, the stock decreases from item.txt and a transaction entry adds to transaction.txt First Part is completed.Dat is item.txt file..Now if i sell product,I want to …

Web Development apple asp.net vb.net
Member Avatar for sknake
0
120
Member Avatar for jorgeberber

what am i doing wrong here? what i want to do is make two menus work together to show me a result.. please help ... [CODE]<!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" xmlns:spry="http://ns.adobe.com/spry"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Untitled Document</title> <script src="SpryAssets/SpryData.js" type="text/javascript"></script> <script src="SpryAssets/SpryHTMLDataSet.js" type="text/javascript"></script> …

Web Development html-css javascript
Member Avatar for alloyking
0
113
Member Avatar for chriscross86

[B][/B]hi there, i need help in my vb behind codes. There is an error at these part [B]'con.Open()[/B]'. When i run the code the error says, [B]"The ConnectionString property has not been initialized."[/B]. It also says , "invalid operationsException was unhandled by user code." [code]Imports System.Data.Sql Imports System.Data.SqlClient Imports System.Web …

Web Development asp asp.net session
Member Avatar for Ramesh S
0
1K
Member Avatar for bhanu1225

Hello All ... Bit information from your side. Which PHP version will support on Mac OSX ?. I am using Mac OS 10.5.7. If so, what are requirements for designing an application ? Like (web server , database server , etc ...). With Best Regards, Bhanu.

Web Development php web-server
Member Avatar for chrishea
0
88
Member Avatar for skullish

Hi, I created an asp.net website that wrotes information on an Access DataBase and allow users to upload pdf files. But I have a security error, telling that ASP.NET doesn't have the rights to create de file (but writing in the DB works perfectly). This is the error message : …

Web Development asp.net pdf web-server
Member Avatar for skullish
0
224
Member Avatar for sarithak

Hi frnds... here i am phasing a small problem...after successful completion of all my queries ,it is not redirecting to back page..plz check this one.... [B][U] Need Logic[/U][/B] At the bottom of this code i execute 9 sql queries..all are in same manner..If there is any logic in this plz …

Web Development php
Member Avatar for somedude3488
0
404
Member Avatar for serkan sendur

ayesha789 asked me how to use my smooth scroll script in code snippets section. i created an example for him here : htmlpage : [CODE]<!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> <title>Untitled Page</title> <script type="text/javascript"> function elementPosition(obj) { var curleft = 0, curtop = 0; …

Web Development javascript printer publishing
0
273

The End.