Group: http://groups.google.com/group/sitedesign/topics
- Copy href from HTML Pages [3 Updates]
- Add relative paths to web.xml [2 Updates]
- Ashish Revar <ashishrevar@gmail.com> Mar 12 01:53PM +0530
I want to copy multiple data from multiple pages from one site.
Pages having postback method as it is having drop down lists to fetch data
from database.
Site has been developed in aspx.
Link:http://www.gtuinfo.in/Engineering-Degree/ExamPapers/ExamPapers.aspx
--
*Thanks and Regards,*
*--------------------------------------------------------------*
Ashish Revar,
+91 9909298846
- Joe Kelly <jkelly.developer@gmail.com> Mar 12 03:58PM -0700
I'm not entirely sure what you are asking for. Can you elaborate?
- Ashish Revar <ashishrevar@gmail.com> Mar 13 08:50AM +0530
I want to make scrapper which download all exam papers and along with a csv
file with all table data.
We need to select dropdown lists and click Search. So papers are being
displayed. I used curl method to do so but I am not getting papers semester
wise.
Link:http://www.gtuinfo.in/Engineering-Degree/ExamPapers/ExamPapers.aspx
If I select branch: Computer Engineering and Semester:6 then it should
provide papers for that branch and sem only and my script must download
papers to local folder.
Hope it is clear now.
--
*Thanks and Regards,*
*--------------------------------------------------------------*
Ashish Revar,
+91 9909298846
- Artist <sitepro@gmail.com> Mar 12 01:24AM -0500
Lol...
You wouldn't believe the private conversation we had.
I don't know a whole lot about XML paths and such, but I was wondering if
any of the following options would work for the homepage index file...
/
../
index.html
../index.html
But I think you are using a directory?
/WAR/
../WAR/
But that is the home directory for web files, so that won't work.
Wait...
<?xml version = "1.0"
encoding = "UTF-8"?>
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<welcome-file-list>
<welcome-file>/</welcome-file>
<welcome-file>Page</welcome-file>
<welcome-file>Page/Path1</welcome-file>
<welcome-file>Page/Path2</welcome-file>
</welcome-file-list>
</web-app>
See if that works. Or...
<?xml version = "1.0"
encoding = "UTF-8"?>
<!DOCTYPE web-app PUBLIC
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
<welcome-file-list>
<welcome-file>../</welcome-file>
<welcome-file>Page</welcome-file>
<welcome-file>Page/Path1</welcome-file>
<welcome-file>Page/Path2</welcome-file>
</welcome-file-list>
</web-app>
Those make more sense to me. Not that I am right, just guessing, but you
seem tyo be pulling the default file which is unnamed, so may as well not
name index.html?
Doug Peters
(605) 331-0808 (605) 251-8973
http://www.Doug-Peters.com
https://www.facebook.com/symbioticdesign
http://twitter.com/Domainating<http://www.twitter.com/Domainating>
https://www.facebook.com/groups/wdadg/ http://www.wdadg.org/
http://www.W3DN.com http://www.DomainHostmaster.com
http://www.HDWebHosting.com
http://www.PremiumBrand.Name <http://www.premiumbrand.name/>
http://www.font-journal.com <http://www.fontjournal.com>
http://www.GlossaryIndex.com
http://www.faviconvert.com
<http://www.SymbioticDesign.com>
- RRRaney <rrrsystems@gmail.com> Mar 12 06:48AM -0700
Hello Doug,
This is the structure of the WAR directory and the sub-directories
containing the .html files
WAR
WAR/index.html
WAR/Page/index.html
WAR/Page/Path1/index.html
WAR/Page/Path2/index.html
WAR/WEB-INF/web.xml
The example that I am trying to follow uses this so browsers with scripting
disabled (probably not all that many)
will get the index.html for the directory by default.
With a couple of JScript/JQuery functions I can make the navigator a lot
fancier.
I am trying to do away with the use of <noscript> tag.
In my first couple of sites I used the <noscript> to have some basic
functionality, and then
had another definition of the fancy version (always seemed like a waste).
Raney
--
You received this because you are subscribed to the "Web Design and Development" group at Google Groups. Messages are prefixed with [WD&D] in the subject. No spam is allowed. Be civil, be professional; try to be helpful & mind your netiquette. All posts are Copyright the original author and the Web Design and Development group. No reproduction of this content is allowed in any electronic or printed form outside the group at Google Groups and the http://www.WDaDg.org website. Any unauthorized use of our copy constitutes illegal Copyright infringement and may well be prosecuted to the full extent of the law. Digital Signature: $©"[W|D|&|D]g"|^|!SiteDesign@GG||#%$
To post to this group, email SiteDesign@googlegroups.com
To unsubscribe, email SiteDesign-unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/SiteDesign?hl=en
---
You received this message because you are subscribed to the Google Groups "Web Design and Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sitedesign+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment