-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDefault.aspx.vb
49 lines (37 loc) · 2.51 KB
/
Default.aspx.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Imports System.Collections.Generic
Imports Phydeaux.Utilities
Imports DynamicComparerSample
Partial Public Class _Default
Inherits System.Web.UI.Page
Dim fieldsToBind As List(Of String)
Dim person As Person = New Person("Jon", "Rothlander", Gender.Male, 42) ' this pretends to be a database row...
Protected Sub Page_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Init
' these are the dynamically driven fields
fieldsToBind = New List(Of String)
fieldsToBind.Add("FirstName")
fieldsToBind.Add("LastName")
End Sub
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Not IsPostBack Then
For Each fieldName As String In fieldsToBind
Dim getProperty As Func(Of Person, String) = Dynamic(Of Person).Instance.Property(Of String).Explicit.Getter.CreateDelegate(fieldName)
Dim value As String = getProperty.Invoke(person) ' get the field value
Dim getInput As Func(Of _Default, HtmlInputText) = Dynamic(Of _Default).Instance.Property(Of HtmlInputText).Explicit.Getter.CreateDelegate(fieldName)
Dim inputField As HtmlInputText = getInput.Invoke(Me) ' get the input element of the page
Dim setValue As Proc(Of HtmlInputText, String) = Dynamic(Of HtmlInputText).Instance.Property(Of String).Explicit.Setter.CreateDelegate("Value")
setValue.Invoke(inputField, value) ' set the element
Next
End If
End Sub
Protected Sub Submit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Submit.Click
For Each fieldName As String In fieldsToBind
Dim getInput As Func(Of _Default, HtmlInputText) = Dynamic(Of _Default).Instance.Property(Of HtmlInputText).Explicit.Getter.CreateDelegate(fieldName)
Dim inputField As HtmlInputText = getInput.Invoke(Me) ' get the input element of the page
Dim getValue As Func(Of HtmlInputText, String) = Dynamic(Of HtmlInputText).Instance.Property(Of String).Explicit.Getter.CreateDelegate("Value")
Dim value As String = getValue.Invoke(inputField) ' get the element value
Dim setField As Proc(Of Person, String) = Dynamic(Of Person).Instance.Property(Of String).Explicit.Setter.CreateDelegate(fieldName)
setField.Invoke(person, value) ' set the field value
Next
Debug.Print(person.ToString())
End Sub
End Class