6,574 Topics
![]() | |
U can see some links on the first page of this site [url]http://srimadbhagavatam.com/[/url] and when you'll go one link among them you find another sub link.So i have to open all links to download the pages.I wonder the first link consists of 400 pages.So it's very uneasy and time taking … | |
hello friends, i have opened an web browser in vb.net using the below code [code] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim nullObject As System.Object = 0 Dim str As String = "" Dim nullObjStr As System.Object = str Windows.Forms.Cursor.Current = Cursors.WaitCursor Dim i … | |
I found a principal differece between the behavior of staticaly (HTML) coded object – the table row, and the same object created dynamicaly (DOM) with createElement() addChild() methodes. The folowing souce creates one HTML row and one DOM row and gives buttons to duplicate each row. [CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD … | |
am doing my class project but am stuck i want to oepn the administrator category in valid_user table is Administrator and if Normal user to open welcomepage here is the code it only open admnwelcom.html even when the catagory is Normal_user.here is the Php code [code=php]<?php // This code will … | |
hii all, i developed a shopping cart which has many features like grid view,list view and floating cart which is also dragable.now my problem is its taking to much time to load becoz of conditions and images now,i want to generate html pages of my php pages,i dont want url … | |
hi im seconds away from throwing the laptop off the wall, trying to figure out the best way to embedded the [B]auto generating photo[/B] gallery into my html website. I am using dreamweaver. I am very new at all this. What do i need to do to place it on … | |
hey guys i joined this site recently. i started learning CSS and prepared a drop down menu in css. it works fine in my office computer which has got IE-7. but when i try to edit and learn in my PC at home the whole of <LI> of the drop … | |
i have created an ol form and all its details are stored in a text file i want to display these records in the form of the table on another webpage any suggestions?? | |
Hi, I have hyperlinked texts and i want to remove the underline and blue color also. I removed underline but not the blue color i want the font to be in black?? Here is the code: [code=html]<html> <body> <A STYLE="text-decoration:none href=http://www.google.com>This is an example for automatic term mapping</A> </body> </html>[/code] … | |
Hello, I have just a regular .html page. I want to take my PHP source code from one of my PHP scripts and display that to the viewer so they can see my code on the HTML page, as if it was just regular content on a page. When I … | |
Hello Everyone, Below is the working code, that I just coded for you guys to understand in a easier way: [code=html]<html> <head> <script type="text/javascript"> function updateTotal() { var sundayTotal = Number(document.getElementById('sunday').value); var mondayTotal = Number(document.getElementById('monday').value); document.getElementById('total').value = sundayTotal + mondayTotal; } </script> </head> <body> Sunday Duration: <input type="text" id="sunday" onkeyup="updateTotal()"> … | |
I am new to web design and going to school. My teacher asked me what the differences are in using a GUI or coding in XHTML. I don't have access to any GUI applications at this time. Can anyone help me? | |
How does a CSS rule get applied without applying it? Below is code from a blank page with no links. The only CSS rules are those I have defined, and although I [I]have not applied the rules[/I], the resulting HTML reflects the application of the last rule defined. It also … | |
I'm creating an input form for users so that they can input various bits of info into a db. One of the fields is so that they can upload a file, which puts the file onto the web server and the path to it into the db. The problem is … | |
Hello All, I have created a page using VB6 dhtml.. It works fine within VB but when I try to export it to my website, the buttons wont function.. I want to now put that DHTML page on my website.. Any ideas on how to get my buttons to function … | |
Hi all, Hope someone can help me with this issue. Repeat-y is posing me problems. In general, what I am trying to do is putting the most visited pages as a sitemap in the footer part of the website. (Like the ones you see in word press run websites). However, … | |
My problem is that i want to develop a project in which there is front end (window form) in vb .net in which there are diffrent field for book entry name,author,image etc. all this data is stored in back end sql server 2005 there is drop down list of books … | |
Hey guys, i need to read form(s) on VB.Net from the simple html based web sites, like on VB6 webbrowser object; [code] WebBrowser.Document.All("form").All("field")[/code] But i shouldn't to use a WebBrowser object. How can i do this on VB.net? | |
hey, first off I'd like to state that I am pretty new to ms sql and stored procedures tho I have worked with sql for quite some time. My employer would like me to write a script which takes html content from a mssql db (originally delivered dynamically) and create … | |
Hi, I am testing a PHP web site offline using XAMPP server application. The website runs great, but the only problem is that the .css is not running. The odd thing is that if I am online and I test the website locally the .css file works, but if I … | |
I'm having a problem parsing a webpage to extract data from a table. Ideally I'm trying to extract the table with id="ctl00_ctl00_MainContent_PM_MainContent_gv_Portfolio" (see html below) I don't have a problem entering the website and downloading the html, it's beautiful soup that's tripping me up. My python code and downloaded html … | |
hey people i wud really really appreciate a hand here ohk dis is my task i have been given a bunch of urls to webpages containing blog posts i need to extract the authorname,date,content of blogpost and meta data and put it into a database. Here is wat i thought … | |
Hi all, my website can not be displayed due to this error. I have already uploaded it to a webshosting company. Do anyone has an idea of the problem? I have (index.html) already It is a pure html site Forbidden. You don't have permission to access / on this server. … | |
Hi, I just wonder if this is possible. When i print a page from my localhost or web, the html link information is printed at the end of the page. How can disable it? Thanks | |
I was kinda "given" the task of taking over a website which is something i have not done in a while. I have never gotten into CSS beyond styles for text before so i am doing this by trial and error. Anyways, I have a site designed and online. However … | |
Hi; I have been studying PHP and I'm coding it. I ran into an odd problem but I'm sure it is a newbie error. Whenever I run my php script on xampp I get parsing error line 103. I go to my code and the closing html tag is at … ![]() | |
WHen we click on site whether left click or right....Control goes to IEDoc_MouseDown event,I just want to ask is that possible to know taht which element is clicked..Suppose we right click on link,is that possible to know it that link is clicked. [code] Public Class Form2 Dim WithEvents IEDoc As … | |
How would you count how many opening HTML tags there were & then closing tags in a line? eg [CODE] for line in something: for match in re.match("[I]opening_regex_here[/I]",line): # will match <H1> or <html> or whatever opentags += 1 for match in re.match("[I]closing_regex_here[/I]",line): # will match <H1> or </html> or … | |
Hi, I am trying to create tabs using two images, the main background image and then the mouse over image, code i hv written after reading guidelines from a book so thats why cant completly understand where is the problem: css code: [CODE=css] body { font: 62.5%/1.5 Verdana, Arial, Helvetica, … | |
Hello all, My website has a feature in which I can turn on/off a feature which allows members to add their own CSS code for their profile design! If possible I want to allow this as it would mean a much better platform for my members but I wanted to … |
The End.