Ask a Question related to ASP.NET General, Design and Development.
-
michael #1
Calling PHP code
How do I call from c#, PHP code that will print/echo to the screen (web
browser)?
For example
index.aspx
------------
<%
// code to call my_php_file.php
.....
%>
my_php_file.php
-----------------
<?php
echo "<h2>Hello world</h2>"
?>
RESULT
The web browser display in H2 tags "Hellow world"?
Thanks in advance
michael Guest
-
3 buttons calling 6 boxes. Help in code.
Hi, here is the code for 3 buttons. Each is calling for 2 boxes. There are 2 problems. 1- First clicked button does not respond at all. 2- After... -
Calling MFC code from WebService
Hi, I am trying to make data that is retrieved from old MFC code available through a WebService. I created a Winform application for test... -
Calling c# code from javascript
Hi, Can one call a c# function from within a javascript function ? I have a c# > function GetLanguageItem(title), how can I call the above... -
Security problem with Managed Code calling Unmanaged Code in a Web Page
Hello, I have a web page which contains an ActiveX control (unmanaged) and a Windows Forms User Control (managed). Both reside on a web page and... -
calling eruby from code?
I've found documentation for running eruby(1) from the command line and for configuring Apache to handle eruby templates. Do you know how to... -
Gavin Joyce #2
Re: Calling PHP code
Hi,
You can make a HTTP connection to the web server that serves php pages from
your asp.net page, then use this data as you please.
Have a look here -
[url]http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=screen+scraping+asp.n[/url]
et
Thanks,
Gavin
--
__________________________________________________ _________
nTierGen.NET Code Generator - [url]http://www.nTierGen.NET/[/url]
Stored Procedures (Get, GetPaged, Insert, Update, Delete)
Data Access Layer - C#
Business Rules Layer - C# & VB.NET
Strongly-Typed DataSets - C#
Web Services - C#
__________________________________________________ _________
"michael" <mpettibone@sbcglobal.net> wrote in message
news:u#IGSiPRDHA.2476@TK2MSFTNGP10.phx.gbl...> How do I call from c#, PHP code that will print/echo to the screen (web
> browser)?
>
> For example
>
> index.aspx
> ------------
> <%
> // code to call my_php_file.php
> ....
> %>
>
> my_php_file.php
> -----------------
> <?php
> echo "<h2>Hello world</h2>"
> ?>
>
>
> RESULT
> The web browser display in H2 tags "Hellow world"?
>
> Thanks in advance
>
>
Gavin Joyce Guest



Reply With Quote

