Click here to Skip to main content
15,906,467 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: urget. enctype="multipart/form-data" Pin
Guffa20-Jan-06 6:59
Guffa20-Jan-06 6:59 
GeneralRe: urget. enctype="multipart/form-data" Pin
Harikrk21-Jan-06 6:50
Harikrk21-Jan-06 6:50 
AnswerRe: urget. enctype="multipart/form-data" Pin
Guffa21-Jan-06 10:19
Guffa21-Jan-06 10:19 
GeneralRe: urget. enctype="multipart/form-data" Pin
Harikrk22-Jan-06 20:20
Harikrk22-Jan-06 20:20 
Questionjavascript Waiting for a user to click on something? Pin
FruitBatInShades19-Jan-06 21:01
FruitBatInShades19-Jan-06 21:01 
AnswerRe: javascript Waiting for a user to click on something? Pin
Guffa21-Jan-06 10:25
Guffa21-Jan-06 10:25 
QuestionWeb Scraping in asp Pin
rubal_pal19-Jan-06 19:13
rubal_pal19-Jan-06 19:13 
AnswerRe: Web Scraping in asp Pin
legalAlien24-Jan-06 2:06
legalAlien24-Jan-06 2:06 
Try using something along these lines:

Function GetRates()
Dim strHtml
Dim objXMLHTTP, xml

Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "GET", "http://uk.finance.yahoo.com/q?s=GBPUSD=X", False
xml.Send
strHtml = xml.ResponseText
Set xml = Nothing

intPos = InStr(strHtml, "Last Trade:")
strHtml = Mid(strHtml, intPos)
intPos = InStr(strHtml, "$")
strHtml = Mid(strHtml, intPos - 7, 6)

Response.Write "GBP/USD: " & strHtml
End Function

This gets FOREX data from a Yahoo page but the entire page is in strHtml: parse to suit.
QuestionMaintaining same text-size on web page? Pin
pankazmittal19-Jan-06 11:01
pankazmittal19-Jan-06 11:01 
AnswerRe: Maintaining same text-size on web page? Pin
Guffa19-Jan-06 13:02
Guffa19-Jan-06 13:02 
QuestionXmlDataSource? Pin
eng_Hosam Kamel19-Jan-06 7:39
eng_Hosam Kamel19-Jan-06 7:39 
QuestionMicrosoft Online MSDN Menu Pin
Brendan Vogt19-Jan-06 1:49
Brendan Vogt19-Jan-06 1:49 
QuestionLabel Printing Pin
cberam19-Jan-06 0:50
cberam19-Jan-06 0:50 
QuestionASPNETDB.MDF Pin
m_amin8318-Jan-06 22:42
m_amin8318-Jan-06 22:42 
QuestionOne .js file or many? Pin
RX Maverick18-Jan-06 13:20
RX Maverick18-Jan-06 13:20 
AnswerRe: One .js file or many? Pin
Guffa18-Jan-06 13:52
Guffa18-Jan-06 13:52 
AnswerRe: One .js file or many? Pin
Colin Angus Mackay18-Jan-06 22:56
Colin Angus Mackay18-Jan-06 22:56 
QuestionCopy Web feature in VS2005 fails... Pin
Jesse Evans18-Jan-06 8:41
Jesse Evans18-Jan-06 8:41 
Questiontop.location.href from an Iframe Pin
xaphod18-Jan-06 8:06
xaphod18-Jan-06 8:06 
AnswerRe: top.location.href from an Iframe Pin
Guffa18-Jan-06 11:19
Guffa18-Jan-06 11:19 
GeneralRe: top.location.href from an Iframe Pin
xaphod18-Jan-06 12:50
xaphod18-Jan-06 12:50 
AnswerRe: top.location.href from an Iframe Pin
Guffa18-Jan-06 13:54
Guffa18-Jan-06 13:54 
QuestionHide IE Throbber in full screen mode Pin
Brent Lamborn18-Jan-06 4:24
Brent Lamborn18-Jan-06 4:24 
QuestionModal Dialog Box for Username And Password Entry(Like Windows ). Pin
rpkumar17-Jan-06 23:15
rpkumar17-Jan-06 23:15 
AnswerRe: Modal Dialog Box for Username And Password Entry(Like Windows ). Pin
Prakash Nadar18-Jan-06 0:12
Prakash Nadar18-Jan-06 0:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.