Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > Mobile > [iOS/iPhone] Tutorials - สอนเขียน iPhone App ฟรี เขียน iPad App เรียน iPhone เขียนโปรแกรม iPhone > ตอนที่ 5 : Show Case 1 : Register Form (iOS C# (Xamarin.iOS) and Mobile Services)



Clound SSD Virtual Server

ตอนที่ 5 : Show Case 1 : Register Form (iOS C# (Xamarin.iOS) and Mobile Services)

ตอนที่ 5 : Show Case 1 : Register Form (iOS C# (Xamarin.iOS) and Mobile Services) บทความนี้จะเป็นการตัวอย่างการทำระบบ Member register รับข้อมูลจากเครื่อง iOS ด้วยภาษา C# (Xamarin.iOS) เช่น username , password , name , email และ tel โดยจะทำการส่งข้อมูลทั้งหมดเหล่านี้ไปจัดเก็บไว้ที่ตาราง Table ของ Mobile Service ที่อยู่บน Windows Azure ในรูปแบบของการ Register Form หรือ ลงทะเบียนสมาชิก

Register Form (iOS C# (Xamarin.iOS) and Mobile Services)

iOS C# (Xamarin.iOS) Mobile Services Register Form


บทความนี้ถือเป็นการทบทวนและประยุกต์ใช้จากการศึกษาในหัวข้อที่ผ่าน ๆ มา ซึ่งการทำนั้นก็ไม่ต่างอะไรกับการออกแบบ Form รับข้อมูลบน iOS ด้วย C# และ Insert ลงไปใน Table ของ Mobile Services

Syntax การ Register ข้อมูล
                client = new MobileServiceClient(ApplicationURL, ApplicationKey);

                memberTable = client.GetTable<MyMember>();

                var item = new MyMember
                {
                    Username = txtUsername.Text,
                    Password = txtPassword.Text,
                    Name = txtName.Text,
                    Email = txtEmail.Text,
                    Tel = txtTel.Text
                };
                memberTable.InsertAsync(item);


Example ตัวอย่างการทำระบบลงทะเบียน Member Register Form ด้วย iOS C# (Xamarin.iOS)

Register Form (iOS C# (Xamarin.iOS) and Mobile Services)

ตอนนี้เรามี Mobile Services อยู่ 1 รายการ

Register Form (iOS C# (Xamarin.iOS) and Mobile Services)

ชื่อตารางว่า MyMember

Register Form (iOS C# (Xamarin.iOS) and Mobile Services)

มีข้อมูลอยู่ 2 รายการ








กลับมายัง iOS C# Project บนโปรแกรม Visual Studio

Register Form (iOS C# (Xamarin.iOS) and Mobile Services)

ออกแบบหน้าจอ View ประกอบด้วย Text Field และ Button พร้อมทั้งกำหนด ID/Name ดังรูป

Register Form (iOS C# (Xamarin.iOS) and Mobile Services)

สร้าง Event ของการคลิกดังรูป

Register Form (iOS C# (Xamarin.iOS) and Mobile Services)

Event ทีได้ โดยเราจะเขียนคำสั่งสำหรับการ Save ข้อมูลลงใน Azure Mobile Services ที่ Method นี้

RootViewController.cs (Code ทั้งหมดของการสร้าง Register Form)
using System;
using System.Drawing;
using System.Collections.Generic;

using MonoTouch.Foundation;
using MonoTouch.UIKit;

using Microsoft.WindowsAzure.MobileServices;
using Newtonsoft.Json;

namespace iOSApp
{

    public class MyMember
    {
        public int Id { get; set; }

        [JsonProperty(PropertyName = "username")]
        public string Username { get; set; }

        [JsonProperty(PropertyName = "password")]
        public string Password { get; set; }

        [JsonProperty(PropertyName = "name")]
        public string Name { get; set; }

        [JsonProperty(PropertyName = "email")]
        public string Email { get; set; }

        [JsonProperty(PropertyName = "tel")]
        public string Tel { get; set; }
    }

    public partial class RootViewController : UIViewController
    {

        public const string ApplicationURL = @"https://thaicreate.azure-mobile.net/";
        public const string ApplicationKey = @"IqeWShAjBflTUrTaaGUNJRyZDpcyeh72";

        private MobileServiceClient client; // Mobile Service Client references
        private IMobileServiceTable<MyMember> memberTable; // Mobile Service Table used to access data  

        public RootViewController(IntPtr handle)
            : base(handle)
        {
        }

        public override void ViewDidLoad()
        {
            base.ViewDidLoad();
        }

        public override void DidReceiveMemoryWarning()
        {
            // Releases the view if it doesn't have a superview.
            base.DidReceiveMemoryWarning();
        }


        partial void btnSave_TouchUpInside(UIButton sender)
        {
             try
            {
                client = new MobileServiceClient(ApplicationURL, ApplicationKey);

                memberTable = client.GetTable<MyMember>();

                var item = new MyMember
                {
                    Username = txtUsername.Text,
                    Password = txtPassword.Text,
                    Name = txtName.Text,
                    Email = txtEmail.Text,
                    Tel = txtTel.Text
                };
                memberTable.InsertAsync(item);

                new UIAlertView("Result", "Register Data Successfully.", null, "OK", null).Show();
            }
            catch (Exception ex)
            {
                new UIAlertView("Result", "Error : " + ex.Message, null, "OK", null).Show();
            }

        }

    }

}


ทดสอบการทำงาน

Register Form (iOS C# (Xamarin.iOS) and Mobile Services)

Register Form ทำการ Input ข้อมูล ผ่าน iOS Simulator

Register Form (iOS C# (Xamarin.iOS) and Mobile Services)

Register Form ทดสอบการ Input ข้อมูล

Register Form (iOS C# (Xamarin.iOS) and Mobile Services)

เมื่อ Input ข้อมูลเสร็จสิ้น

Register Form (iOS C# (Xamarin.iOS) and Mobile Services)

เมื่อกลับไปดูที่ Mobile Services บน Windows Azure ก็จะมีข้อมูลกรากฏขึ้นมา 1 รายการ








อ่านเพิ่มเติม

   
Share


ช่วยกันสนับสนุนรักษาเว็บไซต์ความรู้แห่งนี้ไว้ด้วยการสนับสนุน Source Code 2.0 ของทีมงานไทยครีเอท


ลองใช้ค้นหาข้อมูล


   


Bookmark.   
       
  By : ThaiCreate.Com Team (บทความเป็นลิขสิทธิ์ของเว็บไทยครีเอทห้ามนำเผยแพร่ ณ เว็บไซต์อื่น ๆ)
  Score Rating :  
  Create/Update Date : 2014-10-24 14:02:21 / 2017-03-26 08:44:45
  Download : No files
 Sponsored Links / Related

 
ตอนที่ 1 : รู้จัก iOS C# (Xamarin.iOS) Mobile Services บน Windows Azure คืออะไร
Rating :

 
ตอนที่ 2 : การสร้าง iOS C# (Xamarin.iOS) Mobile Services และการเรียกใช้งานแบบง่าย ๆ
Rating :

 
ตอนที่ 3 : iOS C# (Xamarin.iOS) สร้างตาราง Table บน Mobile Services และการ Insert ข้อมูล
Rating :

 
ตอนที่ 4 : iOS C# (Xamarin.iOS) อ่าน Data จาก Table ของ Mobile Services และแสดงผลบน App
Rating :

 
ตอนที่ 6 : Show Case 2 : Login User Password (iOS C# (Xamarin.iOS) and Mobile Services)
Rating :

 
ตอนที่ 7 : Show Case 3 : Update Data (iOS C# (Xamarin.iOS) and Mobile Services)
Rating :

 
ตอนที่ 8 : Show Case 4 : Delete Data (iOS C# (Xamarin.iOS) and Mobile Services)
Rating :


ThaiCreate.Com Forum


Comunity Forum Free Web Script
Jobs Freelance Free Uploads
Free Web Hosting Free Tools

สอน PHP ผ่าน Youtube ฟรี
สอน Android การเขียนโปรแกรม Android
สอน Windows Phone การเขียนโปรแกรม Windows Phone 7 และ 8
สอน iOS การเขียนโปรแกรม iPhone, iPad
สอน Java การเขียนโปรแกรม ภาษา Java
สอน Java GUI การเขียนโปรแกรม ภาษา Java GUI
สอน JSP การเขียนโปรแกรม ภาษา Java
สอน jQuery การเขียนโปรแกรม ภาษา jQuery
สอน .Net การเขียนโปรแกรม ภาษา .Net
Free Tutorial
สอน Google Maps Api
สอน Windows Service
สอน Entity Framework
สอน Android
สอน Java เขียน Java
Java GUI Swing
สอน JSP (Web App)
iOS (iPhone,iPad)
Windows Phone
Windows Azure
Windows Store
Laravel Framework
Yii PHP Framework
สอน jQuery
สอน jQuery กับ Ajax
สอน PHP OOP (Vdo)
Ajax Tutorials
SQL Tutorials
สอน SQL (Part 2)
JavaScript Tutorial
Javascript Tips
VBScript Tutorial
VBScript Validation
Microsoft Access
MySQL Tutorials
-- Stored Procedure
MariaDB Database
SQL Server Tutorial
SQL Server 2005
SQL Server 2008
SQL Server 2012
-- Stored Procedure
Oracle Database
-- Stored Procedure
SVN (Subversion)
แนวทางการทำ SEO
ปรับแต่งเว็บให้โหลดเร็ว


Hit Link
   







Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่