20,737 Topics

Member Avatar for
Member Avatar for jmaddy10

Hello all, I just started working at a firm as a web assistant and was given the task of redesigning our site. One of my tasks involves making the site more efficient by using include files. I have never designed with this in mind and despite my best research I …

Member Avatar for jmaddy10
0
291
Member Avatar for dthung

When I try to design relation database using MSSQL Server 2008, I find that the MSSQL Server 2008 allow designer can create two relationships with one direction from a table to other table (for example, I have two table A an B, I can create two relationship from table A …

Member Avatar for tesuji
0
176
Member Avatar for Acute

Hi, everybody! I'm new in web-design, and currently i'm learning the DIV positioning. I have written some code and i'm not sure: have i understood the main idea or not. Plz, look at it and leave your comments and advices, i'll be very thankful :) Are all the sites done …

Member Avatar for Dandello
0
351
Member Avatar for shadow95

i have setup my custom content publishing script which is working great except for the part that when i publish content in it by copying it from external sources like from my other websites some special characters like (' " ) becomes this (� ) i have no idea why …

Member Avatar for diafol
0
54
Member Avatar for nizuya

In an html form, I want a certain field to be invisible when "no" is checked and visible when "yes" is checked. This is my code: html: [code] <form action="pageName.html" method="post" name="formName"> Question? <input name="radioBool" type="radio" value="1" onchange="dispField('textInput');" />yes <input name="radioBool" type="radio" value="0" onchange="dispField('textInput');" />no <br /> <span id="textInput" style="display:none"> …

Member Avatar for nizuya
0
326
Member Avatar for Schoorsteen

Hey there, I am attempting to open Firefox using C++ on Linux (Ubuntu). However, I get an segmentation fault. What am I doing wrong, and what should I do? [CODE]std::cout << system("/usr/bin/firefox") << std::endl;[/CODE] /usr/bin/firefox works in commandline and when I run this program in debug mode in Netbeans, firefox …

Member Avatar for daviddoria
0
580
Member Avatar for Brandlax

I want to know the most simple code of actionscript 3.0 on how to shake the screen. and i need this QUICK! thank you,

Member Avatar for iamthwee
0
114
Member Avatar for jmh@pcs
Member Avatar for eshabajaj
Member Avatar for BrianDickson

I want to style an H3 header with a background colour. If I do this: [code] h3 { background-color: #000; color: #fff; } [/code] and [CODE] <h3>header tag</h3> [/CODE] for example, the output in the browser will be displayed across the entire width of it's parent container. If I wrap …

Member Avatar for BrianDickson
0
227
Member Avatar for m-lamaa

dear experts i have w big problem, i need to solve it as soon as possible, i have a link to a web site i'm tying to retrieve data from it but unfortunately i have receive an error in vb " The remote server returned an error: (400) Bad Request." …

Member Avatar for m-lamaa
0
95
Member Avatar for fankoff

Hi guys, I`m new to web-developing. Curruntly I`m battling with JSP and Databases. I `m using Eclipse as developing environment and I started receiving following error, which doesn`t tell me anythnig: HTTP Status 500 - type Exception report description The server encountered an internal error () that prevented it from …

Member Avatar for stephen84s
0
174
Member Avatar for hashtable

Hi all, firstly I'm new here and my English is not perfect but I think it is not important :) I have web page where user can upload file. He can select which file to upload with standard HTML input of type file. I want to add this feature: when …

Member Avatar for vani.golakoti
0
583
Member Avatar for walkerpbus

I hope my title says it all. I can't show you the jpg error, because the size is too large to upload (3 MB). The mix of Firefox, Windows 7, Zonealarm. I am researching Firefox in a Firefox forum. All I know is the Combo of the same Firefox, no …

Member Avatar for walkerpbus
0
266
Member Avatar for has problems

I am having a Visual C++ Debug Assertion Failure. It is happening after the internet opens and then try to go to website thats not the homepage. here is the info in the message: Program: C:/Program Files/Internet Explorer/IExplore.EXE Files:dbgheap.c Line:1132 Expression:_CrtIsValidHeapPointer(pUserData)

0
41
Member Avatar for lukeslytalker

I'm running into huge gaps in IE6 near the header of my Wordpress site located here --> [url]http://www.antimicrobial.com[/url] I've been working with changing my display elements as it's what I've been reading everywhere online. Specifically; [CODE=c]display:inline; [/CODE] I'm only running into this issue with IE6. I have created a new …

Member Avatar for lukeslytalker
0
37
Member Avatar for jindalarpan

hello all first of all sorry for asking such a stupid kind of question. i want to know is there a way i can restrict a html page to open up from the website unless an until it is called from other page from my website. for example there are …

Member Avatar for Dandello
0
200
Member Avatar for chr.s

Hi First of all, I apologise if I'm not posting in the correct place - I'll gladly ask elsewhere if deemed necessary. I've got a reasonable amount of experience with HTML and CSS and so far have only ever built websites that I know I'll be maintaining. So although updates …

Member Avatar for F-3000
0
145
Member Avatar for veledrom

Hi, There was a method that removes all the default setting of padding and margin for browser. I cannot remember it. Something like this. [code] ?????? { padding:0px; margin:0px } [/code] Thanks[code][/code]

Member Avatar for charlesying
1
95
Member Avatar for manojd

fellow developers...i am new to web development...I am developing a simple web application using Oracle for Weblogic Workshop with Weblogic 10Gr3 server. However my deployment server is weblogic 7.1. When i deploy and run the app, i get the following error Parsing of JSP File '/index.jsp' failed /index.jsp(6): class 'xxx.xxx.xxxx' …

Member Avatar for Thirusha
0
309
Member Avatar for rajarajan2017

Anybody here working as a Flash E-learning professionals who knows the Standards of Flash Elearning?

Member Avatar for briangillet
0
106
Member Avatar for snefmoo

i have server 2008 installed on a clients network and there is one particular computer that when IE loads up, the company web takes a long ime to load up. none of the others really have this problem is there anything i can do to speed it up.

Member Avatar for cguan_77
0
87
Member Avatar for deeptakshd

i created a page for searching records from database it is working well for repeater control but i want to display result in gridview......plz help [code] <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" /><asp:Repeater ID="Repeater1" runat="server"> <HeaderTemplate><table width="100%"><tr><th>NAME</th><th>LAST_NAME</th><th>EMAIL</th></tr></HeaderTemplate> <ItemTemplate> <tr><td><%#DataBinder.Eval(Container.DataItem, "fname")%></a></td> <td><%#DataBinder.Eval(Container.DataItem, "lname")%></td> <td><%#DataBinder.Eval(Container.DataItem, "email")%></td></tr> </ItemTemplate> <FooterTemplate></table></FooterTemplate> </asp:Repeater> [/code] …

Member Avatar for dnanetwork
0
184
Member Avatar for The5sisters

With a title like that there are bound to be a few readers.And that is what forums are all about. In years past I had commented on several forums in various categories but always left for the same reasons: arrogance or abuse. Not until last autumn did I run across …

Member Avatar for maceman
0
123
Member Avatar for theavenger

Hi, Recently my computer got a virus which kept bringing up a window saying that a program had stopped responding and so I scanned my laptop with Malwerebytes and it managed to find the infected files and get rid of them. Now, before this, my laptop experienced a crash, which …

Member Avatar for aloksharma7000
0
170
Member Avatar for arleneteng

i will begin this by saying that i am not a sys ad, and what i have learned so far was all from tinkering here and there. i really am just a beginner. i work in a small lab, where our internet connection comes from a LAN cable connected to …

Member Avatar for cc11rocks
0
325
Member Avatar for RC Nitro

I have a problem with IE 8 on another computer. When I try to connect I get the cannot display page. But when I check the work offline option my homepage will come up but nothing else. Any ideas?

Member Avatar for The5sisters
0
91
Member Avatar for MBTlover520

Hey eveybody! I have a problem for you.I am establishing a new website which offer [url=http://www.exmbt.com]discount mbt shoes[/url].I am very sad that,I pay more my time on optimizing my website,but some problems always exist.Such as,my all products pictures of[url=http://www.exmbt.com]MBT shoes[/url].I want to know how to make my products display in …

Member Avatar for diafol
0
49
Member Avatar for Muazam

My layout looks fine in firefox and internet explore, but in google chrome it looks bugged. My Search is placed somewhere else. Any idea why and what cause ths?

Member Avatar for Muazam
0
97
Member Avatar for sreekanthvasire

Hi all, I am having trouble with including a jsp page with <jsp:include> tag. This is what is happening. I making changes to a portlet application running on Websphere 7 server. This is the hierarchy of the jsp pages. blankPage.jsp -->bookingViewTabs.jsp --> availableRooms.jsp meaning blankPage is included in bookingViewTabs which …

0
49
Member Avatar for dhruv_arora

Hey I am Dhruv. 17 yrs old from India in 12th grade studying non-medical sciences. I am little into programming and more into web designing. My website is SNIP but right now the server's down.

Member Avatar for maceman
0
48
Member Avatar for churchilllesley

how can i put a contact form or script in my web page.where some one can put his email,country,zip code.etc and i receive automatically in my email.please help me out with a script.actually i use web page maker to design and am a beginner

Member Avatar for maceman
0
29
Member Avatar for SoN9ne

I have no issues with setting up the mod_rewrite and having it create the clean URLs. My question is for more experienced htaccess users and I am wondering if there is a simple solution to my dilemma. My URLs without the cleanup look like: index.php?ctrl=portal&mode=main or index.php?ctrl=portal&mode=edit&id=2 I want my …

Member Avatar for djcodesa
0
239
Member Avatar for scaiferw

I have a gradient header image as a background image in a header div. The gradient, which stretches horizontally across the entire page, has three distinct vertical partitions of 32, 72 and 56px, and I'll ultimately want to apply top and bottom padding to one or more if the three …

Member Avatar for tinimic
0
90
Member Avatar for knos

The URL [url]http://exampel.no/mypage.pdf#page=3[/url] opens mypage.pdf on page 3 if you use Internet Explorer. How can I make it work also in Firefox, where mypage.pdf always opens on page 1.

0
44
Member Avatar for Dick Steele

I do a lot of Google searches for tech-related stuff, and somehow end up with this site at the top of a lot of my search results. And EVERY SINGLE TIME I click on a link to this site, I get the [DELETED] 'join our community' popup window. I don't …

Member Avatar for happygeek
2
257
Member Avatar for billysim1

Ok so I have a problem that has been infuriating me for some time now and I really need to get it fixed. Basically I have a menu system, with three 'levels' each of which is a separate list that is styled slightly differently; my HTML code is this: [CODE] …

Member Avatar for billysim1
0
75
Member Avatar for RobTNYC

Hello everyone! Just the other day on my desktop computer I use for work, I all of a sudden was unable to access my internet. The error message read something like "Accessing Network ID..." continuously... I went down to the computer with the cable modem and router and reset the …

Member Avatar for main()
0
190
Member Avatar for runjel

i have cross browser compatibility issues right now.. i cannot change the height of my div in IE while in FF theres no sweat changing the height.. if i will increase the height of the div it will work but when i decrease the height to the 0px it will …

Member Avatar for karol33
0
61
Member Avatar for AbhikGhosh

Hi I am using tomcat 5.5 and I am unable to connect to mysql server(Wamp2.0i). Here is my code: [CODE] <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <%@ page import="java.sql.*"%> <%@ page import="java.io.*"%> <html> <head> <title>Connection with mysql database</title> </head> <body> <h1>Connection status</h1> <% String connectionURL = "jdbc:mysql://localhost:3306/names"; Connection …

Member Avatar for AbhikGhosh
0
166
Member Avatar for dragonfly99

Hello, I have a web service in which i am making connection to the database to get data..now i want that the app pool account should be used to make the connection and not the current user's credentials..can somebody tell me step by step what changes do i need to …

0
46
Member Avatar for cguan_77

hi web enthusiast guys, which one is better to use for a web site drop down menu or vertical menu? a menu code in pure css? a menu code in css and javascript? a menu code in pure javascript? a menu code in jquery? factors to be considered in choosing …

Member Avatar for xuqi
0
148
Member Avatar for alphae

Some please help me on how i can include a chat like the facebook chat on my website. if there is any html or php code for this i will really appreciate.

Member Avatar for Mike_Slough
0
56
Member Avatar for newsguy

Symantec today launched a new hosted security as a service solution for small and medium sized business in the form of its '[URL="http://www.messagelabs.com/trials/hep"]Symantec Hosted Endpoint Protection[/URL]' offering. Delivering a simple and convenient cloud-based service covering Windows-based laptops, desktops and files servers, the solution aims to protect these endpoint systems using …

Member Avatar for appscomputer
1
326
Member Avatar for manmeet khanuja

Hi all, I am trying to create a website project having multiple pages showing data from database. I am using Netbeans IDE 6.7 and Apache Tomcat Server and Microsoft SQL Server 2005. I was developing this site using JSP,Servlets,JavaBeans to fetch data using MVC Architecture but since i needed some …

0
47
Member Avatar for ja3_bhende

As this is a known issue,I already run microsoft hotfix update for this problem.Also added z-index = 1000 for DynamicMenuStyle.I have also used CSSFriendlyAdapters. At last I hav also added <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> in master as ell as my Default.aspx where I want to display menu.Menu list is from …

Member Avatar for mikev2
0
134
Member Avatar for flipboi15

hey guys, my problem is that my download speeds have gone down, and I mean noticeably down. i ran the speedtest and my speed was was not even half of what my ISP average is. i'm not sure if its my computer giving out on me since it is about …

Member Avatar for esfwff
0
507
Member Avatar for ar31an

hello mates, i am working on a project of online resume management system and i am encountering an exception while creating resume. [b] Exception: Data type mismatch in criteria expression. [/b] i have attached the database tables list, here is my code for Create Resume-1.aspx.cs [code] using System; using System.Data; …

Member Avatar for finito
0
139
Member Avatar for Aenonar

Hey everyone! I've been trying to set up a more fool proof time trial thing for my windows application rather than checking the users computer for the time (that can easily be altered). I'm not that experienced with more advanced coding, and I just can't find any code that can …

Member Avatar for bbman
0
113
Member Avatar for revski

hi i am new to CSS, XHTML and PHP, and have wrote a style sheet to display a navigation bar, with auto expanding widths etc...all the relative code is below [CODE] a:link {color: #008000; text-decoration: none} a:visited {color: #cccccc; text-decoration: none} a:active {color: #ff0000; text-decoration: underlined} a:hover {color: #3300ff; text …

Member Avatar for rowiki
0
161

The End.