I am very new to Delphi, but I am really liking it. I have an asp page that writes some text into the response. For example:
I have a delphi application with a form and a TEdit box on the form. Is there any way I can set the text in the TEdit box to be the result of the asp page. So, from the above example, the TEdit box would have "Hello" in it.
right now I have:
but that obviously does not work.
thanks
ft
Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not Truth, Truth is not Beauty, Beauty is not Love, Love is not Music, Music is the best.
Code:
<%
response.write("Hello")
%>
I have a delphi application with a form and a TEdit box on the form. Is there any way I can set the text in the TEdit box to be the result of the asp page. So, from the above example, the TEdit box would have "Hello" in it.
right now I have:
Code:
Edit1.Text := '[URL unfurl="true"]http://localhost/test.asp';[/URL]
but that obviously does not work.
thanks
ft
Information is not Knowledge, Knowledge is not Wisdom, Wisdom is not Truth, Truth is not Beauty, Beauty is not Love, Love is not Music, Music is the best.