File: WmlMobileTextWriter.cs

package info (click to toggle)
mono 6.12.0.199%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,296,836 kB
  • sloc: cs: 11,181,803; xml: 2,850,076; ansic: 699,709; cpp: 123,344; perl: 59,361; javascript: 30,841; asm: 21,853; makefile: 20,405; sh: 15,009; python: 4,839; pascal: 925; sql: 859; sed: 16; php: 1
file content (1837 lines) | stat: -rw-r--r-- 67,719 bytes parent folder | download | duplicates (7)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
//------------------------------------------------------------------------------
// <copyright file="WmlMobileTextWriter.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------

using System;
using System.Collections;
using System.Collections.Specialized;
using System.Globalization;
using System.IO;
using System.Web.Mobile;
using System.Web.UI.MobileControls;
using System.Text.RegularExpressions;
using System.Diagnostics;
using System.Web.Security;
using System.Security.Permissions;

using SR=System.Web.UI.MobileControls.Adapters.SR;

#if COMPILING_FOR_SHIPPED_SOURCE
using Adapters=System.Web.UI.MobileControls.ShippedAdapterSource;
namespace System.Web.UI.MobileControls.ShippedAdapterSource
#else
using Adapters=System.Web.UI.MobileControls.Adapters;
namespace System.Web.UI.MobileControls.Adapters
#endif

{
    /*
     * WmlMobileTextWriter class.
     *
     * Copyright (c) 2000 Microsoft Corporation
     */

    /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter"]/*' />
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
    public class WmlMobileTextWriter : MobileTextWriter
    {
        private TextWriter      _realInnerWriter;
        private EmptyTextWriter _analyzeWriter;
        private bool            _analyzeMode = false;
        private MobilePage      _page;
        private Form            _currentForm;
        private bool[]          _usingPostBackType   = new bool[] { false, false };
        private bool[]          _writtenPostBackType = new bool[] { false, false };
        private int             _numberOfPostBacks;
        private bool            _postBackCardsEfficient = false;
        private IDictionary     _formVariables = null;
        private IDictionary     _controlShortNames = null;
        private Stack           _layoutStack = new Stack();
        private Stack           _formatStack = new Stack();
        private WmlLayout       _currentWrittenLayout = null;
        private WmlFormat       _currentWrittenFormat = null;
        private bool            _pendingBreak = false;
        private bool            _inAnchor = false;
        private int             _numberOfSoftkeys;
        private bool            _provideBackButton = false;
        private bool            _writtenFormVariables = false;
        private bool            _alwaysScrambleClientIDs = false;

        private const String    _largeTag  = "big";
        private const String    _smallTag  = "small";
        private const String    _boldTag   = "b";
        private const String    _italicTag = "i";
        internal const String   _postBackCardPrefix = "__pbc";
        private const String    _postBackWithVarsCardId = "__pbc1";
        private const String    _postBackWithoutVarsCardId = "__pbc2";
        internal const String   _postBackEventTargetVarName = "mcsvt";
        internal const String   _postBackEventArgumentVarName = "mcsva";
        private const String    _shortNamePrefix = "mcsv";
        private const int       _maxShortNameLength = 16;
        private static Random   _random = new Random();

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.WmlMobileTextWriter"]/*' />
        public WmlMobileTextWriter(TextWriter writer, MobileCapabilities device, MobilePage page) 
            : base(writer, device)
        {
            _realInnerWriter = writer;
            _page = page;

            _numberOfSoftkeys = Device.NumberOfSoftkeys;
            if (_numberOfSoftkeys > 2)
            {
                _numberOfSoftkeys = 2;
            }

            // For phones that don't have a back button, assign a softkey.

            if (_numberOfSoftkeys == 2 && !Device.HasBackButton)
            {
                _numberOfSoftkeys = 1;
                _provideBackButton = true;
                _alwaysScrambleClientIDs = _provideBackButton && 
                                                !device.CanRenderOneventAndPrevElementsTogether;
            }
        }

        // AnalyzeMode is set to true during first analysis pass of rendering.

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.AnalyzeMode"]/*' />
        public bool AnalyzeMode
        {
            get
            {
                return _analyzeMode;
            }
            set
            {
                _analyzeMode = value;
                if (value)
                {
                    _analyzeWriter = new EmptyTextWriter();
                    InnerWriter = _analyzeWriter;
                }
                else
                {
                    InnerWriter = _realInnerWriter;
                }
            }
        }

        internal bool HasFormVariables
        {
            get
            {
                return _writtenFormVariables;
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.EnterLayout"]/*' />
        public override void EnterLayout(Style style)
        {
            if (AnalyzeMode)
            {
                return;
            }

            WmlLayout newLayout = new WmlLayout(style, CurrentLayout);
            _layoutStack.Push(newLayout);
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.ExitLayout"]/*' />
        public override void ExitLayout(Style style, bool breakAfter)
        {
            if (!AnalyzeMode)
            {
                if (breakAfter)
                {
                    PendingBreak = true;
                }
                _layoutStack.Pop();
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.EnterFormat"]/*' />
        public override void EnterFormat(Style style)
        {
            if (AnalyzeMode)
            {
                return;
            }

            WmlFormat newFormat = new WmlFormat(style, CurrentFormat);
            _formatStack.Push(newFormat);
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.ExitFormat"]/*' />
        public override void ExitFormat(Style style)
        {
            if (AnalyzeMode)
            {
                return;
            }
            _formatStack.Pop();
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.BeginForm"]/*' />
        public virtual void BeginForm(Form form)
        {
            _cachedFormQueryString = null;
            _currentForm = form;

            _writtenFormVariables = false;

            // To keep track of postbacks which submit form variables,
            // and postbacks that don't. Used for postback cards
            // (see UsePostBackCards)

            _usingPostBackType[0] = _usingPostBackType[1] = false;

            if (AnalyzeMode)
            {
                _numberOfPostBacks = 0;
                _postBackCardsEfficient = false;
                _controlShortNames = null;
            }
            else
            {
                PendingBreak = false;
                _currentWrittenLayout = null;
                _currentWrittenFormat = null;

                RenderBeginForm(form);
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.EndForm"]/*' />
        public virtual void EndForm()
        {
            if (AnalyzeMode)
            {
                // Analyze form when done.
                PostAnalyzeForm();
            }
            else
            {
                RenderEndForm();
            }
        }

        // Single parameter - used for rendering ordinary inline text 
        // (with encoding but without breaks).
        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderText"]/*' />
        public void RenderText(String text)
        {
            RenderText(text, false, true);
        }

        // Two parameters - used for rendering encoded text with or without breaks)
        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderText1"]/*' />
        public void RenderText(String text, bool breakAfter)
        {
            RenderText(text, breakAfter, true);
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderText2"]/*' />
        public virtual void RenderText(String text, bool breakAfter, bool encodeText)
        {
            if (!AnalyzeMode)
            {
                EnsureLayout();

                // Don't use formatting tags inside anchor.
                if (!_inAnchor)
                {
                    EnsureFormat();
                }

                WriteText(text, encodeText);
                if (breakAfter)
                {
                    PendingBreak = true;
                }
            }
        }

        // Escape '&' in XML if it hasn't been
        internal String EscapeAmpersand(String url)
        {
            const char ampersand = '&';
            const String ampEscaped = "amp;";

            if (url == null)
            {
                return null;
            }

            int ampPos = url.IndexOf(ampersand);
            while (ampPos != -1)
            {
                if (url.Length - ampPos <= ampEscaped.Length ||
                    url.Substring(ampPos + 1, ampEscaped.Length) != ampEscaped)
                {
                    url = url.Insert(ampPos + 1, ampEscaped);
                }
                ampPos = url.IndexOf(ampersand, ampPos + ampEscaped.Length + 1);
            }

            return url;
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderBeginHyperlink"]/*' />
        public virtual void RenderBeginHyperlink(String targetUrl, 
                                                 bool encodeUrl, 
                                                 String softkeyLabel, 
                                                 bool implicitSoftkeyLabel,
                                                 bool mapToSoftkey)
        {
            if (!AnalyzeMode)
            {
                EnsureLayout();
                EnsureFormat();

                WriteBeginTag("a");
                Write(" href=\"");
                if (encodeUrl)
                {
                    WriteEncodedUrl(targetUrl);
                }
                else
                {
                    Write(EscapeAmpersand(targetUrl));
                }
                Write("\"");
                if (softkeyLabel != null && softkeyLabel.Length > 0 && !RequiresNoSoftkeyLabels())
                {
                    WriteTextEncodedAttribute("title", softkeyLabel);
                }
                Write(">");
                _inAnchor = true;
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderEndHyperlink"]/*' />
        public virtual void RenderEndHyperlink(bool breakAfter)
        {
            if (!AnalyzeMode)
            {
                WriteEndTag("a");
                if (breakAfter)
                {
                    PendingBreak = true;
                }
                _inAnchor = false;
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderTextBox"]/*' />
        public virtual void RenderTextBox(String id, 
                                          String value,
                                          String format,
                                          String title,
                                          bool password, 
                                          int size, 
                                          int maxLength, 
                                          bool generateRandomID,
                                          bool breakAfter)
        {
            if (!AnalyzeMode)
            {
                // Input tags cannot appear inside character formatting tags,
                // so close any character formatting.
                
                CloseCharacterFormat();

                // Certain devices always render a break before a <select>.  If
                // we're on such a device, cancel any pending breaks so as not
                // to get an extra line of whitespace.
                if (Device.RendersBreakBeforeWmlSelectAndInput)
                {
                    PendingBreak = false;
                }
                
                EnsureLayout();
                WriteBeginTag("input");
                // Map the client ID to a short name. See
                // MapClientIDToShortName for details.
                WriteAttribute("name", MapClientIDToShortName(id, generateRandomID));
                if (password)
                {
                    WriteAttribute("type", "password");
                }
                if (format != null && format.Length > 0)
                {
                    WriteAttribute("format", format);
                }
                if (title != null && title.Length > 0)
                {
                    WriteTextEncodedAttribute("title", title);
                }
                if (size > 0)
                {
                    WriteAttribute("size", size.ToString(CultureInfo.InvariantCulture));
                }
                if (maxLength > 0)
                {
                    WriteAttribute("maxlength", maxLength.ToString(CultureInfo.InvariantCulture));
                }
                if ((!_writtenFormVariables || ((WmlPageAdapter) Page.Adapter).RequiresValueAttributeInInputTag()) &&
                    value != null &&
                    (value.Length > 0 || password))
                {
                    WriteTextEncodedAttribute("value", value);
                }
                WriteLine(" />");
                if (breakAfter && !Device.RendersBreaksAfterWmlInput)
                {
                    PendingBreak = true;
                }
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderImage"]/*' />
        public virtual void RenderImage(String source, 
                                        String localSource, 
                                        String alternateText, 
                                        bool breakAfter)
        {
            if (!AnalyzeMode)
            {
                EnsureLayout();

                WriteBeginTag("img");
                WriteAttribute("src", source, true /*encode*/);
                if (localSource != null)
                {
                    WriteAttribute("localsrc", localSource, true /*encode*/);
                }
                WriteTextEncodedAttribute("alt", alternateText != null ? alternateText : String.Empty);
                Write(" />");
                if (breakAfter)
                {
                    PendingBreak = true;
                }
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderBeginPostBack"]/*' />
        public virtual void RenderBeginPostBack(String softkeyLabel, 
                                                bool implicitSoftkeyLabel, 
                                                bool mapToSoftkey)
        {
            if (!AnalyzeMode)
            {
                EnsureLayout();
                EnsureFormat();

                WriteBeginTag("anchor");
                if (softkeyLabel != null && softkeyLabel.Length > 0 && !RequiresNoSoftkeyLabels())
                {
                    WriteTextEncodedAttribute("title", softkeyLabel);
                }
                Write(">");
                _inAnchor = true;
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderEndPostBack"]/*' />
        public virtual void RenderEndPostBack(String target, 
                                              String argument, 
                                              WmlPostFieldType postBackType, 
                                              bool includeVariables, 
                                              bool breakAfter)
        {
            if (AnalyzeMode)
            {
                // Analyze postbacks to see if postback cards should
                // be rendered.

                AnalyzePostBack(includeVariables, postBackType);
            }
            else
            {
                RenderGoAction(target, argument, postBackType, includeVariables);
    
                WriteEndTag("anchor");
                if (breakAfter)
                {
                    PendingBreak = true;
                }
                _inAnchor = false;
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderBeginSelect"]/*' />
        public virtual void RenderBeginSelect(String name, String iname, String ivalue, String title, bool multiSelect)
        {
            if (!AnalyzeMode)
            {

                // Select tags cannot appear inside character formatting tags,
                // so close any character formatting.
                CloseCharacterFormat();

                // Certain devices always render a break before a <select>.  If
                // we're on such a device, cancel any pending breaks so as not
                // to get an extra line of whitespace.
                if (Device.RendersBreakBeforeWmlSelectAndInput)
                {
                    PendingBreak = false;
                }
                
                EnsureLayout();
                WriteBeginTag("select");
                if (name != null && name.Length > 0)
                {
                    // Map the client ID to a short name. See
                    // MapClientIDToShortName for details.
                    WriteAttribute("name", MapClientIDToShortName(name,  false));
                }
                if (iname != null && iname.Length > 0)
                {
                    // Map the client ID to a short name. See
                    // MapClientIDToShortName for details.
                    WriteAttribute("iname", MapClientIDToShortName(iname, false));
                }
                if (!_writtenFormVariables && ivalue != null && ivalue.Length > 0)
                {
                    WriteTextEncodedAttribute("ivalue", ivalue);
                }
                if (title != null && title.Length >0)
                {
                    WriteTextEncodedAttribute("title", title);
                }
                if (multiSelect)
                {
                    WriteAttribute("multiple", "true");               
                }
                Write(">");
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderEndSelect"]/*' />
        public virtual void RenderEndSelect(bool breakAfter)
        {
            if (!AnalyzeMode)
            {
                WriteEndTag("select");
                if (breakAfter && !Device.RendersBreaksAfterWmlInput)
                {
                    PendingBreak = true;
                }
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderSelectOption"]/*' />
        public virtual void RenderSelectOption(String text)
        {
            if (!AnalyzeMode)
            {
                WriteFullBeginTag("option");
                WriteEncodedText(text);
                WriteEndTag("option");
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderSelectOption1"]/*' />
        public virtual void RenderSelectOption(String text, String value)
        {
            if (!AnalyzeMode)
            {
                WriteBeginTag("option");
                WriteAttribute("value", value, true);
                Write(">");
                WriteEncodedText(text);                    
                WriteEndTag("option");
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.BeginCustomMarkup"]/*' />
        public virtual void BeginCustomMarkup()
        {
            if (!AnalyzeMode)
            {
                EnsureLayout();
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.EndCustomMarkup"]/*' />
        public virtual void EndCustomMarkup()
        {
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.AddFormVariable"]/*' />
        public void AddFormVariable(String clientID, String value, bool generateRandomID)
        {
            // On first (analyze) pass, form variables are added to
            // an array. On second pass, they are rendered. This ensures
            // that only visible controls generate variables.

            if (AnalyzeMode)
            {
                if (_formVariables == null)
                {
                    _formVariables = new ListDictionary();
                }

                // Map the client ID to a short name. See
                // MapClientIDToShortName for details.
                _formVariables[MapClientIDToShortName(clientID, generateRandomID)] = value;
            }
        }

        // Call to reset formatting state before outputting custom stuff.

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.ResetFormattingState"]/*' />
        public virtual void ResetFormattingState()
        {
            if (!AnalyzeMode)
            {
                CloseCharacterFormat();
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderExtraCards"]/*' />
        public virtual void RenderExtraCards()
        {
            RenderPostBackCards();
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.IsValidSoftkeyLabel"]/*' />
        public virtual bool IsValidSoftkeyLabel(String label)
        {
            return label != null &&
                   label.Length > 0 &&
                   label.Length <= Device.MaximumSoftkeyLabelLength;
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderGoAction"]/*' />
        public virtual void RenderGoAction(String target, 
                                           String argument, 
                                           WmlPostFieldType postBackType, 
                                           bool includeVariables)
        {

            WriteBeginTag("go");
            Write(" href=\"");

            IDictionary postBackVariables = null;
            if (includeVariables)
            {
                postBackVariables = ((WmlFormAdapter)CurrentForm.Adapter).CalculatePostBackVariables();
                if (postBackVariables == null || postBackVariables.Count == 0)
                {
                    includeVariables = false;
                }
            }

            bool externalSubmit;
            if (postBackType == WmlPostFieldType.Submit)
            {
                externalSubmit = CurrentForm.Action.Length > 0;
                postBackType = WmlPostFieldType.Normal;
            }
            else
            {
                externalSubmit = false;
            }

            if (target != null && !externalSubmit && UsePostBackCard(includeVariables))
            {
                _writtenPostBackType[includeVariables ? 0 : 1] = true;

                // If using postback cards, render a go action to the given
                // postback card, along with setvars setting the target and
                // argument.

                Write("#");
                Write(includeVariables ? _postBackWithVarsCardId : _postBackWithoutVarsCardId);
                Write("\">");
                WriteBeginTag("setvar");
                WriteAttribute("name", _postBackEventTargetVarName);
                WriteAttribute("value", target);
                Write("/>");
                WriteBeginTag("setvar");
                WriteAttribute("name", _postBackEventArgumentVarName);
                Write(" value=\"");
                if (argument != null)
                {
                    if (postBackType == WmlPostFieldType.Variable)
                    {
                        Write("$(");
                        Write(argument);
                        Write(")");
                    }
                    else
                    {
                        WriteEncodedText(argument);
                    }
                }
                Write("\"/>");
            }
            else
            {
                // This is the real postback.

                bool encode = false;
                String url = CalculateFormPostBackUrl(externalSubmit, ref encode);
                FormMethod method = CurrentForm.Method;
                String queryString = CalculateFormQueryString();

                if (encode)
                {
                    WriteEncodedUrl(url);
                }
                else
                {
                    Write(url);
                }

                if(externalSubmit && queryString != null && queryString.Length > 0) 
                {
                    if(Device.RequiresUniqueFilePathSuffix) 
                    {
                        int loc = queryString.IndexOf('&');
                        if(loc != -1) 
                        {
                            queryString = queryString.Substring(0, loc);
                        }
                    }
                    else 
                    {
                        queryString = null;
                    }
                }

                // Add any query string.
                if (queryString != null && queryString.Length > 0)
                {
                    if(externalSubmit && (url.IndexOf('?') != -1))
                    {
                        Write("&amp;");
                    }
                    else 
                    {
                        Write("?");
                    }
                    if (queryString.IndexOf('$') != -1)
                    {
                        queryString = queryString.Replace("$", "$$");
                    }    
                    if(Page.Adapter.PersistCookielessData && Device.CanRenderOneventAndPrevElementsTogether)
                    {
                        queryString = ReplaceFormsCookieWithVariable(queryString);
                    } 
                    base.WriteEncodedText(queryString);
                }
                Write("\"");

                // Method defaults to get in WML, so write it if it's not.
                if (method == FormMethod.Post)
                {
                    WriteAttribute("method", "post");
                }
                Write(">");
    
                // Write the view state as a postfield.
                if (!externalSubmit)
                {
                    String pageState = Page.ClientViewState;
                    if (pageState != null)
                    {
                        if (Device.RequiresSpecialViewStateEncoding)
                        {
                            pageState =
                                ((WmlPageAdapter) Page.Adapter).EncodeSpecialViewState(pageState);
                        }
                        WritePostField(MobilePage.ViewStateID, pageState);
                    }
    
                    // Write the event target.
                    if (target != null)
                    {
                        WritePostField(MobilePage.HiddenPostEventSourceId, target);
                    }
                    else
                    {
                        // Target is null when the action is generated from a postback
                        // card itself. In this case, set the event target to whatever
                        // the original event target was.
    
                        WritePostFieldVariable(MobilePage.HiddenPostEventSourceId, _postBackEventTargetVarName);
                    }

                    // Write the event argument, if valid.
    
                    if (argument != null)
                    {
                        WritePostField(MobilePage.HiddenPostEventArgumentId, argument, postBackType);
                    }
                }
    
                // Write postfields for form variables, if desired. Commands, for example,
                // include form variables. Links do not.

                if (includeVariables)
                {
                    if (postBackVariables != null)
                    {
                        foreach (DictionaryEntry entry in postBackVariables)
                        {
                            Control ctl = (Control)entry.Key;
                            Object value = entry.Value;

                            if (value == null)
                            {
                                // Dynamic value.
                                // Map the client ID to a short name. See
                                // MapClientIDToShortName for details.
                                // Note: Because this is called on the second pass, 
                                // we can just pass false as the second parameter
                                WritePostFieldVariable(ctl.UniqueID, MapClientIDToShortName(ctl.ClientID, false));
                            }
                            else
                            {
                                // Static value.
                                WritePostField(ctl.UniqueID, (String)value);
                            }
                        }
                    }
                }
    
                // Always include page hidden variables.
    
                if (Page.HasHiddenVariables())
                {
                    String hiddenVariablePrefix = MobilePage.HiddenVariablePrefix;
                    foreach (DictionaryEntry entry in Page.HiddenVariables)
                    {
                        if (entry.Value != null)
                        {
                            WritePostField(hiddenVariablePrefix + (String)entry.Key, (String)entry.Value);
                        }
                    }
                }
            }

            WriteEndTag("go");
        }

        // Called after form is completed to analyze.

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.PostAnalyzeForm"]/*' />
        protected virtual void PostAnalyzeForm()
        {
            // Use postback cards if the number of postbacks exceeds the number
            // of required postback cards.
            // 


            int numberOfCardsRequired = (_usingPostBackType[0] ? 1 : 0) +
                                        (_usingPostBackType[1] ? 1 : 0);
            if (_numberOfPostBacks > numberOfCardsRequired)
            {
                _postBackCardsEfficient = true;
            }
        }

        // Calculates the URL to output for the postback. Other writers may
        // override.

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.CalculateFormPostBackUrl"]/*' />
        protected virtual String CalculateFormPostBackUrl(bool externalSubmit, ref bool encode)
        {
            String url = CurrentForm.Action;
            if (externalSubmit && url.Length > 0)
            {
                url = CurrentForm.ResolveUrl(url);
                encode = false;
            }
            else
            {
                url = Page.RelativeFilePath;
                encode = true;
            }
            return url;
        }

        // Calculates the query string to output for the postback. Other
        // writers may override.

        internal String ReplaceFormsCookieWithVariable(String queryString)
        {
            String formsAuthCookieName = FormsAuthentication.FormsCookieName;
            if(!String.IsNullOrEmpty(formsAuthCookieName))
            {
                int index = queryString.IndexOf(formsAuthCookieName + "=", StringComparison.Ordinal);
                if(index != -1)
                {
                    int valueStart = index + formsAuthCookieName.Length + 1;
                    int valueEnd = queryString.IndexOf('&', valueStart);
                    if(valueStart < queryString.Length)
                    {
                        int length = ((valueEnd != -1) ? valueEnd : queryString.Length) - valueStart;
                        queryString = queryString.Remove(valueStart, length);
                        queryString = queryString.Insert(valueStart, "$(" + MapClientIDToShortName("__facn", false) + ")");
                    }
                }
            }
            return queryString;
        }

        private String _cachedFormQueryString;
        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.CalculateFormQueryString"]/*' />
        protected virtual String CalculateFormQueryString()
        {
            if (_cachedFormQueryString != null)
            {
                return _cachedFormQueryString;
            }

            String queryString = null;
            if (CurrentForm.Method != FormMethod.Get)
            {
                queryString = Page.QueryStringText;
            }

            if (Device.RequiresUniqueFilePathSuffix)
            {
                String ufps = Page.UniqueFilePathSuffix;
                if (queryString != null && queryString.Length > 0)
                {
                    queryString = String.Concat(ufps, "&", queryString);
                }
                else
                {
                    queryString = ufps;
                }
            }

            _cachedFormQueryString = queryString;
            return queryString;
        }

        internal virtual bool ShouldWriteFormID(Form form)
        {
            WmlPageAdapter pageAdapter = (WmlPageAdapter)CurrentForm.MobilePage.Adapter;
            
            return (form.ID != null && pageAdapter.RendersMultipleForms());
        }

        // Renders the beginning of a form.
        // 

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderBeginForm"]/*' />
        protected virtual void RenderBeginForm(Form form)
        {
            WmlFormAdapter formAdapter = (WmlFormAdapter)CurrentForm.Adapter;

            IDictionary attributes = new ListDictionary();
            if (ShouldWriteFormID(form))
            {
                attributes.Add("id", form.ClientID);
            }

            String title = form.Title;
            if (title.Length > 0)
            {
                attributes.Add("title", title);
            }

            // Let the form adapter render the tag. This bit of indirection is 
            // somewhat horky, but necessary so that people can subclass adapters
            // without worrying about the fact that much of the real work is done
            // in the writer.

            formAdapter.RenderCardTag(this, attributes);

            // Write form variables.

            if ((_formVariables != null && _formVariables.Count > 0) &&
                    (!_provideBackButton ||
                 Device.CanRenderOneventAndPrevElementsTogether))
            {
                _writtenFormVariables = true;
                Write("<onevent type=\"onenterforward\"><refresh>");
                foreach (DictionaryEntry entry in _formVariables)
                {
                    WriteBeginTag("setvar");
                    WriteAttribute("name", (String)entry.Key);
                    WriteTextEncodedAttribute("value", (String)entry.Value);
                    Write(" />");
                }
                WriteLine("</refresh></onevent>");

            }

            formAdapter.RenderExtraCardElements(this);

            if (_provideBackButton)
            {
                Write("<do type=\"prev\" label=\"");
                Write(SR.GetString(SR.WmlMobileTextWriterBackLabel));
                WriteLine("\"><prev /></do>");
            }
        }

        // Renders the ending of a form.

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderEndForm"]/*' />
        protected virtual void RenderEndForm()
        {
            CloseParagraph();
            WriteEndTag("card");
            WriteLine();
        }

        // Postback cards provide an alternate, space-efficient way of doing 
        // postbacks, on forms that have a lot of postback links. Instead of
        // posting back directly, postback links switch to a postback card, setting
        // variables for event target and argument. The postback card has
        // an onenterforward event that submits the postback. It also has
        // an onenterbackward, so that it becomes transparent in the card history.
        // (Clicking Back to enter the postback card immediately takes you
        // to the previous card)

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.UsePostBackCard"]/*' />
        protected virtual bool UsePostBackCard(bool includeVariables)
        {
            bool b = _postBackCardsEfficient && Device.CanRenderPostBackCards;
            if (b && includeVariables)
            {
                WmlPageAdapter pageAdapter = (WmlPageAdapter)CurrentForm.MobilePage.Adapter;
                if (pageAdapter.RendersMultipleForms())
                {
                    b = false;
                }
            }

            return b;
        }


        // Renders postback cards. 

        private void RenderPostBackCards()
        {
            for (int i = 0; i < 2; i++)
            {
                if (_writtenPostBackType[i])
                {
                    WriteBeginTag("card");
                    WriteAttribute("id", i == 0 ? _postBackWithVarsCardId : _postBackWithoutVarsCardId);
                    WriteLine(">");
        
                    Write("<onevent type=\"onenterforward\">");
                    RenderGoAction(null, _postBackEventArgumentVarName, WmlPostFieldType.Variable, i == 0);
                    WriteLine("</onevent>");
        
                    WriteLine("<onevent type=\"onenterbackward\"><prev /></onevent>");
                    WriteLine("</card>");
                }
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderFormDoEvent"]/*' />
        protected void RenderFormDoEvent(String doType, String arg, WmlPostFieldType postBackType, String text)
        {
            RenderDoEvent(doType, CurrentForm.UniqueID, arg, postBackType, text, true);
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.RenderDoEvent"]/*' />
        protected void RenderDoEvent(String doType, String target, String arg, WmlPostFieldType postBackType, String text, bool includeVariables)
        {
            //EnsureLayout();
            WriteBeginTag("do");
            WriteAttribute("type", doType);
            if (text != null && text.Length > 0)
            {
                WriteTextEncodedAttribute("label", text);
            }
            Write(">");
            RenderGoAction(target, arg, postBackType, includeVariables);
            WriteEndTag("do");
        }

        // Makes sure the writer has rendered a paragraph tag corresponding to
        // the current layout.

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.EnsureLayout"]/*' />
        protected virtual void EnsureLayout()
        {
            WmlLayout layout = CurrentLayout;

            if (_currentWrittenLayout != null && layout.Compare(_currentWrittenLayout))
            {
                // Same layout as before. Only write any pending break.
                if (PendingBreak)
                {
                    // Avoid writing tags like </b> AFTER the <br/>, instead
                    // writing them before.

                    if (_currentWrittenFormat != null && !CurrentFormat.Compare(_currentWrittenFormat))
                    {
                        CloseCharacterFormat();
                    }
                    WriteBreak();
                }
            }
            else
            {
                // Layout has changed. Close current layout, and open new one.
                CloseParagraph();
                OpenParagraph(layout, 
                              layout.Align != Alignment.Left, 
                              layout.Wrap != Wrapping.Wrap);
            }
            PendingBreak = false;
        }

        // Makes sure the writer has rendered character formatting tags
        // corresponding to the current format.

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.EnsureFormat"]/*' />
        protected virtual void EnsureFormat()
        {
            WmlFormat format = CurrentFormat;

            if (_currentWrittenFormat == null || !format.Compare(_currentWrittenFormat))
            {
                CloseCharacterFormat();
                OpenCharacterFormat(format,
                                    format.Bold,
                                    format.Italic,
                                    format.Size != FontSize.Normal);
            }
        }

        // Opens a paragraph with the given layout. Only the specified 
        // attributes are used.

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.OpenParagraph"]/*' />
        protected virtual void OpenParagraph(WmlLayout layout, bool writeAlignment, bool writeWrapping)
        {
            if (_currentWrittenLayout == null)
            {
                WriteBeginTag("p");
                if (writeAlignment)
                {
                    String alignment;
                    switch (layout.Align)
                    {
                        case Alignment.Right:
                            alignment = "right";
                            break;

                        case Alignment.Center:
                            alignment = "center";
                            break;

                        default:
                            alignment = "left";
                            break;
                    }

                    WriteAttribute("align", alignment);
                }
                if (writeWrapping)
                {
                    WriteAttribute("mode",
                                   layout.Wrap == Wrapping.NoWrap ? "nowrap" : "wrap");
                }
                Write(">");
                _currentWrittenLayout = layout;
            }
        }

        // Close any open paragraph.

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.CloseParagraph"]/*' />
        protected virtual void CloseParagraph()
        {
            if (_currentWrittenLayout != null)
            {
                CloseCharacterFormat();
                WriteEndTag("p");
                _currentWrittenLayout = null;
            }
        }

        // Renders tags to enter the given character format. Only the specified 
        // attributes are used.

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.OpenCharacterFormat"]/*' />
        protected virtual void OpenCharacterFormat(WmlFormat format, bool writeBold, bool writeItalic, bool writeSize)
        {
            if (_currentWrittenFormat == null)
            {
                if (writeBold && format.Bold)
                {
                    WriteFullBeginTag(_boldTag);
                    format.WrittenBold = true;
                }
                if (writeItalic && format.Italic)
                {
                    WriteFullBeginTag(_italicTag);
                    format.WrittenItalic = true;
                }
                if (writeSize && format.Size != FontSize.Normal)
                {
                    WriteFullBeginTag(format.Size == FontSize.Large ? _largeTag : _smallTag);
                    format.WrittenSize = true;
                }
                _currentWrittenFormat = format;
            }
        }

        // Close any open character formatting tags.

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.CloseCharacterFormat"]/*' />
        protected virtual void CloseCharacterFormat()
        {
            if (_currentWrittenFormat != null)
            {
                if (_currentWrittenFormat.WrittenSize)
                {
                    WriteEndTag(_currentWrittenFormat.Size == FontSize.Large ? _largeTag : _smallTag);
                }
                if (_currentWrittenFormat.WrittenItalic)
                {
                    WriteEndTag(_italicTag);
                }
                if (_currentWrittenFormat.WrittenBold)
                {
                    WriteEndTag(_boldTag);
                }
                _currentWrittenFormat = null;
            }
        }

        private static readonly char[] _attributeCharacters = new char[] {'"', '&', '<', '>', '$'};

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.WriteAttribute"]/*' />
        public override void WriteAttribute(String attribute, String value, bool encode)
        {
            // If in analyze mode, we don't actually have to perform the conversion, because
            // it's not getting written anyway.

            // If the value is null, we return without writing anything.  This is different
            // from HtmlTextWriter, which writes the name of the attribute, but no value at all.
            // A name with no value is illegal in Wml.
            if (value == null)
            {
                return;
            }

            if (AnalyzeMode)
            {
                encode = false;
            }
            
            if (encode)
            {
                // Unlike HTML encoding, we need to replace $ with $$, and <> with &lt; and &gt;. 
                // We can't do this by piggybacking HtmlTextWriter.WriteAttribute, because it 
                // would translate the & in &lt; or &gt; to &amp;. So we more or less copy the 
                // ASP.NET code that does similar encoding.

                Write(' ');
                Write(attribute);
                Write("=\"");

                int cb = value.Length;
                int pos = value.IndexOfAny(_attributeCharacters);
                if (pos == -1) 
                {
                    Write(value);
                }
                else
                {
                    char[] s = value.ToCharArray();
                    int startPos = 0;
                    while (pos < cb) 
                    {
                        if (pos > startPos) 
                        {
                            Write(s, startPos, pos - startPos);
                        }

                        char ch = s[pos];
                        switch (ch) 
                        {
                            case '\"':
                                Write("&quot;");
                                break;
                            case '&':
                                Write("&amp;");
                                break;
                            case '<':
                                Write("&lt;");
                                break;
                            case '>':
                                Write("&gt;");
                                break;
                            case '$':
                                Write("$$");
                                break;
                        }

                        startPos = pos + 1;
                        pos = value.IndexOfAny(_attributeCharacters, startPos);
                        if (pos == -1) 
                        {
                            Write(s, startPos, cb - startPos);
                            break;
                        }
                    }
                }

                Write('\"');
            }
            else
            {
                base.WriteAttribute(attribute, value, encode);
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.WriteTextEncodedAttribute"]/*' />
        protected void WriteTextEncodedAttribute(String attribute, String value)
        {
            WriteAttribute(attribute, value, true);
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.CurrentForm"]/*' />
        protected Form CurrentForm
        {
            get
            {
                return _currentForm;
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.Page"]/*' />
        protected MobilePage Page
        {
            get
            {
                return _page;
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.NumberOfSoftkeys"]/*' />
        protected int NumberOfSoftkeys
        {
            get
            {
                return _numberOfSoftkeys;
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.AnalyzePostBack"]/*' />
        protected virtual void AnalyzePostBack(bool includeVariables, WmlPostFieldType postBackType)
        {
            _usingPostBackType[includeVariables ? 0 : 1] = true;
            if (postBackType != WmlPostFieldType.Submit || CurrentForm.Action.Length == 0)
            {
                _numberOfPostBacks++;
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.WriteEncodedUrl"]/*' />
        public override void WriteEncodedUrl(String url)
        {
            if (url == null)
            {
                return;
            }

            int i = url.IndexOf('?');
            if (i != -1)
            {
                WriteUrlEncodedString(url.Substring(0, i), false);

                String s = url.Substring(i);
                if (s.IndexOf('$') != -1)
                {
                    s = s.Replace("$", "%24");
                }
                base.WriteEncodedText(s);
                //WriteEncodedText(url.Substring(i));
            }
            else
            {
                WriteUrlEncodedString(url, false);
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.WriteEncodedText"]/*' />
        public override void WriteEncodedText(String text)
        {
            if (text == null)
            {
                return;
            }

            if (text.IndexOf('$') != -1)
            {
                text = text.Replace("$", "$$");
            }

            base.WriteEncodedText(text);
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.WriteText"]/*' />
        public void WriteText(String text, bool encodeText)
        {
            if (encodeText)
            {
                WriteEncodedText(text);
            }
            else
            {
                WritePlainText(text);
            }
        }

        private void WritePlainText(String text)
        {
            if (text == null)
            {
                return;
            }

            if (text.IndexOf('$') != -1)
            {
                text = text.Replace("$", "$$");
            }
            Write(text);
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.WriteBreak"]/*' />
        protected new void WriteBreak()
        {
            Write("<br/>\r\n");
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.WritePostField"]/*' />
        public void WritePostField(String name, String value)
        {
            WritePostField(name, value, WmlPostFieldType.Normal);
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.WritePostFieldVariable"]/*' />
        public void WritePostFieldVariable(String name, String arg)
        {
            WritePostField(name, arg, WmlPostFieldType.Variable);
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.WritePostField1"]/*' />
        public void WritePostField(String name, String value, WmlPostFieldType type)
        {
            Write("<postfield name=\"");
            Write(name);
            Write("\" value=\"");
            if (type == WmlPostFieldType.Variable)
            {
                Write("$(");
            }
            if (type == WmlPostFieldType.Normal)
            {
                if (Device.RequiresUrlEncodedPostfieldValues)
                {
                    WriteEncodedUrlParameter(value);
                }
                else
                {
                    WriteEncodedText(value);
                }
            }
            else
            {
                Write(value);
            }
            if (type == WmlPostFieldType.Variable)
            {
                Write(")");
            }
            Write("\" />");
        }

        // MapClientIDToShortName provides a unique map of control ClientID properties
        // to shorter names. In cases where a control has a very long ClientID, a 
        // shorter unique name is used. All references to the client ID on the page
        // are mapped, resulting in the same postback regardless of mapping.
        // MapClientIDToShortName also scrambles client IDs that need to be 
        // scrambled for security reasons.

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.MapClientIDToShortName"]/*' />
        protected internal String MapClientIDToShortName(String clientID, bool generateRandomID)
        {
            if (_alwaysScrambleClientIDs)
            {
                generateRandomID = true;
            }

            if (_controlShortNames != null)
            {
                String lookup = (String)_controlShortNames[clientID];
                if (lookup != null)
                {
                    return lookup;
                }
            }

            if (!generateRandomID)
            {
                bool shortID = clientID.Length < _maxShortNameLength;
                // Map names with underscores and conflicting names regardless of length.
                bool goodID = !HasUnnamedControlId(clientID) && !NameConflicts(clientID);

                if (shortID && goodID)
                {
                    return clientID;
                }
            }

            if (_controlShortNames == null)
            {
                _controlShortNames = new ListDictionary();
            }
            
            String shortName;
            if (generateRandomID)
            {
                shortName = GetRandomID(5);
            }
            else
            {
                shortName = String.Empty;
            }

            shortName = String.Concat(_shortNamePrefix, shortName, _controlShortNames.Count.ToString(CultureInfo.InvariantCulture));
            _controlShortNames[clientID] = shortName;
            return shortName;
        }

        // VSWhidbey 280485: We used to check '_' for default control id.  But
        // VSWhidbey 188477 removed the '_', so here it checks "ctl" with id
        // separator (for naming container case) instead.
        private bool HasUnnamedControlId(string clientID) {
            const string unnamedIdPrefix = "ctl";
            if (clientID.StartsWith(unnamedIdPrefix, StringComparison.Ordinal)) {
                return true;
            }

            string unnamedIdPrefixWithIdSeparator = Page.IdSeparator + unnamedIdPrefix;
            int unnamedIdPrefixLength = unnamedIdPrefix.Length;
            if (clientID.Length > unnamedIdPrefixLength &&
                clientID.IndexOf(unnamedIdPrefixWithIdSeparator, unnamedIdPrefixLength, StringComparison.Ordinal) != -1) {
                return true;
            }
            return false;
        }

        private String GetRandomID(int length)
        {
            Byte[] randomBytes = new Byte[length];
            _random.NextBytes(randomBytes);

            char[] randomChars = new char[length];
            for (int i = 0; i < length; i++)
            {
                randomChars[i] = (char)((((int)randomBytes[i]) % 26) + 'a');
            }

            return new String(randomChars);
        }

        private bool NameConflicts(String name)
        {
            if (name == null)
            {
                return false;
            }

            Debug.Assert(_postBackEventTargetVarName.ToLower(CultureInfo.InvariantCulture) == _postBackEventTargetVarName &&
                _postBackEventArgumentVarName.ToLower(CultureInfo.InvariantCulture) == _postBackEventArgumentVarName &&
                _shortNamePrefix.ToLower(CultureInfo.InvariantCulture) == _shortNamePrefix);
        
            name = name.ToLower(CultureInfo.InvariantCulture);
            return name == _postBackEventTargetVarName ||
                name == _postBackEventArgumentVarName || 
                name.StartsWith(_shortNamePrefix, StringComparison.Ordinal);
        }

        private static readonly WmlLayout _defaultLayout = 
                                    new WmlLayout(Alignment.Left, Wrapping.Wrap);

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.DefaultLayout"]/*' />
        protected virtual WmlLayout DefaultLayout
        {
            get
            {
                return _defaultLayout;
            }
        }

        private WmlLayout CurrentLayout
        {
            get
            {
                if (_layoutStack.Count > 0)
                {
                    return (WmlLayout)_layoutStack.Peek();
                }
                else
                {
                    return DefaultLayout;
                }
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.PendingBreak"]/*' />
        protected bool PendingBreak
        {
            get
            {
                return _pendingBreak;
            }
            set
            {
                _pendingBreak = value;
            }
        }

        private static readonly WmlFormat _defaultFormat = 
                                    new WmlFormat(false, false, FontSize.Normal);

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlMobileTextWriter.DefaultFormat"]/*' />
        protected virtual WmlFormat DefaultFormat
        {
            get
            {
                return _defaultFormat;
            }
        }

        private WmlFormat CurrentFormat
        {
            get
            {
                if (_formatStack.Count > 0)
                {
                    return (WmlFormat)_formatStack.Peek();
                }
                else
                {
                    return DefaultFormat;
                }
            }
        }

        private bool _requiresNoSoftkeyLabels = false;
        private bool _haveRequiresNoSoftkeyLabels = false;

        private bool RequiresNoSoftkeyLabels()
        {
            if (!_haveRequiresNoSoftkeyLabels)
            {
                String RequiresNoSoftkeyLabelsString = Device["requiresNoSoftkeyLabels"];
                if (RequiresNoSoftkeyLabelsString == null)
                {
                    _requiresNoSoftkeyLabels = false;
                }
                else
                {
                    _requiresNoSoftkeyLabels = Convert.ToBoolean(RequiresNoSoftkeyLabelsString, CultureInfo.InvariantCulture);
                }
                _haveRequiresNoSoftkeyLabels = true;
            }
            return _requiresNoSoftkeyLabels;
        }


        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlLayout"]/*' />
        [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
        [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
        protected class WmlLayout
        {
            private Wrapping _wrap;
            private Alignment _align;

            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlLayout.WmlLayout"]/*' />
            public WmlLayout(Style style, WmlLayout currentLayout)
            {
                Alignment align = (Alignment)style[Style.AlignmentKey, true];
                Align = (align != Alignment.NotSet) ? align : currentLayout.Align;
                Wrapping wrap = (Wrapping)style[Style.WrappingKey , true];
                Wrap = (wrap != Wrapping.NotSet) ? wrap : currentLayout.Wrap;
            }

            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlLayout.WmlLayout1"]/*' />
            public WmlLayout(Alignment alignment, Wrapping wrapping)
            {
                Align = alignment;
                Wrap = wrapping;
            }

            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlLayout.Wrap"]/*' />
            public Wrapping Wrap
            {
                get
                {
                    return _wrap;
                }
                set
                {
                    _wrap = value;
                }
            }

            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlLayout.Align"]/*' />
            public Alignment Align
            {
                get
                {
                    return _align;
                }
                set
                {
                    _align = value;
                }
            }

            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlLayout.Compare"]/*' />
            public virtual bool Compare(WmlLayout layout)
            {
                return Wrap == layout.Wrap && Align == layout.Align;
            }
        }

        /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlFormat"]/*' />
        [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
        [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
        protected class WmlFormat
        {
            private bool _bold;
            private bool _italic;
            private FontSize _size;
            private bool _writtenBold = false;
            private bool _writtenItalic = false;
            private bool _writtenSize = false;

            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlFormat.WmlFormat"]/*' />
            public WmlFormat(Style style, WmlFormat currentFormat)
            {
                BooleanOption bold = (BooleanOption)style[Style.BoldKey, true];
                Bold = (bold != BooleanOption.NotSet) ? bold == BooleanOption.True : currentFormat.Bold;
                BooleanOption italic = (BooleanOption)style[Style.ItalicKey, true];
                Italic = (italic != BooleanOption.NotSet) ? italic == BooleanOption.True : currentFormat.Italic;
                FontSize fontSize  = (FontSize)style[Style.FontSizeKey, true];
                Size = (fontSize != FontSize.NotSet) ? fontSize : currentFormat.Size;
            }

            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlFormat.WmlFormat1"]/*' />
            public WmlFormat(bool bold, bool italic, FontSize size)
            {
                Bold = bold;
                Italic = italic;
                Size = size;
            }

            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlFormat.Bold"]/*' />
            public bool Bold
            {
                get
                {
                    return _bold;
                }
                set
                {
                    _bold = value;
                }
            }


            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlFormat.Italic"]/*' />
            public bool Italic
            {
                get
                {
                    return _italic;
                }
                set
                {
                    _italic = value;
                }
            }


            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlFormat.Size"]/*' />
            public FontSize Size
            {
                get
                {
                    return _size;
                }
                set
                {
                    _size = value;
                }
            }

            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlFormat.WrittenBold"]/*' />
            public bool WrittenBold
            {
                get
                {
                    return _writtenBold;
                }
                set
                {
                    _writtenBold = value;
                }
            }

            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlFormat.WrittenItalic"]/*' />
            public bool WrittenItalic
            {
                get
                {
                    return _writtenItalic;
                }
                set
                {
                    _writtenItalic = value;
                }
            }

            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlFormat.WrittenSize"]/*' />
            public bool WrittenSize
            {
                get
                {
                    return _writtenSize;
                }
                set
                {
                    _writtenSize = value;
                }
            }

            /// <include file='doc\WmlMobileTextWriter.uex' path='docs/doc[@for="WmlFormat.Compare"]/*' />
            public virtual bool Compare(WmlFormat format)
            {
                return Bold == format.Bold &&
                       Italic == format.Italic &&
                       Size == format.Size;
            }
        }
    }
}