0

谁能帮我在我的 javascript 函数中调用我的 VB.NET 方法?我的方法不是共享/静态的,也不返回任何东西。它只是简单地将数据保存到数据库并重定向用户。请帮助我,这是我的代码:

VB法

  Public Function SaveVehicles()
          Dim res As Boolean
             If res = True Then
            Dim sModel As String = cboModel.SelectedValue
            Dim sVariant As String = cboVariant.SelectedValue
            Dim sColor As String = cboColor.SelectedValue

            cboModel.SelectedValue = sModel
            cboVariant.SelectedValue = sVariant
            cboColor.SelectedValue = sColor


            Dim oData As New WebServVehSwapping
            Dim strSql As String
            Dim sDealer As String
            Dim sUserName As String

            'sDealer = "TBP01"
            sDealer = Trim(Request.QueryString("dealercode"))
            If sDealer = "" Then sDealer = "TBP01"
            sUserName = "User1"

            '------------------------------------------
            strSql = oData.InsertTblRequirement( _
              sDealer _
             , Now.ToString _
             , sUserName _
             , cboColor.Text.Trim _
             , cboModel.Text.Trim _
             , cboVariant.Text.Trim, "Open")
            MsgBox("OKAY")
            Response.Redirect("MyRequirements.aspx?DealerCode=" & sDealer)
        Else
            'do Nothing
        End If
    End Function

这是我的 Javascript 函数

   function ConfirmView()
    {   
        var Ok = confirm('There is/are existing vehicle(s) in Network Vehiches for sale, View Vehicle(s)?');
        if(Ok==true)
        {

       location.href = 'NetworkVehiclesforSale.aspx';
        return false;
        }
        else if (Ok!=true)
        {

         //THE VB METHOD GOES HERE     
      }
}

我已经尝试过回调处理程序,它只适用于返回某些东西/字符串的函数

我试过 Pagemethod 但它只适用于静态/共享功能。请帮助我,我真的很需要它。请看。谢谢

4

2 回答 2

1

您可能想阅读“构建 Windows Communication Foundation 服务简介” - http://msdn.microsoft.com/en-us/library/aa480190.aspx

尤其是:“使用 WCF 3.5 设计和构建 RESTful Web 服务的指南” - http://msdn.microsoft.com/en-us/library/dd203052.aspx

并查看一些使调用 RESTful Web 服务变得容易的 javascript 库,例如 jQuery - http://www.jquery.com/

使用 jQuery,您可以像这样调用服务器端 VB.NET 代码:

$.ajax({  
    type: "GET",  
    contentType: 'text/json',  
    dataType: 'json',  
    url: "https://URL-TO-SERVICE-HERE/...",  
    timeout: 10000,  
    error: function () {  

        // Deal with the error  

    },  
    success: function (data) {  

        // Do something with the result
        // Example:
        if (data.dealerCode) 
            location.href = 'MyRequirements.aspx?DealerCode=' + data.dealerCode;


    }  
});  
于 2011-05-23T00:11:59.877 回答
1

.Net Web 服务不能执行魔法,即您不能对服务器上的 Ajax 请求发出重定向响应并期望整个页面被重定向。唯一会发生的事情是 Ajax 调用被重定向到另一个页面并尝试从那里获取数据。如果要在客户端浏览器中更改页面,则必须在客户端通过 JavaScript 进行,例如document.location = url_returned_by_your_function_through_ajax_call.

于 2011-05-23T00:15:16.983 回答