程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> Silverlight和服務器端通信

Silverlight和服務器端通信

編輯:C#入門知識


與服務器端通信,首先我們用wcf,新建一個wcf的頁面。
添加一個簡單的求和的方法:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
namespace SLDome.Web
{
    // 注意: 使用“重構”菜單上的“重命名”命令,可以同時更改代碼和配置文件中的接口名“ISLS”。
    [ServiceContract]
    public interface ISLS
    {
        [OperationContract]
        int Add(int number1, int number2);
    }
}
 
=============================================================================
然後我們再實現這個接口:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.Text;
namespace SLDome.Web
{
    // 注意: 使用“重構”菜單上的“重命名”命令,可以同時更改代碼、svc 和配置文件中的類名“SLS”。
    // 注意: 為了啟動 WCF 測試客戶端以測試此服務,請在解決方案資源管理器中選擇 SLS.svc 或 SLS.svc.cs,然後開始調試。
    public class SLS : ISLS
    {
        public int Add(int number1, int number2)
        {
            return number1 + number2;
        }
    }
}
 
=================================================================================
現在我們去設置下前台頁面:

<UserControl x:Class="SLDome.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">
    <Grid x:Name="LayoutRoot" Background="White">
        <TextBox HorizontalAlignment="Left" Height="23" Margin="118,58,0,0" TextWrapping="Wrap" Name="txtName" VerticalAlignment="Top" Width="120"/>
        <TextBox HorizontalAlignment="Left" Height="23" Margin="118,113,0,0" TextWrapping="Wrap" Name="txtPwd" VerticalAlignment="Top" Width="120"/>
        <Button Content="WCF"  Name="btnWcf" HorizontalAlignment="Left" Margin="46,216,0,0" VerticalAlignment="Top" Width="75" Click="btnWcf_Click"/>
        <Button Content="一般處理程序" Name="btnHandler" HorizontalAlignment="Left" Margin="211,216,0,0" VerticalAlignment="Top" Width="110" Click="btnHandler_Click"/>
    </Grid>
</UserControl>
 
這樣我們的wcf就寫好了,下面是我們的一般處理程序的代碼:
我們新建一個一般處理程序的頁面,用來處理用戶的登陸:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace SLDome.Web
{
    /// <summary>
    /// LoginHandler 的摘要說明
    /// </summary>
    public class LoginHandler : IHttpHandler
    {
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            string name = context.Request["txtName"].ToString();
            string password = context.Request["txtPwd"].ToString();
            if (name=="admin")
            {
                if (password=="admin123")
                {
                    context.Response.Write("登陸成功!");
                }
                else
                {
                    context.Response.Write("密碼錯誤!");
                }
            }
            else
            {
                context.Response.Write("用戶名不存在!");
            }
        }
        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}
 
================================================================================
然後我們處理下這個一般處理程序:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
namespace SLDome
{
    public partial class MainPage : UserControl
    {
        public MainPage()
        {
            InitializeComponent();
        }
        private void btnWcf_Click(object sender, RoutedEventArgs e)
        {
            ServiceReference1.SLSClient sc = new ServiceReference1.SLSClient();
            sc.AddAsync(10, 20);
            sc.AddCompleted += sc_AddCompleted;
        }
        void sc_AddCompleted(object sender, ServiceReference1.AddCompletedEventArgs e)
        {
            MessageBox.Show(e.Result.ToString());
        }
        private void btnHandler_Click(object sender, RoutedEventArgs e)
        {
            string name = txtName.Text.Trim();
            string password = txtPwd.Text.Trim();
            WebClient wc = new WebClient();
            wc.DownloadStringAsync(new Uri("http://localhost:7090/LoginHandler.ashx?txtName=" + name + "&txtPwd=" + password, UriKind.RelativeOrAbsolute));
            wc.DownloadStringCompleted += wc_DownloadStringCompleted;
           
        }
      
        void wc_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
        {
            MessageBox.Show(e.Result);
        }
    }
}
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved