我已经使用JSON方法并创建了php web服务,因此如何在asp.net mvc3中使用php web服务 [英] I have use JSON method and create php web service so how to use php web service in asp.net mvc3

查看:56
本文介绍了我已经使用JSON方法并创建了php web服务,因此如何在asp.net mvc3中使用php web服务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<body>
    <form action="" method="post">
    <table>
            <tr>
                <td>name  : </td>
                <td><input type="text" name="search" value="search" onFocus="javascript:if(this.value=='search') {this.value='';}" onBlur="javascript:if(this.value=='')                                    {this.value='search'}"/></td>
            </tr>

            <tr>
                <td><input type="submit" name="submit" value="submit" /></td>
            </tr>
        </table>
</form>
    <?php

        include('config.php');

        include('json.php');

        if(isset($_POST['submit']))

        {

            $fname=$_POST['search'];

            $query = "select * from family where fname='$fname'";

            $result = mysql_query($query);

            $num=mysql_num_rows($result);

            while($location = mysql_fetch_assoc($result))

            {

                $db_location[] = array('location'=>$location);
            }
            echo json_encode(array('db_location'=>$db_location));
        }

    ?>
</body>
</html>


/////////////////////////////////////////////////////////////////////////////

这是我的Json代码:

我将在asp.net MVC3中插入服务引用,然后显示错误:
HTML文档不包含Web服务发现信息.


////////////////////////////////////////////////////////////////////////////

this is my Json code:

i will insert service reference in asp.net MVC3 then showing error:
The HTML document does not contain Web service discovery information.

推荐答案

_POST ['submit']))) span> { span>
_POST['submit'])) {


fname =
fname=


_POST [' search']; span>
_POST['search'];


这篇关于我已经使用JSON方法并创建了php web服务,因此如何在asp.net mvc3中使用php web服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆