File: System.Web.txt

package info (click to toggle)
mono 6.8.0.105%2Bdfsg-3.3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,284,512 kB
  • sloc: cs: 11,172,132; xml: 2,850,069; ansic: 671,653; cpp: 122,091; perl: 59,366; javascript: 30,841; asm: 22,168; makefile: 20,093; sh: 15,020; python: 4,827; pascal: 925; sql: 859; sed: 16; php: 1
file content (3804 lines) | stat: -rw-r--r-- 358,579 bytes parent folder | download | duplicates (6)
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
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
	;
; ASP.NET managed resource file
;
; Copyright (c) 2000 Microsoft Corporation
;
; (After each comment there is a bogus entry to work around RESGEN bug)
;
;
; NOTE: UE now diffs the files to verify changes.  No special procedure
; is necessary to notify UE when changing these strings.
; Direct questions to DavidEbb.
;

;
; Exceptions messages
;

; ExceptionUtil.ParameterInvalid(string parameter)
Parameter_Invalid=The parameter '{0}' is invalid.

; ExceptionUtil.ParameterNullOrEmpty(string parameter)
Parameter_NullOrEmpty=The string parameter '{0}' cannot be null or empty.

; ExceptionUtil.PropertyNullOrEmpty(string property)
Property_NullOrEmpty=The value assigned to property '{0}' cannot be null or empty.

; ExceptionUtil.PropertyInvalid(string property)
Property_Invalid=The value assigned to property '{0}' is invalid.

; ExceptionUtil.UnexpectedError(string methodName)
Unexpected_Error=An unexpected error occurred in '{0}'.

; Use with ArgumentException or InvalidOperationException when the parameter name differs from the message name
;ArgumentCannotBeNullOrEmptyString=Value cannot be null or an empty string.

; Use with ArgumentException or InvalidOperationException when the parameter name differs from the message name
PropertyCannotBeNullOrEmptyString=Value of the '{0}' property cannot be null or an empty string.

; Use with ArgumentException or InvalidOperationException when the parameter name differs from the message name
PropertyCannotBeNull=Value of the '{0}' property cannot be null.

; Browser Caps

Invalid_string_from_browser_caps=The HttpBrowserCapabilities string '{1}' evaluated to '{2}'.  {0}  Check the browserCaps section of machine.config or web.config to correct the error.
Unrecognized_construct_in_pattern=Server cannot recognize construct '{0}' in pattern '{1}'.
Caps_cannot_be_inited_twice=Capabilities object cannot be initialized twice.
Duplicate_browser_id=Id '{0}' has already been specified and must be unique.
Invalid_browser_root=Invalid root element of browser definition file.  Must be contained in a <browsers> element.
Browser_mutually_exclusive_attributes=Browser attributes '{0}' and '{1}' cannot be specified together.
Browser_refid_prohibits_identification=The identification element cannot be used when the browser element includes a refID.
Browser_invalid_element=The '{0}' element is not allowed in a browser or gateway definition.
Browser_Circular_Reference=The browser id '{0}' is specified in a circular reference.
;Browser_attribute_required=The '{1}' attribute is required on the {0} element of the browser definition file.
Browser_attributes_required=The '{1}' or '{2}' attribute is required on the {0} element of the browser definition file.
;Browser_multiple_browser_matched=Browsers elements '{0}' and '{1}' matched at the same peer level in configuration - this is not allowed.
Browser_parentID_Not_Found=The browser or gateway element with ID '{0}' cannot be found.
Browser_parentID_applied_to_default=parentID attribute is not allowed on a default browser element.
Browser_InvalidID=The {0} '{1}' is not a valid identifier.
Browser_Not_Allowed_InAppLevel=Invalid element '{0}' in the application browser file, this element can only be used in a machine level browser file.
Browser_InvalidStrongNameKey=Invalid strong name key was generated.
Browser_compile_error=BrowserCap assembly failed to be compiled.
DefaultBrowser_parentID_Not_Found=The defaultBrowser element specified by parentID '{0}' cannot be found.
Browser_empty_identification=A non-empty <identification> element is required for any browser definition.
Browser_W3SVC_Failure_Helper_Text=Cannot restart W3SVC Service, this operation might require other privileges.

; Config related
DefaultSiteName=Default Web Site

ControlAdapters_TypeNotFound=Unable to create type '{0}'.

Failed_gac_install=Failed to install assembly to gac.
Failed_gac_uninstall=Failed to uninstall assembly to gac.
;Config_Process_model_time_invalid=Process model times must be in the form [[hh:]mm:]ss
;EncryptedNode_is_in_invalid_format=The section is marked as being protected. However, the <EncryptedData> child node was not found in the section's node. Make sure that the section is correctly encrypted.
WrongType_of_Protected_provider=The type specified does not extend ProtectedConfigurationProvider class.
Make_sure_remote_server_is_enabled_for_config_access=Unable to access the configuration system on the remote server. Make sure that the remote server allows remote configuration.
;Config_unable_to_set_configuration_system=Unable to set configuration system.
Config_unable_to_get_section=Unable to retrieve configuration section '{0}'.
Config_failed_to_resolve_site_id=Failed to resolve the site ID for '{0}'.
Config_GetSectionWithPathArgInvalid=WebConfigurationManager::GetSection(sectionName, path) can only be called from within a web application.
Unable_to_create_temp_file=Unable to create a new temp file.
Config_allow_definition_error_application=It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level.  This error can be caused by a virtual directory not being configured as an application in IIS.
Config_allow_definition_error_machine=It is an error to use a section registered as allowDefinition='MachineOnly' beyond machine.config.
Config_allow_definition_error_webroot=It is an error to use a section registered as allowDefinition='MachineToWebRoot' beyond the root web.config file.
Config_base_unrecognized_element=Unrecognized element
Config_base_required_attribute_missing=The required attribute '{0}' was not found.
;Config_base_required_attribute_missing_option=Required attribute '{0}' or '{1}' must be defined.
Config_base_required_attribute_empty=The required attribute '{0}' cannot be empty.
;Config_base_required_attribute_missing_scope=The WebSiteAdministrationAuthorizationSettings 'ScopeCollection' must not be empty.
Config_base_unrecognized_attribute=Unrecognized attribute '{0}'. Note that attribute names are case-sensitive.
Config_base_elements_only=Only XML elements are allowed.
Config_base_no_child_nodes=Child nodes are not allowed.
Config_base_file_load_exception_no_message=Could not load the assembly. The property '{0}' must be a valid assembly.
Config_base_bad_image_exception_no_message=Could not load the assembly. The file image '{0}' is invalid.
Config_base_report_exception_type=Could not load the assembly.  The unexpected exception was '{0}'.
Config_property_generic=The configuration property is invalid.
Config_section_not_supported=The configuration section is not supported: {0}.
Unable_To_Register_Assembly=Unable to register assembly '{0}'.
Unable_To_UnRegister_Assembly=Unable to un-register assembly '{0}'.
Could_not_create_type_instance=Server could not create {0}.
;Config_Default_SQL_Description=Stores and retrieves {0} data from the local Microsoft SQL Server database
;Config_Default_Access_Description=Stores and retrieves {0} data from the local Microsoft Access database file
;Config_Default_WindowsToken_Description=Retrieves {0} data from the Windows authenticated token for the request
;Config_Default_AuthStore_Description=Stores and retrieves {0} data from the authorization store.
;Config_Default_SiteMap_Description=SiteMap provider which reads in .sitemap XML files.
;Config_OpenConfig_InvalidPath=Only an absolute path to the configuration is valid for the path.
Config_Invalid_enum_value=The enumeration value must be one of the following: {0}.
Config_element_below_app_illegal=The element '{0}' cannot be defined below the application level.

;Config_Membership=membership
;Config_Profile=profile
Config_provider_must_exist=The provider '{0}' specified for the defaultProvider does not exist in the providers collection.
;Config_Roles=roles
File_is_read_only=The file '{0}' is marked as read-only.
Can_not_access_files_other_than_config=Only config files can be accessed by this feature.

Error_loading_XML_file=The XML file {0} could not be loaded.  {1}

Unknown_tag_in_caps_config=Server found the unknown tag <{0}> in capabilities configuration.
Cannot_specify_test_without_match=Cannot specify test without match.
Result_must_be_at_the_top_browser_section=<result> must be at the top of the <browsercaps> section
Type_doesnt_inherit_from_type=Type '{0}' does not inherit from '{1}'.
Type_cannot_be_resolved=The type '{0}' cannot be resolved. Please verify the spelling is correct or that the full type name is provided.
Problem_reading_caps_config=Server cannot read capabilities configuration {0}.

;Missing_modules_config=Missing <httpModules> configuration
;No_mapping_to_remove=No mapping {0}/{1} to remove.
;Phase_attribute_out_of_range=Phase attribute is out of range
Special_module_cannot_be_added_manually=Special module of type '{0}' cannot be added or removed manually.
;Module_already_in_app=The module '{0}' is already in the application and cannot be added again
Special_module_cannot_be_removed_manually=Special module of type '{0}' cannot be removed manually.
Module_not_in_app=There is no '{0}' module in the application to remove.
;Auth_unrecognized_tag=Unrecognized tag '{0}' in the config file
Invalid_credentials=Invalid user credentials are specified in the config file.
Auth_Invalid_Login_Url=The login URL specified for authentication is not valid.
;Unrecognized_configuration_section=Unrecognized configuration section '{0}'
;Unknown_globalization_attr= The <globalization> tag contains unknown attribute '{0}'.
Invalid_value_for_globalization_attr=The <globalization> tag contains an invalid value for the '{0}' attribute.
Invalid_credentials_2=Could not create Windows user token from the credentials specified in the config file. Error from the operating system '{0}'
Invalid_registry_config=Error reading configuration information from the registry.
;cannot_use_Triple_DES=Could not initialize the Triple-DES cryptography package. Make sure you have the 128-bit encryption package installed.
Invalid_Passport_Redirect_URL=Redirect URL specified for Passport Authentication is invalid.
Invalid_redirect_return_url=The return URL specified for request redirection is invalid.

Config_section_not_present=The application's configuration files must contain '{0}' section.
;ConfigParentLookupWithNoParent=Attempt to lookup configuration record parent when there is no parent for this record.
Local_free_threads_cannot_exceed_free_threads=The value for 'minLocalRequestFreeThreads' cannot exceed the value for 'minFreeThreads'.
Min_free_threads_must_be_under_thread_pool_limits=The value for 'minFreeThreads' must be less than the thread pool limit of {0} threads.
Thread_pool_limit_must_be_greater_than_minFreeThreads=The value for 'maxWorkerThreads' and 'maxIoThreads' multiplied by the number of processors must be greater than the value of <httpRuntime minFreeThreads/>, which is currently set to {0}.
Config_max_request_length_disk_threshold_exceeds_max_request_length=The property 'RequestLengthDiskThreshold' must be less than or equal to the 'MaxRequestLength' property.
Config_max_request_length_smaller_than_max_request_length_disk_threshold=The property 'MaxRequestLength' must be greater than or equal to the 'RequestLengthDiskThreshold' property.
;Config_section_attribute_locked=The attribute '{0}' cannot be used at this path.  This happens when the site administrator has locked access to this attribute from an inherited configuration file.
;Invalid_lockAttributes=The attribute '{0}' cannot be locked for this section.  The following attributes of this section can be locked: {1}.  Multiple attributes may be listed separated by commas.
Capability_file_root_element=The root element of a capabilities file must be '{0}'.
File_element_only_valid_in_config=File elements are not allowed in external capability files.
;Unrecognized_attribute=Attribute was not recognized.
HttpRuntimeSection_TargetFramework_Invalid=The targetFramework attribute must either be empty or contain a valid framework version string.

;Cannot_find_type_converter=The type converter for type '{0}' cannot be found.
;Cannot_perform_conversion=Cannot perform type conversion from string to type '{0}'.
;Config_timespan_value_cannot_be_zero=The timespan value must not be zero.
;Config_timespan_value_must_be_positive=The timespan value must be positive.

Clear_not_valid=Cannot specify <clear> on this node.
Config_base_cannot_remove_inherited_items=Inherited items may not be removed.
Nested_group_not_valid=Cannot nest the <group> element.

;Config_Redundant_node=The node <{0}> can only appear once.
;No_field_to_remove=No field {0} to remove.
;Config_Process_ComImpersonationLevel_invalid=The value specified for comImpersonationLevel is invalid.
;Config_Process_ComAuthenticationLevel_invalid=The value specified for comAuthenticationLevel is invalid.

Dup_protocol_id=Duplicate protocol ID: '{0}'.

WebPartsSection_NoVerbs=The rule must contain at least one verb.  The valid verbs are 'enterSharedScope' and 'modifyState'.
WebPartsSection_InvalidVerb=The verb '{0}' is not valid.  The valid verbs are 'enterSharedScope' and 'modifyState'.
Transformer_types_already_added=A transformer with name '{0}' has already been added, and has the same provider and consumer types as the transformer with name '{1}'.
Transformer_attribute_error=Error reading WebPartTransformerAttribute: '{0}'
File_changed_since_read=The file '{0}' has changed since it was read.
Config_invalid_element=Invalid element is detected: '{0}'.

Config_control_rendering_compatibility_version_is_less_than_minimum_version=The control rendering compatibility version must not be less than 3.5.

; ExpressionBuilders
InvalidExpressionSyntax=The expression '{0}' is invalid. Expressions use the syntax <%$ prefix:value %>.
InvalidExpressionPrefix=The expression prefix '{0}' was not recognized.  Please correct the prefix or register the prefix in the <expressionBuilders> section of configuration.
ExpressionBuilder_InvalidType=The type '{0}' is not an ExpressionBuilder.
MissingExpressionPrefix=The expression '{0}' does not have a prefix.
MissingExpressionValue=The expression '{0}' does not have a value.
ExpressionBuilder_LiteralExpressionsNotAllowed=Literal expressions like '{0}' are not allowed. Use <asp:Literal runat="server" Text="<%{1}%>" /> instead.
ResourceExpresionBuilder_PageResourceNotFound=The resource class for this page was not found.  Please check if the resource file exists and try again.

; File changes monitor

Failed_to_start_monitoring=Failed to start monitoring changes to '{0}'.
Invalid_file_name_for_monitoring=Invalid file name for file monitoring: '{0}'. Common reasons for failure include:\r\n- The filename is not a valid Win32 file name.\r\n- The filename is not an absolute path.\r\n- The filename contains wildcard characters.\r\n- The file specified is a directory.\r\n- Access denied.
Access_denied_for_monitoring=Failed to start monitoring changes to '{0}' because access is denied.
Directory_does_not_exist_for_monitoring=Directory '{0}' does not exist. Failed to start monitoring file changes.
NetBios_command_limit_reached=Failed to start monitoring changes to '{0}' because the network BIOS command limit has been reached. For more information on this error, please refer to Microsoft knowledge base article 810886. Hosting on a UNC share is not supported for the Windows XP Platform.
Directory_rename_notification=Directory rename change notification for '{0}'.
Change_notification_critical_dir=Change Notification for critical directories.

; Misc handlers

Path_not_found=Path '{0}' was not found.
Path_forbidden=Path '{0}' is forbidden.
Method_for_path_not_implemented={0} {1} is not implemented.
Method_not_allowed=The HTTP verb {0} used to access path '{1}' is not allowed.
Cannot_call_defaulthttphandler_sync=DefaultHttpHandler must be called asynchronously using BeginProcessRequest.
Handler_access_denied=The handler must be granted Script or Execute permission in order to execute.  This is set via &lt;system.webServer&gt;\\&lt;handlers accessPolicy&gt; configuration.

; Debug Auto-attach

Debugging_forbidden={0} application debugging not enabled.
Debug_Access_Denied=Debug access denied to '{0}'.
Invalid_Debug_Request=DEBUG request is not valid.
Invalid_Debug_ID=DebugSessionID corrupted or not provided.
Error_Attaching_with_MDM=HRESULT={0};ErrorString=Unable to do an AutoAttach.

; Caching

VaryByCustom_already_set=VaryByCustom is already set.
CacheProfile_Not_Found=The '{0}' cache profile is not defined.  Please define it in the configuration file.
Invalid_operation_cache_dependency=The cache dependencies for the response have already been determined and cannot be modified.
Invalid_sqlDependency_argument=The '{0}' SqlDependency attribute for OutputCache directive is invalid.\r\n\r\nFor SQL Server 7.0 and SQL Server 2000, the valid format is "database:tablename", and table name must conform to the format of regular identifiers in SQL. To specify multiple pairs of values, use the ';' separator between pairs. (To specify ':', '\\' or ';', prefix it with the '\\' escape character.)\r\n\r\nFor dependencies that use SQL Server 9.0 notifications, specify the value 'CommandNotification'.
Invalid_sqlDependency_argument2=The '{0}' SqlDependency attribute for OutputCache directive is invalid.\r\n\r\nDetailed error message: {1}
Etag_already_set=Etag is already set.
Cant_both_set_and_generate_Etag=Cannot set ETag and also generate it from files.
Cacheability_for_field_must_be_private_or_nocache=Cacheability for a field must either be Private or NoCache.
Cache_dependency_used_more_that_once=An attempt was made to reference a CacheDependency object from more than one Cache entry.
Invalid_expiration_combination=absoluteExpiration must be DateTime.MaxValue or slidingExpiration must be timeSpan.Zero.
Invalid_Dependency_Type=dependency argument to CacheDependency constructor can only be of type System.Web.Caching.CacheDependency
Invalid_Parameters_To_Insert=One of the following parameters must be specified: dependencies, absoluteExpiration, slidingExpiration.
;No_Cache_Config_In_subdir=Cache configuration can only be set at machine or application.
Invalid_sql_cache_dep_polltime=The property 'pollTime' must be an integer value greater than or equal to 500(ms).
;Duplicate_registered_database=The '{0}' database has already been registered.
;No_database_to_remove=No '{0}' database to remove.
Database_not_found=Cannot find the '{0}' database in the configuration.
Cant_connect_sql_cache_dep_database_polling=Unable to connect to SQL database '{0}' for cache dependency polling.
Cant_connect_sql_cache_dep_database_admin=Unable to connect to the SQL database for cache dependency registration.
Cant_connect_sql_cache_dep_database_admin_cmdtxt=Failed during cache dependency registration.\r\n\r\nPlease make sure the database name and the table name are valid. Table names must conform to the format of regular identifiers in SQL.\r\n\r\nThe failing SQL command is:\r\n{0}\r\n
Database_not_enabled_for_notification=The database '{0}' is not enabled for SQL cache notification.\r\n\r\nTo enable a database for SQL cache notification, please use the System.Web.Caching.SqlCacheDependencyAdmin.EnableNotifications method, or the command line tool aspnet_regsql. To use the tool, please run 'aspnet_regsql.exe -?' for more information.
Table_not_enabled_for_notification=The '{0}' table in the database '{1}' is not enabled for SQL cache notification.\r\n\r\nPlease make sure the table exists, and the table name used for cache dependency matches exactly the table name used in cache notification registration.\r\n\r\nTo enable a table for SQL cache notification, please use SqlCacheDependencyAdmin.EnableTableForNotifications method, or the command line tool aspnet_regsql. To use the tool, please run 'aspnet_regsql.exe -?' for more information.\r\n\r\nTo get a list of enabled tables in the database, please use SqlCacheDependencyManager.GetTablesEnabledForNotifications method, or the command line tool aspnet_regsql.exe.
Polling_not_enabled_for_sql_cache=SQL cache notification is not enabled. To enable SQL cache dependency, please set the 'enabled' attribute to "true" in the <sqlCacheDependency> section in the configuration file.
Polltime_zero_for_database_sql_cache=SQL cache notification is not enabled for the database '{0}' because the pollTime attribute is set to zero in the configuration.
Permission_denied_database_polling=SQL cache dependency polling failed for SQL database '{0}' because of permission problem.
Permission_denied_database_enable_notification=You do not have sufficient permission on the database to enable SQL cache notification. You need to use a database owner account, such as 'sa' to add roles, to create the required tables and stored procedures, and to grant EXECUTE permission on those stored procedures.
Permission_denied_table_enable_notification=You do not have sufficient permission on the database to enable SQL cache notification for the table '{0}'. You need the permission to create a trigger on the table '{0}', and to insert a row into the table 'AspNet_SqlCacheTablesForChangeNotification'.
Permission_denied_database_disable_notification=You do not have sufficient permission on the database to disable SQL cache notification. You need the permission to remove the table 'AspNet_SqlCacheTablesForChangeNotification'.
Permission_denied_table_disable_notification=You do not have sufficient permission on the database to disable SQL cache notification for the table '{0}'. You need the permission to remove a trigger from the table '{0}', and to remove a row from the table 'AspNet_SqlCacheTablesForChangeNotification'.
Cant_get_enabled_tables_sql_cache_dep=Cannot get the tables enabled for SQL cache notification.
Cant_disable_table_sql_cache_dep=Cannot disable a table for SQL cache notification because the database is not enabled for SQL cache notification.
Cache_null_table=The table name parameter cannot be null or have a length of zero.
Cache_null_table_in_tables=The tables parameter cannot contain a table which is null or has a length of zero.
Cache_dep_table_not_found=The table '{0}' cannot be found in the database.
UC_not_cached=The CachePolicy cannot be used, since the control is not being cached.
UCCachePolicy_unavailable=The CachePolicy cannot be used after the PreRender phase.
SqlCacheDependency_permission_denied=Failed to use SqlCacheDependency because permission is denied. In order to use SqlCacheDependency, the application needs to be granted unrestricted SqlClientPermission. Please check with your administrator if the application does not have this permission.
No_UniqueId_Cache_Dependency=Unable to generate etag from dependencies. One of the dependencies couldn't generate a unique id.
SqlCacheDependency_OutputCache_Conflict=The page already has the 'SqlDependency="CommandNotification"' attribute specified in the OutputCache directive.  On such a page, it is an error to create a SqlCacheDependency object using a SqlCommand object.\r\n\r\nThere are two ways to solve this problem:\r\n1.Do not use the 'SqlDependency="CommandNotification"' attribute in the OutputCache directive.\r\n2.On the SqlCommand object set SqlCommand.NotificationAutoEnlist to false.  The side effect is that that SqlCommand object will not affect the output caching of the page.


; Application

Cache_not_available=Cache is not available
Http_handler_not_found_for_request_type=No http handler was found for request type '{0}'
Request_not_available=Request is not available in this context
Response_not_available=Response is not available in this context.
Session_not_available=Session state is not available in this context.
Server_not_available=Server operation is not available in this context.
User_not_available=User is not available in this context.
Sync_not_supported=Synchronous request processing is not supported.
Type_not_factory_or_handler={0} does not implement IHttpHandlerFactory or IHttpHandler.
Type_from_untrusted_assembly=Type '{0}' cannot be instantiated under a partially trusted security policy (AllowPartiallyTrustedCallersAttribute is not present on the target assembly).
Type_not_module={0} does not implement IHttpModule.
Request_timed_out=Request timed out.
DynamicModuleRegistrationOff=RegisterModule cannot be called when <httpRuntime allowDynamicModuleRegistration='false'>.

Invalid_ControlState=The state information is invalid for this page and might be corrupted.
Too_late_for_ViewStateUserKey=The ViewStateUserKey property needs to be set during Page_Init.
Too_late_for_RegisterRequiresViewStateEncryption=The RegisterRequiresViewStateEncryption() method needs to be called before or during Page_PreRender.

MethodCannotBeCalledAfterAppStart=This method cannot be called after Application_Start.


; Request

Invalid_urlencoded_form_data=The URL-encoded form data is not valid.
Invalid_request_filter=The request filter is not valid.
Cannot_map_path_without_context=Server cannot map the path without the full request context.
Cross_app_not_allowed=The virtual path '{0}' maps to another application, which is not allowed.
Max_request_length_exceeded=Maximum request length exceeded.
Dangerous_input_detected=A potentially dangerous {0} value was detected from the client ({1}).
Dangerous_input_detected_descr=ASP.NET has detected data in the request that is potentially dangerous because it might include HTML markup or script. The data might represent an attempt to compromise the security of your application, such as a cross-site scripting attack. If this type of input is appropriate in your application, you can include code in a web page to explicitly allow it. For more information, see http://go.microsoft.com/fwlink/?LinkID=212874.
CollectionCountExceeded_HttpValueCollection=The maximum number of form, query string, or posted file items has already been read from the request. To change the maximum allowed request collection count from its current value of {0}, change the "aspnet:MaxHttpCollectionKeys" setting. See http://go.microsoft.com/fwlink/?LinkId=238386 for more information.
CollectionCountExceeded_JavaScriptObjectDeserializer=The maximum number of items has already been deserialized into a single dictionary by the JavaScriptSerializer. To change the maximum allowed JSON dictionary entry count from its current value of {0}, change the "aspnet:MaxJsonDeserializerMembers" setting. See http://go.microsoft.com/fwlink/?LinkId=238386 for more information.
Invalid_substitution_callback=Invalid callback. Only static methods on controls, or methods on other objects, are allowed for substitution callbacks.
Url_too_long=The length of the URL for this request exceeds the configured maxUrlLength value.
QueryString_too_long=The length of the query string for this request exceeds the configured maxQueryStringLength value.
Using_BufferlessStream_API_Not_Supported=This API is not supported when using the HttpBufferlessInputStream.
Using_InputStream_API_Not_Supported=Request.BufferlessInputStream cannot be used because the Request's contents have already been read.

; Response

Cannot_get_snapshot_if_not_buffered=Server cannot get response snapshot if responses are not buffered.
Cannot_use_snapshot_after_headers_sent=Server cannot use snapshot after HTTP headers have been sent.
Cannot_use_snapshot_for_TextWriter=Server cannot use snapshot for TextWriter responses.
Cannot_set_status_after_headers_sent=Server cannot set status after HTTP headers have been sent.
Cannot_set_content_type_after_headers_sent=Server cannot set content type after HTTP headers have been sent.
Filtering_not_allowed=Filtering is not allowed.
Cannot_append_header_after_headers_sent=Server cannot append header after HTTP headers have been sent.
Cannot_append_cookie_after_headers_sent=Server cannot append cookies after HTTP headers have been sent.
Cannot_modify_cookies_after_headers_sent=Server cannot modify cookies after HTTP headers have been sent.
Cannot_clear_headers_after_headers_sent=Server cannot clear headers after HTTP headers have been sent.
Cannot_call_method_after_headers_sent_generic=This functionality is unavailable after HTTP headers have been sent.
Cannot_flush_completed_response=Server cannot flush a completed response.
No_Route_Found_For_Redirect=No matching route found for RedirectToRoute.
Cannot_redirect_after_headers_sent=Cannot redirect after HTTP headers have been sent.
Cannot_set_header_encoding_after_headers_sent=Cannot change headers encoding after HTTP headers have been sent.
Invalid_header_encoding='{0}' cannot be used as Header Encoding.
Cannot_redirect_to_newline=Redirect URI cannot contain newline characters.
Invalid_status_string= HTTP status string is not valid.
Invalid_value_for_CacheControl=Property value for CacheControl is not valid. Value={0}.
OutputStream_NotAvail=OutputStream is not available when a custom TextWriter is used.
Information_Disclosure_Warning=This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using &lt;customErrors mode="Off"/&gt;. Consider using &lt;customErrors mode="On"/&gt; or &lt;customErrors mode="RemoteOnly"/&gt; in production environments.
InvalidOffsetOrCount=The sum of {0} and {1} is greater than the length of the buffer.
Invalid_path_for_push_promise=Invalid path '{0}' for push promise. A virtual path is expected.

; Runtime

Access_denied_to_app_dir=Server cannot access application directory '{0}'. The directory does not exist or is not accessible because of security settings.
Access_denied_to_unicode_app_dir=The server cannot access the application directory {0}.  This may be due to the presence of Unicode characters in the URL.  Unicode characters are supported only when running IIS 6 or newer in worker process isolation mode.
Access_denied_to_path=Access to path '{0}' was denied. The location does not exist or is not accessible because of security settings.
Insufficient_trust_for_attribute=The current trust level does not allow use of the '{0}' attribute
XSP_init_error=ASP.NET Initialization Error: {0}
;Duplicate_bin_dirs=The application contains both a 'bin' and a '{0}' directories, which is not allowed.
Unable_create_app_object=Could not create application object.
Could_not_create_type=Could not create type '{0}'.
StateManagedCollection_InvalidIndex=Insertion index was out of range. Must be non-negative and less than or equal to size.
StateManagedCollection_NoKnownTypes=When implementing a derived StateManagedCollection, the implementation of CreateKnownType() must match the implementation of GetKnownTypes().
VirtualPath_Length_Zero=The file's virtual path must have a length greater than zero.
Invalid_app_VirtualPath=The virtual path '{0}' is not a valid absolute virtual path within the current application.
Collection_CantAddNull=Cannot add null to this collection.
Collection_InvalidType=Only objects of type {0} can be used with this collection.

; VirtualPath

VirtualPath_AllowAppRelativePath=The application relative virtual path '{0}' is not allowed here.
VirtualPath_AllowRelativePath=The relative virtual path '{0}' is not allowed here.
VirtualPath_AllowAbsolutePath=The absolute virtual path '{0}' is not allowed here.
VirtualPath_CantMakeAppRelative=The absolute virtual path '{0}' cannot be made application relative, because the path to the application is not known.
VirtualPath_CantMakeAppAbsolute=The application relative virtual path '{0}' cannot be made absolute, because the path to the application is not known.
Bad_VirtualPath_in_VirtualFileBase=The VirtualPathProvider returned a {0} object with VirtualPath set to '{1}' instead of the expected '{2}'.

ControlRenderedOutsideServerForm=Control '{0}' of type '{1}' must be placed inside a form tag with runat=server.
RequiresNT=This operation requires Windows NT, Windows 2000, or Windows XP.
ListEnumVersionMismatch=Collection was modified; enumeration operation may not execute.
ListEnumCurrentOutOfRange=The enumerator's current position is out of bounds of the list.
HTMLTextWriterUnbalancedPop=A PopEndTag was called without a corresponding PushEndTag.
Server_too_busy=Server Too Busy
InvalidArgumentValue=Invalid value for '{0}' parameter.
CompilationMutex_Create=Mutex could not be created.
CompilationMutex_Null=Mutex state is invalid.
CompilationMutex_Drained=Application is restarting.
CompilationMutex_Failed=Failed to acquire mutex lock.
Failed_to_create_temp_dir=Failed to create temporary files directory '{0}'. Access denied.
Failed_to_execute_child_request=Failed to execute child request.
Cannot_impersonate=An error occurred while attempting to impersonate.  Execution of this request cannot continue.
No_codegen_access=The current identity ({0}) does not have write access to '{1}'.
Transaction_not_supported_in_low_trust=Transactions are not supported under current trust level settings.
Debugging_not_supported_in_low_trust=Debugging is not supported under current trust level settings.
Session_state_need_higher_trust=Access to session state is not supported under current trust level settings.
ExecuteUrl_not_supported=Execute URL is not supported on this platform.
Cannot_execute_url_in_this_context=Insufficient context to Execute URL.
Failed_to_execute_url=Failed to Execute URL.
Aspnet_not_installed=ASP.NET ({0}) is not installed on this machine.

; App Manager

Failed_to_initialize_AppDomain=Failed to initialize the AppDomain:
Cannot_create_AppDomain=Failed to create AppDomain.
Cannot_create_HostEnv=Failed to create HostingEnvironment.
Unknown_protocol_id=Unknown protocol ID '{0}'.
Only_1_HostEnv=Only one HostingEnvironment is allowed in an AppDomain.
Not_IRegisteredObject=Type '{0}' does not implement IRegisteredObject interface.
Wellknown_object_already_exists=Well known object of type '{0}' already exists in this App Domain.
Invalid_IIS_app='{0}' is not a valid IIS application.
App_Virtual_Path=Application virtual path: '{0}'
Hosting_Phys_Path_Changed=Physical application path changed from {0} to {1}.
App_Domain_Restart=AppDomainRestart
Hosting_Env_Restart=HostingEnvironment caused shutdown
Hosting_Env_IdleTimeout=Idle timeout
Unhandled_Exception=An unhandled exception occurred and the process was terminated.
Provider_must_implement_the_interface=The provider class '{0}' must implement the class '{1}'.
Permission_set_not_found=Could not find permission set named '{0}'.
Require_stable_string_hash_codes=ASP.NET can operate with String hash code randomization only when enabled per application via AppSettings configuration. Registry key HKEY_LOCAL_MACHINE\\Software\\Microsoft\\.NETFramework\\UseRandomizedStringHashAlgorithm and <runtime/UseRandomizedStringHashAlgorithm> configuration are not supported.

; Server vars collection
Server_variable_cannot_be_modified=This server variable cannot be modified during request execution.
Cache_url_invalid=The format of the CACHE_URL server variable is invalid.

; HTTP Writer

Invalid_range=Specified range is not valid.
Invalid_use_of_response_filter=Invalid use of response filter
Invalid_response_filter=Response filter is not valid.
Invalid_size=The size parameter must be between zero and the maximum Int32 value.

; Process model
Process_information_not_available=Process metrics are available only when the ASP.NET process model is enabled.  When running on versions of IIS 6 or newer in worker process isolation mode, this feature is not supported.


; Static files handler
Error_trying_to_enumerate_files=Server encountered an error while enumerating files.
File_enumerator_access_denied=File enumerator access was denied.
File_does_not_exist=File does not exist.
File_is_hidden=File is hidden.
Missing_star_mapping=Missing */ handler mapping.  The server cannot handle the directory.
Resource_access_forbidden=Access to resource is forbidden.


; Server Utility

SMTP_TypeCreationError=Could not create an object of type '{0}'.  Please verify that the current platform configuration supports SMTP mail.
Could_not_create_object_of_type=Could not create an object of type '{0}'.
Could_not_create_object_from_clsid=Could not create an object with CLASSID '{0}'.
Error_executing_child_request_for_path=Error executing child request for {0}.
Error_executing_child_request_for_handler=Error executing child request for handler '{0}'.
Invalid_path_for_child_request=Invalid path for child request '{0}'. A virtual path is expected.
Transacted_page_calls_aspcompat=All pages that invoke other pages with aspcompat enabled must also have a <%@ page aspcompat=true %> directive.
Invalid_path_for_remove=Invalid path for HttpResponse.RemoveOutputCacheItem '{0}'. An absolute virtual path is expected.
Get_computer_name_failed=Could not obtain computer name.

; Cache


; Hosting

Cannot_map_path=Failed to map the path '{0}'.
Cannot_access_mappath_title=Failed to access IIS metabase.
Cannot_access_mappath_details=The process account used to run ASP.NET must have read access to the IIS metabase (e.g. IIS://servername/W3SVC).   For information on modifying metabase permissions, please see <a href="http://support.microsoft.com/?kbid=267904">http://support.microsoft.com/?kbid=267904</a>.

Cannot_retrieve_request_data=Cannot retrieve the basic request data.
Cannot_read_posted_data=Cannot read the posted data.
Cannot_get_query_string=Cannot get the query string.
Cannot_get_query_string_bytes=Cannot get query string bytes.
Not_supported=The operation is not supported.
GetGacLocaltion_failed=Unable to get the Global Assembly Cache path.
Server_Support_Function_Error=An error occurred while communicating with the remote host. The error code is 0x{0}.
Server_Support_Function_Error_Disconnect=The remote host closed the connection. The error code is 0x{0}.

; Security

MachineKeyDataProtectorFactory_FactoryCreationFailed=Could not create an instance of the configured DataProtector type.
MachineKey_InvalidPurpose=If a list of purposes is specified, the list cannot contain null entries or entries that are comprised solely of whitespace characters.
Provider_Schema_Version_Not_Match=The '{0}' requires a database schema compatible with schema version '{1}'.  However, the current database schema is not compatible with this version.  You may need to either install a compatible schema with aspnet_regsql.exe (available in the framework installation directory), or upgrade the provider to a newer version.
;Security_policy_level_already_defined=Security level already defined for '{0}'.
;No_MachineKey_Config_In_subdir=MachineKey configuration can only occur in RootConfig or in application root.
Could_not_create_passport_identity=An error occurred while trying to create a passport identity.  Please ensure that Passport Manager is installed on the machine and correctly configured.
Passport_method_failed=A call to a Passport Manager method has failed.  Please ensure that Passport Manager is installed on the machine and correctly configured.
;Auth_rule_must_have_allow_or_deny=Authorization rule must have an <allow> or <deny> tag.
Auth_rule_names_cant_contain_char=Authorization rule names cannot contain the '{0}' character.
Auth_rule_must_specify_users_andor_roles=Authorization rule must specify a list of users and/or roles.
PageIndex_bad=The pageIndex must be greater than or equal to zero.
PageSize_bad=The pageSize must be greater than zero.
PageIndex_PageSize_bad=The combination of pageIndex and pageSize cannot exceed the maximum value of System.Int32.
Bad_machine_key=Machine decryption key is invalid. It should be either "AutoGenerate", or 16 (for DES) or 48 (for 3DES and AES) Hex chars long, and may be followed by ",IsolateApps". Exception message from the underlying layer: {0}
PassportAuthFailed=<html><head><title>Passport Sign-in Required</title></head><body>\r\n<h1>Access Denied</h1><p><h3>You must sign in with valid or different Microsoft <sup>&reg;</sup> .NET Passport credentials to access this page.</h3><p> {0} </body></html>\r\n
PassportAuthFailed_Title=Passport Sign-in Required
PassportAuthFailed_Description=You must sign in with valid or different Microsoft .NET Passport credentials to access this page.
;Cannot_specify_below_app_level=The '{0}' section cannot be defined for directories below the application root.
;Can_only_specify_at_app_level=The '{0}' section can only be specified in the web.config at the application root.
;Can_only_specify_subsection_at_app_level=The '{0}' section of the '{1}' section can only be specified in the web.config at the application root.
Unable_to_encrypt_cookie_ticket=Unable to encrypt the authentication ticket. Try changing the decryption key configured for this application.
Unable_to_get_cookie_authentication_validation_key=Machine validation key is invalid. It is '{0}' chars long. It should be either "AutoGenerate" or between 40 and 128 Hex chars long, and may be followed by ",IsolateApps".
Unable_to_validate_data=Unable to validate data.
Unable_to_get_policy_file=Unable to read the security policy file for trust level '{0}'.
Wrong_validation_enum=The validation must be one of these values: SHA1, HMACSHA256, HMACSHA384, HMACSHA512, MD5, 3DES, AES, or alg:[HashAlgorithm].
Wrong_validation_enum_FX45=When using <machineKey compatibilityMode="Framework45" /> or the MachineKey.Protect and MachineKey.Unprotect APIs, the 'validation' attribute must be one of these values: SHA1, HMACSHA256, HMACSHA384, HMACSHA512, or alg:[KeyedHashAlgorithm].
Wrong_decryption_enum=The decryption must be one of these values: Auto, DES, 3DES, AES or alg:[SymmetricAlgorithm].
Role_is_not_empty=This role cannot be deleted because there are users present in it.
Assess_Denied_Title=Access is denied.
Assess_Denied_Description2=An error occurred while accessing the resources required to serve this request. The server may not be configured for access to the requested URL.
Assess_Denied_Section_Title2=Error message 401.2.
Assess_Denied_Misc_Content2=Unauthorized: Logon failed due to server configuration.  Verify that you have permission to view this directory or page based on the credentials you supplied and the authentication methods enabled on the Web server.  Contact the Web server's administrator for additional assistance.
Assess_Denied_Description1=An error occurred while accessing the resources required to serve this request. This may have been caused by an incorrect user name and/or password.
Assess_Denied_MiscTitle1=Error message 401.1
Assess_Denied_MiscContent1=Logon credentials were not recognized. Make sure you are providing the correct user name and password. Otherwise, contact the Web server's administrator for help.
Assess_Denied_Description3=An error occurred while accessing the resources required to serve this request. You might not have permission to view the requested resources.
Assess_Denied_Section_Title3=Error message 401.3
Assess_Denied_Misc_Content3=You do not have permission to view this directory or page using the credentials you supplied (access denied due to Access Control Lists). Ask the Web server's administrator to give you access to '{0}'.
Assess_Denied_Misc_Content3_2=You do not have permission to view this directory or page using the credentials you supplied (access denied due to Access Control Lists). Ask the Web server's administrator to give you access.
;User_Already_Specified=A different password for the username '{0}', has already been specified in a configuration file.
Auth_bad_url=The URL specified in the config file is invalid.
Virtual_path_outside_application_not_supported=Virtual path outside of the current application is not supported.
;Virtual_path_suspicious=The Virtual path supplied is suspicious.
;Virtual_path_file_not_found=The file '{0}' specified by the virtual path was not found.
Invalid_decryption_key=Decryption key specified has invalid hex characters.
Invalid_validation_key=Validation key specified has invalid hex characters.
Passport_not_installed=The PassportManager object could not be initialized. Please ensure that Microsoft Passport is correctly installed on the server.
DbFileName_can_not_contain_invalid_chars=The database filename cannot contain the following 3 characters: [ (open square brace), ] (close square brace) and ' (single quote)
Provider_can_not_create_file_in_this_trust_level=The SSE Provider did not find the database file specified in the connection string. At the configured trust level (below High trust level), the SSE provider cannot automatically create the database file.
LocalDB_cannot_have_userinstance_flag=The user instance login flag is not allowed when connecting to a LocalDB instance of SQL Server. The connection will be closed.
;Username_already_added=The username {0} has already been added.
MembershipPasswordAttribute_InvalidPasswordLength=The '{0}' field is an invalid password. Password must have {1} or more characters.
MembershipPasswordAttribute_InvalidPasswordNonAlphanumericCharacters=The '{0}' field is an invalid password. Password must have {1} or more non-alphanumeric characters.
MembershipPasswordAttribute_InvalidPasswordStrength=The '{0}' field does not meet the complexity requirements for a valid password.
MembershipPasswordAttribute_InvalidRegularExpression=The MembershipPasswordAttribute was initialized with an invalid regular expression for password strength.
LocalizableString_LocalizationFailed=Cannot retrieve property '{0}' because localization failed.  Type '{1}' is not public or does not contain a public static string property with the name '{2}'.

Role_provider_name_invalid=The role provider name specified is invalid.
Def_provider_not_found=Default provider not found
;Mem_Provider_only=Only provider elements are allowed.
Provider_no_type_name=Type name must be specified for this provider.
;MembershipAccessProvider_description=Access membership provider.
MembershipSqlProvider_description=SQL membership provider.
;RoleAccessProvider_description=Access role provider.
RoleSqlProvider_description=SQL role provider.
RoleAuthStoreProvider_description=Authorization store role provider.
RoleWindowsTokenProvider_description=Windows token role provider.
;ProfileAccessProvider_description=Access profile provider.
ProfileSqlProvider_description=SQL profile provider.
Role_Principal_not_fully_constructed=This RolePrincipal object is not fully constructed.
;Provider_can_not_set_application_name=Full or High trust is required to set application name.
Only_one_connection_string_allowed=SqlWebEventProvider: Specify either a connectionString or connectionStringName, not both.
Must_specify_connection_string_or_name=SqlWebEventProvider: Either a connectionString or connectionStringName must be specified.
Cannot_use_integrated_security=SqlWebEventProvider: connectionString can only contain connection strings that use Sql Server authentication.  Trusted Connection security is not supported.
Provider_application_name_too_long=The application name is too long.
Provider_bad_password_format=Password format specified is invalid.
Provider_can_not_retrieve_hashed_password=Configured settings are invalid: Hashed passwords cannot be retrieved. Either set the password format to different type, or set enablePasswordRetrieval to false.
Provider_unrecognized_attribute=Attribute not recognized '{0}'
Provider_can_not_decode_hashed_password=Hashed passwords cannot be decoded.
Profile_group_not_found=The profile group '{0}' has not been defined.
Profile_not_enabled=Profile has not been enabled.
;API_not_supported=Method not supported.
API_supported_for_current_user_only=Method is only supported if the user name parameter matches the user name in the current Windows Identity.
API_failed_due_to_error=API failed due to error '{0}'
Profile_property_already_added=This profile property has already been defined.
Profile_provider_not_found=The profile provider was not found '{0}'
Can_not_issue_cookie_or_redirect=Redirect failed because authentication ticket could not be stored in a cookie or URL due to configuration restrictions. Set EnableCrossAppRedirect to true in the <forms> configuration section in order to enable the ticket to be transferred to external locations via the URL.
Profile_default_provider_not_found=The profile default provider was not found.
Value_must_be_boolean=The value must be boolean (true or false) for property '{0}'.
Value_must_be_positive_integer=The value must be a positive 32-bit integer for property '{0}'.
Value_must_be_non_negative_integer=The value must be a non-negative 32-bit integer for property '{0}'.
Value_too_big=The value '{0}' cannot be greater than '{1}'.
Profile_name_can_not_be_empty=Profile property and group names must not be empty.
Profile_name_can_not_contain_period=Profile property and group names must not contain '.'.
Provider_user_not_found=The user was not found in the database.
Provider_role_not_found=The role '{0}' was not found.
Provider_unknown_failure=Stored procedure call failed.
Provider_role_already_exists=The role '{0}' already exists.
Profile_default_provider_not_specified=The default profile provider not specified.
API_not_supported_at_this_level=This API is not supported at this trust level.
Profile_bad_name=The property name specified is invalid.
Profile_bad_group=The specified group name: {0} of this property is invalid.
;API_supported_for_UNC_Apps=This API is not supported for UNC applications.

Def_membership_provider_not_specified=Default Membership Provider must be specified.
Def_membership_provider_not_found=Default Membership Provider could not be found.
Provider_Error=The Provider encountered an unknown error.
Roles_feature_not_enabled=The Role Manager feature has not been enabled.
Def_role_provider_not_specified=Default Role Provider must be specified.
Def_role_provider_not_found=Default Role Provider could not be found.
Membership_PasswordRetrieval_not_supported=This Membership Provider has not been configured to support password retrieval.
;Membership_email_is_invalid=The E-mail supplied is invalid.
Membership_UserNotFound=The user was not found.
Membership_WrongPassword=The password supplied is wrong.
Membership_WrongAnswer=The password-answer supplied is wrong.
Membership_InvalidPassword=The password supplied is invalid.  Passwords must conform to the password strength requirements configured for the default provider.
Membership_InvalidQuestion=The password-question supplied is invalid.  Note that the current provider configuration requires a valid password question and answer.  As a result, a CreateUser overload that accepts question and answer parameters must also be used.
Membership_InvalidAnswer=The password-answer supplied is invalid.
Membership_InvalidUserName=The username supplied is invalid.
Membership_InvalidEmail=The E-mail supplied is invalid.
Membership_DuplicateUserName=The username is already in use.
Membership_DuplicateEmail=The E-mail address is already in use.
Membership_UserRejected=The User was rejected.
Membership_InvalidProviderUserKey=The provider user key supplied is invalid.  It must be of type System.Guid.
Membership_DuplicateProviderUserKey=The provider user key is already in use.
Membership_AccountLockOut=The user account has been locked out.
Membership_Custom_Password_Validation_Failure=The custom password validation failed.
MinRequiredNonalphanumericCharacters_can_not_be_more_than_MinRequiredPasswordLength=The minRequiredNonalphanumericCharacters cannot be greater than minRequiredPasswordLength.
;Can_not_create_file_in_lower_trust=The provider does not support automatically creating the application services database at the current trust level.

ADMembership_Description=Active Directory membership provider.
ADMembership_InvalidConnectionProtection=The specified connection protection type, '{0}', is invalid.
ADMembership_Connection_username_must_not_be_empty=Connection-username must not be empty.
ADMembership_Connection_password_must_not_be_empty=Connection-password must not be empty.
ADMembership_Schema_mappings_must_not_be_empty=Schema mapping for property '{0}' must not be empty.
ADMembership_Username_and_password_reqd=If either of the properties connection-username or connection-password is specified, the other must also be specified.
ADMembership_PasswordReset_without_question_not_supported=The Active Directory membership provider does not support password reset without password question and answer.
ADMembership_PasswordQuestionAnswerMapping_not_specified=Attribute schema mappings for password-question and password-answer must be specified to enable password question and answer functionality.
ADMembership_Provider_not_initialized=The Active Directory Membership Provider has not been initialized.
ADMembership_PasswordQ_not_supported=Schema mapping for password question has not been specified.
ADMembership_PasswordA_not_supported=Schema mapping for password answer has not been specified.
ADMembership_PasswordRetrieval_not_supported_AD=The Active Directory membership provider does not support password retrieval.
;ADMembership_Value_must_be_integer=Value must be positive integer for property '{0}'.
ADMembership_Username_mapping_invalid=The property 'attributeMapUsername' must be mapped to 'sAMAccountName' or 'userPrincipalName'.
ADMembership_Username_mapping_invalid_ADAM=The property 'attributeMapUsername' must be mapped to 'userPrincipalName'.
ADMembership_Wrong_syntax='{0}' must be mapped to a schema attribute of type '{1}'.
ADMembership_MappedAttribute_does_not_exist=The attribute '{0}' specified as a schema mapping for '{1}' does not exist.
ADMembership_MappedAttribute_does_not_exist_on_user=The attribute '{0}' specified as a schema mapping for '{1}' is not an attribute of the user class.
ADMembership_OnlyLdap_supported=Only LDAP connection strings are supported against Active Directory and ADAM.
ADMembership_ServerlessADsPath_not_supported=Serverless LDAP connection strings are not supported by the Active Directory membership provider.
;ADMembership_ServerDown_or_NoSsl=The server is not operational or is not configured for SSL.
ADMembership_Secure_connection_not_established=Unable to establish secure connection with the server
ADMembership_Ssl_connection_not_established=Unable to establish secure connection with the server using SSL.
ADMembership_DefContainer_not_specified=A default container (defaultNamingContext) has not been set for the specified server.
ADMembership_DefContainer_does_not_exist=The default users container does not exist in the specified domain.
ADMembership_Container_must_be_specified=For ADAM a container must be specified in the connection string.
ADMembership_Valid_Targets=This provider can target only Active Directory and ADAM directories.
;ADMembership_default_domain_not_found=Unable to get domain of the machine: error code = {0}.
ADMembership_OnlineUsers_not_supported=This Active Directory membership provider does not support the notion of online users.
;ADMembership_ADAM_SignAndSeal_not_supported=SignAndSeal connectionProtection type is not supported for ADAM.
;ADMembership_Cn_SignAndSeal_not_supported=SignAndSeal connectionProtection type is not supported when username is mapped to 'cn'.
ADMembership_UserProperty_not_supported=The property '{0}' is not supported by the Active Directory membership provider.
;ADMembership_UserProperty_not_writeable=Writing to the property '{0}' is not supported by the Active Directory membership provider.
ADMembership_Provider_SearchMethods_not_supported=The Active Directory membership provider has not been configured to support search methods.
ADMembership_No_ADAM_Partition=Unable to find the ADAM application partition for the specified container.
ADMembership_Setting_UserId_not_supported=The Active Directory membership provider does not support setting of the providerUserKey attribute.
ADMembership_Default_Creds_not_supported=Default credentials are not supported when the connection protection is set to None.
ADMembership_Container_not_superior=User objects cannot be created in the specified container.
ADMembership_Container_does_not_exist=The container specified in the connection string does not exist.
ADMembership_Property_not_found_on_object=Property '{0}' on object '{1}' not found.
ADMembership_Property_not_found=Property '{0}' not found.
ADMembership_BadPasswordAnswerMappings_not_specified=Attribute schema mappings for bad password answer tracking must be specified to enable password reset functionality.
ADMembership_Unknown_Error=Unknown error ({0})
ADMembership_GCPortsNotSupported=LDAP connections on the GC port are not supported against Active Directory.
;ADMembership_Can_not_use_encrypted_data_with_autogen_keys=You must specify a non-autogenerated machine key to store data in the encrypted format. Change machineKey configuration to use a non-autogenerated decryption key.
ADMembership_attribute_not_single_valued=Property '{0}' must be mapped to a single valued schema attribute.
ADMembership_mapping_not_unique=Property '{0}' cannot be mapped to schema attribute '{1}' as the attribute is already in use.
ADMembership_InvalidProviderUserKey=The provider user key supplied is invalid. It must be of type System.Security.Principal.SecurityIdentifier.
ADMembership_unable_to_contact_domain=The specified domain or server could not be contacted.
ADMembership_unable_to_set_password_port=Unable to set the password port and password method.
ADMembership_invalid_path=The specified connection string does not represent a valid LDAP adspath.
ADMembership_Setting_ApplicationName_not_supported=The Active Directory membership provider does not support setting of the ApplicationName property.
ADMembership_Parameter_too_long=The parameter '{0}' is too long.
ADMembership_No_secure_conn_for_password=Unable to setup a secure connection for setting/changing the password.
ADMembership_Generated_password_not_complex=Unable to generate a password that satisfies the required password complexity policy.
ADMembership_UPN_contains_backslash=Usernames must not contain '\\' when mapped to 'userPrincipalName'.

Windows_Token_API_not_supported=The configured Role Provider (WindowsTokenRoleProvider) relies upon Windows authentication to determine the groups that the user is allowed to be a member of. ASP.NET Role Manager cannot be used to manage Windows users and groups. Please use the SQLRoleProvider if you would like to support custom user/role assignment.
;Profile_Property_already_defined=Profile property has already been defined.
;Parameter_must_be_null_for_Access=The parameter '{0}' must be null for Access provider.
Parameter_can_not_contain_comma=The parameter '{0}' must not contain commas.
Parameter_can_not_be_empty=The parameter '{0}' must not be empty.
Parameter_too_long=The parameter '{0}' is too long: it must not exceed {1} chars in length.
Parameter_array_empty=The array parameter '{0}' should not be empty.
Parameter_collection_empty=The collection parameter '{0}' should not be empty.
Parameter_duplicate_array_element=The array '{0}' should not contain duplicate values.
Membership_password_too_long=The password is too long: it must not exceed 128 chars after encrypting.
Provider_this_user_not_found=The user '{0}' was not found.
Provider_this_user_already_in_role=The user '{0}' is already in role '{1}'.
Provider_this_user_already_not_in_role=The user '{0}' is already not in role '{1}'.
;Profile_Property_name_invalid=The property name is invalid. It must contain only letters and digits, and must start with a letter.
SaveAs_requires_rooted_path=The SaveAs method is configured to require a rooted path, and the path '{0}' is not rooted.
;Provider_already_added=A provider with name '{0}' has already been added.
;File_name_can_not_contain_dot_dot=File names in Access provider connection strings cannot contain '..'
;AccessFile_is_not_valid=Unable to access database file '{0}'. The file is either inaccessible due to security, or the file does not exist. Note that Access databases are not supported for providers when running with application impersonation under either IIS 5.x or IIS 5.0 isolation mode on Windows Server 2003. Error message OleDb: '{1}'.
;AccessFile_is_not_valid_2=Unable to access database file. The file is either inaccessible due to security, or the file does not exist. Note that Access databases are not supported for providers when running with application impersonation under either IIS 5.x or IIS 5.0 isolation mode on Windows Server 2003.
Connection_name_not_specified=The attribute 'connectionStringName' is missing or empty.
Connection_string_not_found=The connection name '{0}' was not found in the applications configuration or the connection string is empty.
AppSetting_not_found=The application setting '{0}' was not found in the applications configuration.
AppSetting_not_convertible=Could not convert the AppSetting '{0}' to the type '{1}' on property '{2}'.
;Could_not_create_provider=Provider could not be instantiated.
Provider_must_implement_type=Provider must implement the class '{0}'.
;AccessFile_is_not_writtable=The Access database file '{0}' cannot be written to by the current identity ('{1}'). Message from the OleDbConnection: '{2}'.
Feature_not_supported_at_this_level=This feature is not supported at the configured trust level.
;Connection_string_can_not_be_specified_at_this_level=The configured trust level requires that a filename must be specified. A connection string cannot be specified.
;Full_filename_can_not_be_specified_at_this_level=The configured trust level requires that a filename relative to the application install root be specified. A full file path cannot be specified.
Annoymous_id_module_not_enabled=The Profile property '{0}' allows anonymous users to store data. This requires that the AnonymousIdentification feature be enabled.
Anonymous_ClearAnonymousIdentifierNotSupported=ClearAnonymousIdentifier is not supported when the feature is disabled or the user is anonymous.
;Access_File_not_found=The Access mdb file for this provider was not found.
Anonymous_id_too_long=The Anonymous Id specified is too long. It can be at most 128 chars long.
Anonymous_id_too_long_2=The Anonymous Id specified is too long. It can be at most 512 chars long after encoding.
;Profile_property_not_found=This profile property has not been defined.
;Jet_Not_Available=Access provider is not supported on this version of the operating system.  Please change the configuration to utilize a different provider.
;Must_specify_answer=The password-question answer must be supplied.
Profile_could_not_create_type=Attempting to load this property's type resulted in the following error: {0}
DataAccessError_CanNotCreateDataDir_Title=Access denied creating App_Data subdirectory
DataAccessError_CanNotCreateDataDir_Description=For security reasons, the identity '{0}' (under which this web application is running), does not have permissions to create the App_Data subdirectory within the application root directory.
DataAccessError_CanNotCreateDataDir_Description_2=For security reasons, the identity under which this web application is running, does not have permissions to create the App_Data subdirectory within the application root directory.
DataAccessError_MiscSectionTitle=To grant the necessary permissions, follow these steps
DataAccessError_MiscSection_1=In File Explorer, navigate to your application's directory.
DataAccessError_MiscSection_2=Right-click on the "App_Data" subdirectory, within your application and select the "Properties" menu item.
DataAccessError_MiscSection_2_CanNotCreateDataDir=Create a folder named "App_Data": Right-click, choose "New" menu item, choose "Folder" sub-menu item, and then type "App_Data" (without quotes).
DataAccessError_MiscSection_2_CanNotWriteToDBFile_a=Navigate to the "App_Data" subdirectory.
DataAccessError_MiscSection_2_CanNotWriteToDBFile_b=Right-click on the Access Database file (by default, the file is named "ASPNetDB.mdb") and select the "Properties" menu item.
DataAccessError_MiscSection_3=In the "Properties" dialog box that opens,  select the "Security" tab.
DataAccessError_MiscSection_4=In the "Enter the object names to select" box, enter '{0}' (without quotes).
DataAccessError_MiscSection_4_2=In the "Enter the object names to select" box, enter name of the identity used to run this web application.
DataAccessError_MiscSection_ClickAdd=Click Add
DataAccessError_MiscSection_ClickOK=Click OK
DataAccessError_MiscSection_5=Make sure the account name is selected and then under Allow, check Write
SqlExpressError_CanNotWriteToDataDir_Title=Access denied creating Microsoft SQL Express Database file within App_Data subdirectory
SqlExpressError_CanNotWriteToDbfFile_Title=Access denied writing to Microsoft SQL Express Database file
SqlExpressError_CanNotWriteToDataDir_Description=For security reasons, the identity '{0}' (under which this web application is running), does not have permissions to create the SQL Express Database file within App_Data subdirectory.
SqlExpressError_CanNotWriteToDbfFile_Description=For security reasons, the identity '{0}' (under which this web application is running), does not have permissions to write to the SQL Express Database file configured for this application.
SqlExpressError_CanNotWriteToDataDir_Description_2=For security reasons, the identity under which this web application is running, does not have permissions to create the SQL Express Database file within App_Data subdirectory.
SqlExpressError_CanNotWriteToDbfFile_Description_2=For security reasons, the identity under which this web application is running, does not have permissions to write to the SQL Express Database file configured for this application.
SqlExpressError_Description_1=ASP.NET stores the Microsoft SQL Express Database file used for services such as Membership and Profile in the App_Data subdirectory of your application.
;AccessError_CanNotWriteToDataDir_Title=Access denied creating Microsoft Access Database file within App_Data subdirectory
;AccessError_CanNotWriteToMdbFile_Title=Access denied writing to Microsoft Access Database file
;AccessError_CanNotWriteToDataDir_Description=For security reasons, the identity '{0}' (under which this web application is running), does not have permissions to create the Access Database file within App_Data subdirectory.
;AccessError_CanNotWriteToMdbFile_Description=For security reasons, the identity '{0}' (under which this web application is running), does not have permissions to write to the Access Database file configured for this application.
;AccessError_CanNotWriteToDataDir_Description_2=For security reasons, the identity under which this web application is running, does not have permissions to create the Access Database file within App_Data subdirectory.
;AccessError_CanNotWriteToMdbFile_Description_2=For security reasons, the identity under which this web application is running, does not have permissions to write to the Access Database file configured for this application.
;AccessError_Description_1=ASP.NET stores the Microsoft Access Database file used for services such as Membership and Profile in the App_Data subdirectory of your application.
;Access_File_can_not_start_with_this_char=File names in Access provider connection strings cannot start with '{0}'.
Membership_password_length_incorrect=Password length specified must be between 1 and 128 characters.
Membership_min_required_non_alphanumeric_characters_incorrect=The value specified in parameter '{0}' should be in the range from zero to the value specified in the password length parameter.
Membership_more_than_one_user_with_email=More than one user has the specified e-mail address.
Password_too_short=The length of parameter '{0}' needs to be greater or equal to '{1}'.
Password_need_more_non_alpha_numeric_chars=Non alpha numeric characters in '{0}' needs to be greater than or equal to '{1}'.
Password_does_not_match_regular_expression=The parameter '{0}' does not match the regular expression specified in config file.
Not_configured_to_support_password_resets=This provider is not configured to allow password resets. To enable password reset, set enablePasswordReset to "true" in the configuration file.
Property_not_serializable=The type for the property '{0}' cannot be serialized using the binary serializer, since the type is not marked as serializable.
Connection_not_secure_creating_secure_cookie=The application is configured to issue secure cookies. These cookies require the browser to issue the request over SSL (https protocol). However, the current request is not over SSL.
Profile_anonoymous_not_allowed_to_set_property=This property cannot be set for anonymous users.
;Profile_empty_group=A property group must contain one or more properties.
AuthStore_Application_not_found=The application was not found in the authorization store.
AuthStore_Scope_not_found=The scope was not found in the application.
AuthStoreNotInstalled_Title=The authorization store component is not installed
AuthStoreNotInstalled_Description=The AuthorizationStoreRoleProvider requires the authorization store components to be installed on the machine. The authorization store components are only installed and available by default on Windows Server 2003. Currently it appears that either the components have not been installed, or that the primary interop assembly has not been registered in the global assembly cache (GAC).  Both of these steps can be accomplished by downloading the Authorization Manager installation package from the web for your operating system, and installing the package on the machine.  Installations for other operating systems can be found by navigating to http://download.microsoft.com and searching with either the keyword "AzMan" or the keywords "authorization manager".
AuthStore_policy_file_not_found=The policy file '{0}' in the connection string could not be found.
Wrong_profile_base_type=The type specified in the configuration property "inherits" must inherit from the type System.Web.Profile.HttpProfileBase
Command_not_recognized=The command was not recognized.
Configuration_for_path_not_found=The configuration for virtual path '{0}' and site '{1}' cannot be opened.
Configuration_for_physical_path_not_found=The configuration for physical path '{0}' cannot be opened.
Configuration_for_machine_config_not_found=The configuration for machine.config cannot be opened.
Configuration_Section_not_found=The configuration section '{0}' was not found.
;Configuration_SectionGroup_not_found=The configuration section-group '{0}' was not found.
RSA_Key_Container_not_found=The RSA key container was not found.
RSA_Key_Container_access_denied=Could not access the RSA key container. Make sure that the ACLs on the container allow you to access it.
RSA_Key_Container_already_exists=The RSA key container already exists.

SqlError_Connection_String=An error occurred while attempting to initialize a System.Data.SqlClient.SqlConnection object. The value that was provided for the connection string may be wrong, or it may contain an invalid syntax.
;SqlExpress_File_Not_Valid=Unable to access SQL Express database file '{0}'. The file is either inaccessible due to security, or the file does not exist. Error message SqlClient: '{1}'.
;SqlExpress_File_Not_Valid_2=Unable to access SQL Express database file.
;SqlExpress_Connection_String_Incorrect=The SqlExpress connection string is incorrect.
SqlExpress_MDF_File_Auto_Creation_MiscSectionTitle=SQLExpress database file auto-creation error
SqlExpress_MDF_File_Auto_Creation=The connection string specifies a local Sql Server Express instance using a database location within the application's App_Data directory.  The provider attempted to automatically create the application services database because the provider determined that the database does not exist. The following configuration requirements are necessary to successfully check for existence of the application services database and automatically create the application services database:
SqlExpress_MDF_File_Auto_Creation_1=If the application is running on either Windows 7 or Windows Server 2008R2, special configuration steps are necessary to enable automatic creation of the provider database.  Additional information is available at:  http://go.microsoft.com/fwlink/?LinkId=160102. If the application's App_Data directory does not already exist, the web server account must have read and write access to the application's directory.  This is necessary because the web server account will automatically create the App_Data directory if it does not already exist.
SqlExpress_MDF_File_Auto_Creation_2=If the application's App_Data directory already exists, the web server account only requires read and write access to the application's App_Data directory.  This is necessary because the web server account will attempt to verify that the Sql Server Express database already exists within the application's App_Data directory.  Revoking read access on the App_Data directory from the web server account will prevent the provider from correctly determining if the Sql Server Express database already exists.  This will cause an error when the provider attempts to create a duplicate of an already existing database.  Write access is required because the web server account's credentials are used when creating the new database.
SqlExpress_MDF_File_Auto_Creation_3=Sql Server Express must be installed on the machine.
SqlExpress_MDF_File_Auto_Creation_4=The process identity for the web server account must have a local user profile.  See the readme document for details on how to create a local user profile for both machine and domain accounts.
SqlExpress_file_not_found_in_connection_string=SQL Express filename was not found in the connection string.
SqlExpress_file_not_found=The SQL Express filename specified was not found.

; State

;No_Session_Config_In_subdir=SessionState configuration can only be set in machine or application configuration.
Invalid_value_for_sessionstate_stateConnectionString=The <sessionState> stateConnectionString is invalid. It must have the format tcpip=<server>:<port>, where <server> is a valid IPv4 address, a machine name using only ASCII characters, or a valid IPv6 address enclosed within square brackets, and <port> is an unsigned integer ranging from 0 to 65535 (e.g., tcpip=127.0.0.1:42424, tcpip=localhost:42424, or tcpip=[::1]:42424).
No_database_allowed_in_sqlConnectionString=The sqlConnectionString attribute or the connection string it refers to cannot contain the connection options 'Database', 'Initial Catalog' or 'AttachDbFileName'. In order to allow this, allowCustomSqlDatabase attribute must be set to true and the application needs to be granted unrestricted SqlClientPermission. Please check with your administrator if the application does not have this permission.
No_database_allowed_in_sql_partition_resolver_string=The SQL connection string (server='{1}', database='{2}') returned by an instance of the IPartitionResolver type '{0}' cannot contain the connection options 'Database', 'Initial Catalog' or 'AttachDbFileName'. In order to allow this, allowCustomSqlDatabase attribute must be set to true and the application needs to be granted unrestricted SqlClientPermission. Please check with your administrator if the application does not have this permission.
Error_parsing_session_sqlConnectionString=Error parsing <sessionState> sqlConnectionString attribute: {0}
Error_parsing_sql_partition_resolver_string=Error parsing the SQL connection string returned by an instance of the IPartitionResolver type '{0}': {1}
Timeout_must_be_positive=The argument to SetTimeout must be greater than 0.
Cant_make_session_request=Unable to make the session state request to the session state server. Please ensure that the ASP.NET State service is started and that the client and server ports are the same.  If the server is on a remote machine, please ensure that it accepts remote requests by checking the value of HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\aspnet_state\\Parameters\\AllowRemoteConnection.  If the server is on the local machine, and if the before mentioned registry value does not exist or is set to 0, then the state server connection string must use either 'localhost' or '127.0.0.1' as the server name.
Cant_make_session_request_partition_resolver=Unable to make the session state request to the session state server. The connection string (server='{1}', port='{2}') was returned by an instance of the IPartitionResolver type '{0}'. Please ensure that the ASP.NET State service is started and that the client and server ports are the same.  If the server is on a remote machine, please ensure that it accepts remote requests by checking the value of HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\aspnet_state\\Parameters\\AllowRemoteConnection.  If the server is on the local machine, and if the before mentioned registry value does not exist or is set to 0, then the state server connection string must use either 'localhost' or '127.0.0.1' as the server name.
Need_v2_State_Server=Unable to use session state server because this version of ASP.NET requires session state server version 2.0 or above.
Need_v2_State_Server_partition_resolver=Unable to use session state server because this version of ASP.NET requires session state server version 2.0 or above. The connection string (server='{1}', port='{2}') was returned by an instance of the IPartitionResolver type '{0}'.
Cant_connect_sql_session_database=Unable to connect to SQL Server session database.
Cant_connect_sql_session_database_partition_resolver=Unable to connect to SQL Server session database. The connection string (server='{1}', database='{2}') was returned by an instance of the IPartitionResolver type '{0}'.
Login_failed_sql_session_database=Failed to login to session state SQL server for user '{0}'.
Bad_partition_resolver_connection_string=Session state cannot connect to the server because a null connection string was returned by an instance of the IPartitionResolver type '{0}'.
Bad_state_server_request=Unable to make the session state request to the session state server. The session state server is running, but the request is not formatted correctly.
Bad_state_server_request_partition_resolver=Unable to make the session state request to the session state server. The session state server is running, but the request is not formatted correctly. The connection string (server='{1}', port='{2}') was returned by an instance of the IPartitionResolver type '{0}'.
State_Server_detailed_error=Unable to make the session state request to the session state server. Details: last phase='{0}', error code={1}, size of outgoing data={2}
State_Server_detailed_error_phase0=Initialization
State_Server_detailed_error_phase1=Connecting to the state server
State_Server_detailed_error_phase2=Sending request to the state server
State_Server_detailed_error_phase3=Reading response from the state server
Error_parsing_state_server_partition_resolver_string=Error parsing the state server connection string returned by an instance of the IPartitionResolver type '{0}'. The connection string must have the format tcpip=<server>:<port>, where <server> is either a valid IP address or a machine name using only ASCII characters, and <port> is an unsigned integer ranging from 0 to 65535.
SessionIDManager_uninit=SessionIDManager is not initialized. Call Initialize() method first.
SessionIDManager_InitializeRequest_not_called=ISessionIDManager.InitializeRequest has not been called for this request yet. In each request, please first call ISessionIDManager.InitializeRequest before calling other methods.

Cant_save_session_id_because_response_was_flushed=Session state has created a session id, but cannot save it because the response was already flushed by the application.
Cant_save_session_id_because_id_is_invalid=Cannot save the session id because it is invalid.  Session ID={0}

Cant_serialize_session_state=Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode.
Null_value_for_SessionStateItemCollection=The SessionStateStoreData returned by ISessionStateStore has a null value for Items.
;Invalid_child_node=Invalid child node is found in <sessionState>.
Session_id_too_long=The session ID is longer than the maximum limit of {0} characters. Session ID={1}
Need_v2_SQL_Server=Unable to use SQL Server because either ASP.NET version 2.0 Session State is not installed on the SQL server, or ASP.NET does not have permission to run the dbo.TempGetVersion stored procedure. If the ASP.NET Session State schema has not been installed, please install ASP.NET Session State SQL Server version 2.0 or above. If the schema has been installed, please grant execute permission on the dbo.TempGetVersion stored procedure to either the ASP.NET application pool identity, or the Sql Server user specified in the sqlConnectionString attribute.
Need_v2_SQL_Server_partition_resolver=Unable to use SQL Server because either ASP.NET version 2.0 Session State is not installed on the SQL server, or ASP.NET does not have permission to run the dbo.TempGetVersion stored procedure. If the ASP.NET Session State schema has not been installed, please install ASP.NET Session State SQL Server version 2.0 or above. If the schema has been installed, please grant execute permission on the dbo.TempGetVersion stored procedure to either the ASP.NET application pool identity, or the Sql Server user specified in the sqlConnectionString attribute. The connection string (server='{1}', database='{2}') was returned by an instance of the IPartitionResolver type '{0}'.
Cant_have_multiple_session_module=Another component has already added an HttpSessionState to the context. Please make sure only one session state module should be registered.
Missing_session_custom_provider=The custom session state store provider '{0}' is not found.
Invalid_session_custom_provider=The custom session state store provider name '{0}' is invalid.
Invalid_session_state=The session state information is invalid and might be corrupted.
Invalid_cache_based_session_timeout=For InProc and StateServer modes, the session timeout value cannot be larger than one year.
Cant_use_partition_resolve=Cannot use 'partitionResolver' unless the mode is 'StateServer' or 'SQLServer'.

; Cross Page Posting

Previous_Page_Not_Authorized=The current user is not allowed to access the previous page.

; Custom errors

;Customerrors_invalid_statuscode=The 'statusCode' is invalid. It must be between 100 and 999.

; Util


;Could_not_create_object=Could not create '{0}' object.

Empty_path_has_no_directory=Empty path has no directory.
Path_must_be_rooted=The virtual path '{0}' is not rooted.
Cannot_exit_up_top_directory=Cannot use a leading .. to exit above the top directory.
Physical_path_not_allowed='{0}' is a physical path, but a virtual path was expected.
Invalid_vpath='{0}' is not a valid virtual path.
Cannot_access_AspCompat=Cannot access ASP compatibility mode.
Apartment_component_not_allowed=The component '{0}' cannot be created.  Apartment threaded components can only be created on pages with an <%@ Page aspcompat=true %> page directive.
Error_onpagestart=An error was encountered while calling OnStartPage in ASP compatibility mode.
Cannot_execute_transacted_code=Cannot execute transacted code.

Cannot_post_workitem=Cannot post work item to thread pool.
Cannot_call_ISAPI_functions=Hosting platform does not support ISAPI functions.
Bad_attachment=Invalid mail attachment '{0}'.
Wrong_SimpleWorkerRequest=Invalid use of SimpleWorkerRequest constructor. Application path cannot be overridden in this context. Please use SimpleWorkerRequest constructor that does not override the application path.
Atio2BadString=Unable to convert two characters in the string '{0}' to a number starting at offset {1}.
MakeMonthBadString=Unable to convert characters in the string '{0}' to a month starting at offset {1}.
UtilParseDateTimeBad='{0}' was not of the correct format. Expected a string to be of the form 'Thursday, 10-Jun-93 01:29:59 GMT', 'Thu, 10 Jan 1993 01:29:59 GMT', or 'Wed Jun 09 01:29:59 1993 GMT'.

; Web Forms

; Mail
SmtpMail_not_supported_on_Win7_and_higher=System.Web.Mail.SmtpMail is not supported on this version of Windows.  The recommended alternative is System.Net.Mail.SmtpClient.

; Build Manager
Illegal_special_dir=The file '{0}' is in the special directory '{1}', which is not allowed.
Precomp_stub_file=This is a marker file generated by the precompilation tool, and should not be deleted!
Already_precomp=This application is already precompiled.
Cant_delete_dir=The target directory could not be deleted. Please delete it manually, or choose a different target.
Dir_not_empty=The target directory is not empty. Please delete it manually, or choose a different target.
Dir_not_empty_not_precomp=The target directory is not empty, and does not appear to contain a previously compiled application. Please delete it manually, or choose a different target.
Cant_update_precompiled_app=The file '{0}' has not been pre-compiled, and cannot be requested.
Too_early_for_webfile=The file '{0}' cannot be processed because the code directory has not yet been built.
Bar_dir_in_precompiled_app=The directory '{0}' is not allowed because the application is precompiled.
Assembly_already_loaded=The assembly '{0}' is already loaded in another appdomain. Setting <deployment retail="true" /> in machine.config can help solve this issue.
Success_precompile=The application was successfully precompiled.
Profile_not_precomped=This application was precompiled with personalization turned off, but it appears to have been turned on after the precompilation, which is not supported.
Both_culture_and_language=The file '{0}' cannot specify both a language and a culture.
Inconsistent_language=The files '{0}' and '{1}' use a different language, which is not allowed since they need to be compiled together.
GetGeneratedSourceFile_Directory_Only=The virtual path '{0}' does not point to a directory; only existing directories are allowed.
Duplicate_appinitialize=The AppInitialize method is defined both in '{0}' and in '{1}'.
Virtual_codedir=The path '{0}' maps to a directory outside this application, which is not supported.
Unknown_buildprovider_extension=There is no build provider registered for the extension '{0}'. You can register one in the <compilation><buildProviders> section in machine.config or web.config. Make sure is has a BuildProviderAppliesToAttribute attribute which includes the value '{1}' or 'All'.
Directory_progress=Building directory '{0}'.
Bad_Base_Class_In_Code_File=Make sure that the class defined in this code file matches the 'inherits' attribute, and that it extends the correct base class (e.g. Page or UserControl).
Reference_assemblies_not_found=Reference assemblies for target .NET Framework version not found; please ensure they are installed, or select a valid target version.
Higher_dependencies=The following assembly has dependencies on a version of the .NET Framework that is higher than the target and might not load correctly during runtime causing a failure: {0}. The dependencies are: {1}. You should either ensure that the dependent assembly is correct for the target framework, or ensure that the target framework you are addressing is that of the dependent assembly.
Invalid_target_framework_version=The value for the {0} attribute is invalid: '{1}'. Error: {2}.
Invalid_lower_target_version=The '{0}' attribute in the <compilation> element of the Web.config file is used only to target version 4.0 and later of the .NET Framework (for example, '<compilation {0}="4.0">'). If you are compiling this Web application for a version of the .NET Framework earlier than 4.0, remove the '{0}' attribute from the <compilation> element of the Web.config file.
Invalid_higher_target_version=The '{0}' attribute in the <compilation> element of the Web.config file is used only to target version 4.0 and later of the .NET Framework (for example, '<compilation {0}="4.0">'). The '{0}' attribute currently references a version that is later than the installed version of the .NET Framework. Specify a valid target version of the .NET Framework, or install the required version of the .NET Framework.
Compiler_version_20_35_required=In the <compilation> section of the Web.config file, the value for the 'compilerVersion' attribute in the provider options must be 'v2.0' if you are targeting version 2.0 or 3.0 of the .NET Framework, or must be 'v3.5' if you are targeting version 3.5 of the .NET Framework. If you are compiling this Web application for version 4.0 or later of the .NET Framework, the '{0}' attribute is required in the <compilation> element of the Web.config file instead (for example, '<compilation {0}="4.0">').
Compiler_version_40_required=The value for the 'compilerVersion' attribute in the provider options must be 'v4.0' or later if you are compiling for version 4.0 or later of the .NET Framework. To compile this Web application for version 3.5 or earlier of the .NET Framework, remove the '{0}' attribute from the <compilation> element of the Web.config file.
Assembly_not_found_in_profile=The following assembly could not be resolved: '{0}'. The assembly is excluded from the target framework profile{1}. If this reference is required by your code, you may get compilation errors. Please either remove this reference, or ensure that the target framework profile you are addressing contains the assembly.
Downlevel_requires_35=The <compilation> element of the Web.config file does not have a 'targetFramework' attribute. Therefore ASP.NET assumes that the Web application targets the .NET Framework version 3.5 or earlier, but ASP.NET could not find files that are installed with the .NET Framework version 3.5 that it needs to compile. If you are compiling this Web application for version 3.5 or earlier of the .NET Framework, make sure that version 3.5 of the .NET Framework is installed. If you are compiling this Web application for version 4 or later of the .NET Framework, add the 'targetFramework' attribute to the <compilation> element of the Web.config file (for example, '<compilation targetFramework="4.0">').
Invalid_PreApplicationStartMethodAttribute_value=The method specified by the PreApplicationStartMethodAttribute on assembly '{0}' cannot be resolved. Type: '{1}', MethodName: '{2}'. Verify that the type is public and the method is public and static (Shared in Visual Basic).
Method_can_only_be_called_during_pre_start_init=This method can only be called during the application's pre-start initialization phase. Use PreApplicationStartMethodAttribute to declare a method that will be invoked in that phase.
Method_cannot_be_called_during_pre_start_init=This method cannot be called during the application's pre-start initialization phase.
Pre_application_start_init_method_threw_exception=The pre-application start initialization method {0} on type {1} threw an exception with the following error message: {2}.

; Web Forms
Cant_use_default_items_and_filtered_collection=You cannot use {0}'s default collection '{1}' without the property tags when using a filtered version of the same collection.
Children_not_supported_on_not_controls=Child objects are not supported for objects that are not controls.
Code_not_supported_on_not_controls=Code blocks are not supported in this context.
Code_not_allowed=Code blocks are not allowed in this file.
Compilmode_not_allowed=The compilation mode cannot be set to 'Never', because an earlier construct in the page requires compilation.
Include_not_allowed=The include file '{0}' is not allowed in this page.
Attrib_not_allowed=The attribute '{0}' is not allowed in this page.
Directive_not_allowed=The directive '{0}' is not allowed in this page.
Event_not_allowed=The event handler '{0}' is not allowed in this page.
Literal_content_not_allowed=Literal content ('{1}') is not allowed within a '{0}'.
Literal_content_not_match_property=Content ('{1}') does not match any properties within a '{0}', make sure it is well-formed.
Too_many_controls=This page allows a limit of {0} controls, and that limit has been exceeded.
Too_many_dependencies=The page '{0}' allows a limit of {1} dependencies (direct or indirect), and that limit has been exceeded.
Too_many_direct_dependencies=The page '{0}' allows a limit of {1} direct dependencies, and that limit has been exceeded.
Invalid_type=Could not load type '{0}'.
Assembly_not_compiled=Could not load the assembly '{0}'. Make sure that it is compiled before accessing the page.
Not_a_src_file='{0}' is not a valid source file.
Ambiguous_type=The type '{0}' is ambiguous: it could come from assembly '{1}' or from assembly '{2}'. Please specify the assembly explicitly in the type name.
Unsupported_filename=The file name '{0}' is not supported.
Cannot_convert_from_to=Cannot convert from '{0}' to '{1}'.
Object_tag_must_have_id=An object tag must have an ID.
Invalid_scope='{0}' is not a valid object scope.
Invalid_progid=Cannot load type with ProgID '{0}'.
Invalid_clsid=Cannot load type with CLASSID '{0}'.
Object_tag_must_have_class_classid_or_progid=An object tag must contain a Class, ClassID or ProgID attribute.
Session_not_enabled=Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive. Please also make sure that System.Web.SessionStateModule or a custom session state module is included in the <configuration>\\<system.web>\\<httpModules> section in the application configuration.
Page_ControlState_ControlCannotBeNull=Cannot register a null control reference to require control state.
Page_theme_not_found=Theme '{0}' cannot be found in the application or global theme directories.
Page_theme_invalid_name='{0}' is not a valid theme name.
Page_theme_default_theme_already_defined=Type {0} already has a default theme defined.
Page_theme_skinID_already_defined=SkinId '{0}' is already used by another control skin of the same type.
;Page_theme_skinID_not_found=SkinId '{0}' cannot be found for control of type {1}.
Page_theme_requires_page_header=Using themed css files requires a header control on the page. (e.g. <head runat="server" />).
Page_theme_only_controls_allowed=This object cannot be themed. Only controls of type System.Web.UI.Control are allowed at the top-level of a skin file.
Page_theme_skin_file=skin file
Page_Title_Requires_Head=Using the Title property of Page requires a header control on the page. (e.g. <head runat="server" />).
Page_Description_Requires_Head=Using the Description property of Page requires a header control on the page. (e.g. <head runat="server" />).
Page_Keywords_Requires_Head=Using the Keywords property of Page requires a header control on the page. (e.g. <head runat="server" />).
DataBoundLiterals_cant_bind=A call to Bind must be assigned to a property of a control inside a template.
TwoWayBinding_requires_ID=The {0} control with a two-way databinding to field {1} must have an ID.
NoCompileBinding_requires_ID=The {0} control with a databinding to field {1} must have an ID when the page's CompilationMode is Never.
BadlyFormattedBind=A call to Bind was not well formatted.  Please refer to documentation for the correct parameters to Bind.
BadlyFormattedBindItem=Invalid code syntax for BindItem.
Property_readonly=The '{0}' property is read-only and cannot be set.
Property_theme_disabled=The '{0}' property of a control type {1} cannot be applied through a control skin.
Type_theme_disabled=The control type '{0}' cannot be themed.
Collection_readonly_Codeblocks=The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).
Parent_collections_readonly=The control collection cannot be modified during DataBind, Init, Load, PreRender or Unload phases.
Property_Not_Persistable=The '{0}' property cannot be set declaratively.
Property_Not_Supported=The '{0}' property is not supported by '{1}' control.
Property_Not_ClsCompliant=The '{0}' property of '{1}' has type '{2}', which is not CLS-compliant.
Property_Set_Not_Supported=Setting the {0} property of {1} is not supported.
ControlBuilder_InvalidLocalizeValue='{0}' is not a valid value for the meta:localize attribute. Only 'true' and 'false' are supported.
meta_localize_error=The meta:resourcekey attribute cannot be used on a tag with meta:localize='false'.
meta_reskey_notallowed=The '{0}' tag cannot have a meta:resourcekey attribute.
meta_localize_notallowed=The '{0}' tag cannot have a meta:localize attribute.
Invalid_enum_value='{0}' is not a valid value for attribute '{1}'. It must be of enum type '{2}'.
Type_not_creatable_from_string=Cannot create an object of type '{0}' from its string representation '{1}' for the '{2}' property.
Invalid_collection_item_type={0} must have items of type '{1}'. '{2}' is of type '{3}'.
Invalid_template_container=Template property '{0}' has a TemplateContainer attribute set to '{1}', but that type does not implement INamingContainer.
Event_handler_cant_be_empty=The {0} event handler cannot be an empty string.
Events_cant_be_filtered=The filter '{0}' cannot be applied to the attribute '{1}' because it is an event handler.
Type_doesnt_have_property=Type '{0}' does not have a public property named '{1}'.
Property_doesnt_have_property=Property '{0}' does not have a property named '{1}'.
;MasterPage_Multiple_content_filter=Multiple contents applied to {0} using filter {1}.
MasterPage_Multiple_content=Multiple contents applied to {0}.
;MasterPage_doesnt_have_property=Master page type '{0}' does not have property named '{1}'.
MasterPage_doesnt_have_contentplaceholder=Cannot find ContentPlaceHolder '{0}' in the master page '{1}', verify content control's ContentPlaceHolderID attribute in the content page.
MasterPage_MasterPageFile=Gets and sets the masterPageFile used by this page.
MasterPage_MasterPage=The MasterPage of this Page.
MasterPage_Circular_Master_Not_Allowed=Circular MasterPageFile references '{0}' are not allowed.
MasterPage_Cannot_ApplyTo_ReadOnly_Collection=MasterPage cannot be applied to this page because the control collection is read-only. If the page contains code blocks, make sure they are placed inside content controls (i.e. <asp:Content runat=server />)
Only_Content_supported_on_content_page=Only Content controls are allowed directly in a content page that contains Content controls.
Content_allowed_in_top_level_only=Content controls have to be top-level controls in a content page or a nested master page that references a master page.
Content_only_allowed_in_content_page=Content controls are allowed only in content page that references a master page.
Content_only_one_contentPlaceHolderID_allowed=Only one ContentPlaceHolderID attribute is allowed.
Invalid_master_base=The file '{0}' is not a valid master page.
Invalid_typeless_reference=The file '{0}' is not a valid here because it doesn't expose a type.
Bad_masterPage_ext=Master page source files must have a .master file extension.
Illegal_Device=The '{0}' attribute does not support the use of device filters.
Illegal_Resource_Builder=The '{0}' attribute does not support the use of expression builders.
Too_many_filters=The string '{0}' contains too many device filters. There can be only one.
Device_unsupported_in_directive=The '{0}' directive does not support the use of device filters on its attributes.
Cannot_add_value_not_collection='{0}' could not be added to the collection. Details: {1}
ControlBuilder_CollectionHasNoAddMethod=The collection '{0}' does not have an Add() method.
Cannot_set_property='{0}' could not be set on property '{1}'.
Cannot_set_recursive_skin=Control '{0}' cannot be declared in a template inside a control skin of the same type with identical skinID.
Cannot_evaluate_expression=Cannot have the expression '{0}' that does not support evaluate in a non-compiled page.
Cannot_init='{0}' could not be initialized. Details: {1}
Unexpected_Directory='{0}' is a directory, not a file.
Circular_include=Circular file references are not allowed.
Unexpected_eof_looking_for_tag=Unexpected end of file looking for </{0}> tag.
Invalid_app_file_content=The content in the application file is not valid.
Invalid_use_of_config_uc=The page '{0}' cannot use the user control '{1}', because it is registered in web.config and lives in the same directory as the page.
Page_scope_in_global_asax=The Page scope is not valid in global.asax.
App_session_only_valid_in_global_asax=The Application and Session scopes are valid only in the global.asax file.
Multiple_forms_not_allowed=A page can have only one server-side Form tag.
Postback_ctrl_not_found=An error has occurred because a control with id '{0}' could not be located or a different control is assigned to the same ID after postback. If the ID is not assigned, explicitly set the ID property of controls that raise postback events to avoid this error.
Ctrl_not_data_handler=Page.RegisterRequiresPostBack can only be called on controls that implement IPostBackDataHandler.
Transfer_not_allowed_in_callback=Server.Transfer cannot be called in a Page callback.
Redirect_not_allowed_in_callback=Response.Redirect cannot be called in a Page callback.
Script_tag_without_src_must_have_content=A script tag without a src attribute must have content.
Unknown_server_tag=Unknown server tag '{0}'.
Ambiguous_server_tag=The server tag '{0}' is ambiguous. Please modify the associated registration that is causing ambiguity and pick a new tag prefix.
Invalid_type_for_input_tag='{0}' is not a valid type for an input tag.
Control_type_not_allowed=The control type '{0}' is not allowed on this page.
Base_type_not_allowed=The base type '{0}' is not allowed for this page.
Reference_not_allowed=The referenced file '{0}' is not allowed on this page.
Id_already_used=The ID '{0}' is already used by another control.
Duplicate_id_used=Multiple controls with the same ID '{0}' were found. {1} requires that controls have unique IDs.
Only_one_directive_allowed=There can be only one '{0}' directive.
Invalid_res_expr='{0}' is not a valid expression string. It needs to use the following syntax: [className,] resourceKey.
Res_not_found=The resource object with key '{0}' was not found.
Res_not_found_with_class_and_key=The resource object with classname '{0}' and key '{1}' was not found.
Invalid_cache_settings_location=The CacheSettings Location value is invalid.
Registered_async_tasks_remain=There are registered asynchronous tasks that were never executed during the page processing.
Async_tasks_wrong_thread=Cannot execute asynchronous tasks in the context of the current thread.
Async_task_timed_out=An asynchronous operation exceeded the page timeout.
ClientScriptManager_RegisterForEventValidation_Too_Early=RegisterForEventValidation can only be called during Render();
ClientScriptManager_InvalidPostBackArgument=Invalid postback or callback argument.  Event validation is enabled using <pages enableEventValidation="true"/> in configuration or <%@ Page EnableEventValidation="true" %> in a page.  For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them.  If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation.
ClientScriptManager_JqueryNotRegistered=WebForms UnobtrusiveValidationMode requires a ScriptResourceMapping for 'jquery'. Please add a ScriptResourceMapping named jquery(case-sensitive).

DesignTimeTemplateParser_ErrorParsingTheme=There was an error parsing the theme:
Duplicate_registered_tag=The '{0}' tag has already been registered.
Empty_attribute=The '{0}' attribute cannot be an empty string.
Space_attribute=The '{0}' attribute cannot contain spaces.
Empty_expression=The expression in a <%= %> or <%# %> block cannot be an empty string.
ControlBuilder_DatabindingRequiresEvent=Databinding expressions are only supported on objects that have a DataBinding event. {0} does not have a DataBinding event.
ControlBuilder_TwoWayBindingNonProperty=Two-way binding is only supported for properties. '{0}' is not a valid property on '{1}'
ControlBuilder_CannotHaveMultipleBoundEntries=Cannot have more than one binding on property '{0}' on '{1}'. Ensure that this property is not bound through an implicit expression, for example, using meta:resourcekey.
ControlBuilder_ExpressionsNotAllowedInThemes=Expressions are not allowed in skin files.
FilteredAttributeDictionary_ArgumentMustBeString=The argument must be a string.
HotSpotCollection_InvalidType=Object is not a HotSpot.
HotSpotCollection_InvalidTypeIndex=Type index is out of bounds.
Invalid_attribute_value='{0}' is not a valid value for attribute '{1}'.
Invalid_boolean_attribute=The '{0}' attribute must be set to 'true' or 'false'.
Invalid_integer_attribute=The '{0}' attribute must be an integer value.
Invalid_nonnegative_integer_attribute=The '{0}' attribute must be a non-negative integer.
Invalid_positive_integer_attribute=The '{0}' attribute must be set to a positive integer value.
Invalid_non_zero_hexadecimal_attribute=The '{0}' attribute must be set to a non-zero hexadecimal value.
Invalid_hash_algorithm_type=The '{0}' hash algorithm type could not be instantiated.
;Invalid_integer_not_in_range_attribute=The '{0}' attribute must be within the range from {1} to {2}
Invalid_enum_attribute=The '{0}' attribute must be one of the following values: {1}.
;Invalid_timespan_attribute=The '{0}' attribute must be in the form [[hh:]mm:]ss or 'Infinite'
Invalid_culture_attribute=The 'Culture' attribute must be set to a non-neutral culture.  Try one of the following: {0}.
Invalid_temp_directory=The '{0}' attribute must be set to a valid absolute path.
Invalid_reference_directive=The Reference directive must have a VirtualPath attribute, and no other attributes.
Invalid_reference_directive_attrib=The file '{0}' is not of a type that can be used here.
Invalid_typeNameOrVirtualPath_directive=The '{0}' directive must have exactly one attribute: TypeName or VirtualPath
Invalid_tagprefix_entry=Invalid or missing attributes found in the tagPrefix entry. For user control, you must also specify 'tagName' and 'src'. For custom control, you must also specify 'namespace', and optionally 'assembly'.
Mapped_type_must_inherit=The specified type '{0}' used for mapping must inherit from the original type '{1}'.
;Time_must_be_at_least_something=The '{0}' attribute must be set to at least '{1}' minute(s).
;Invalid_non_zero_timespan_attribute=The '{0}' attribute must be set to a non-zero time span value in the form [[hh:]mm:]ss or 'Infinite'.

Missing_required_attribute=The '{0}' attribute must be specified on the '{1}' tag.
Missing_required_attributes=The '{0}' or '{1}' attribute must be specified on the '{1}' tag.
Attr_not_supported_in_directive=The '{0}' attribute is not supported by the '{1}' directive.
Attr_not_supported_in_ucdirective=The '{0}' attribute is not supported by the '{1}' directive in a user control.
Attr_not_supported_in_pagedirective=The '{0}' attribute is not supported by the '{1}' directive in a page.
Invalid_attr=The '{0}' attribute is not supported on this directive when a '{1}' attribute is present.
Attrib_parse_error=Error parsing attribute '{0}': {1}
Missing_attr=The directive is missing a '{0}' attribute.
Missing_output_cache_attr=The directive or the configuration settings profile must specify the '{0}' attribute.
Missing_varybyparam_attr=The directive is missing a 'VaryByParam' attribute, which should be set to "none", "*", or a semicolon separated list of values.
Missing_directive=The page must have a <%@ {0} class="MyNamespace.MyClass" ... %> directive.
Unknown_directive=The directive '{0}' is unknown.
Malformed_server_tag=The server tag is not well formed.
Malformed_server_block=The server block is not well formed.
Server_tags_cant_contain_percent_constructs=Server tags cannot contain <% ... %> constructs.
Include_not_allowed_in_server_script_tag=Server includes are not allowed in server script tags.
Incompatible_with_get_bufferless_input_stream=This method or property is not supported after HttpRequest.GetBufferlessInputStream has been invoked.
Incompatible_with_get_buffered_input_stream=This method or property is not supported after HttpRequest.GetBufferedInputStream has been invoked.
Incompatible_with_input_stream=This method or property is not supported after HttpRequest.Form, Files, InputStream, or BinaryRead has been invoked.
Invalid_operation_with_get_buffered_input_stream=Either BinaryRead, Form, Files, or InputStream was accessed before the internal storage was filled by the caller of HttpRequest.GetBufferedInputStream.
Only_file_virtual_supported_on_server_include=Only file and virtual are valid attributes in server-side include tags.
Runat_can_only_be_server=The Runat attribute must have the value Server.
Invalid_identifier='{0}' is not a valid identifier.
Invalid_resourcekey='{0}' is not a valid resource key.
ControlBuilder_IDMustUseAttribute=The ID property of a control can only be set using the ID attribute in the tag and a simple value. Example: <asp:Button runat="server" id="Button1" />
ControlBuilder_CannotHaveComplexString=The '{1}' property of '{0}' cannot be declared as an inner property, it must be declared as an attribute.
ControlBuilder_ParseTimeDataNotAvailable=The ParseTimeData property can only be used during parsing.
Duplicate_attr_in_directive=The directive contains duplicate '{0}' attributes.
Duplicate_attr_in_tag=The tag contains duplicate '{0}' attributes.
;Duplicate_entry_in_control=The control contains duplicate '{0}' entries.
Non_existent_base_type=The base type '{0}' does not exist in the source file '{1}'.
Invalid_type_to_inherit_from='{0}' is not allowed here because it does not extend class '{1}'.
Invalid_type_to_implement='{0}' exists but is not an interface.
Error_page_not_supported_when_buffering_off=Error page is not supported when buffering is disabled.
Enablesessionstate_must_be_true_false_or_readonly=enableSessionState must be set to true, false or ReadOnly
Attributes_mutually_exclusive=The '{0}' and '{1}' attributes are mutually exclusive.
Async_and_aspcompat=Async attribute cannot be set to true when AspCompat mode is enabled.
Async_and_transaction=Async attribute cannot be set to true when Transaction mode is enabled.
Async_required=This operation requires the page to be asynchronous (the Async attribute must be set to true).
Async_addhandler_too_late=This operation can only be performed prior to PreRenderComplete page event.
Async_operation_disabled=Asynchronous operations are not allowed in this context. Page starting an asynchronous operation has to have the Async attribute set to true and an asynchronous operation can only be started on a page prior to PreRenderComplete event.
Async_operation_pending=There is a pending asynchronous operation, and only one asynchronous operation can be pending concurrently.
Async_null_asyncresult=IAsyncResult returned from Begin method is null.
Async_operation_cannot_be_started=An asynchronous operation cannot be started at this time. Asynchronous operations may only be started within an asynchronous handler or module or during certain events in the Page lifecycle. If this exception occurred while executing a Page, ensure that the Page is marked <%@ Page Async=\"true\" %>. This exception may also indicate an attempt to call an \"async void\" method, which is generally unsupported within ASP.NET request processing. Instead, the asynchronous method should return a Task, and the caller should await it.
Async_operation_cannot_be_pending=An asynchronous module or handler completed while an asynchronous operation was still pending.
Server_execute_blocked_on_async_handler=HttpServerUtility.Execute blocked while waiting for an asynchronous operation to complete.
Mixed_lang_not_supported=Cannot use '{0}' because another language has been specified earlier in this page (or was implied from a CodeFile attribute).
Inconsistent_CodeFile_Language=The language of the code file is inconsistent with the language of the page.
Codefile_without_inherits=The 'CodeFile' attribute cannot be used without an 'Inherits' attribute.
CodeFileBaseClass_Without_Codefile=The 'CodeFileBaseClass' attribute cannot be used without a 'CodeFile' attribute.
Invalid_lang='{0}' is not a supported language.
Invalid_lang_extension='{0}' is not a valid language extension.
Cant_use_nocompile_uc=The user control '{0}' is not compiled, and can only be used dynamically. To force it to be compiled, set compilationMode="Always" in its @control directive.
Invalid_CodeSubDirectory_Not_Exist=The code subdirectory '{0}' does not exist.
Invalid_CodeSubDirectory=Invalid subdirectory '{0}'. Only subdirectories directly under the App_Code directory are allowed.
Reserved_AssemblyName='{0}' is a reserved assembly name, and cannot be used for a code subdirectory.

Empty_extension=The file '{0}' must have an extension in order to be compiled.
Base_class_field_with_type_different_from_type_of_control=The base class includes the field '{0}', but its type ({1}) is not compatible with the type of control ({2}).
ControlSkin_cannot_contain_controls=Control skins cannot contain child controls.
Inner_Content_not_literal=Cannot get inner content of {0} because the contents are not literal.
Invalid_client_target=ClientTarget is set to an invalid alias '{0}'.  The <clientTarget> configuration section is used to define ClientTarget aliases.
Empty_file_name=The file name cannot be an empty string.
SetStyleSheetThemeCannotBeSet=The StyleSheetTheme property cannot be set, please override the property instead.
PropertySetBeforePageEvent=The '{0}' property can only be set in or before the '{1}' event.
PropertySetBeforeStyleSheetApplied=The '{0}' property cannot be changed dynamically if Page has a stylesheet theme. For dynamic controls, set the property before calling ApplyStyleSheetSkin().
PropertySetBeforePreInitOrAddToControls=The '{0}' property can only be set in or before the Page_PreInit event for static controls. For dynamic controls, set the property before adding it to the Controls collection.
PropertySetAfterFrameworkInitialize=The '{0}' property can only be set in the page directive or in the <pages> configuration section.
StyleSheetAreadyAppliedOnControl=StyleSheetTheme is already applied on the control, it cannot be applied more than once.
Control_CannotOwnSelf=A control cannot own itself.
AdRotator_cant_open_file=The AdRotator {0} was unable to open the AdvertisementFile '{1}'.
AdRotator_cant_open_file_no_permission=The AdRotator {0} could not find the AdvertisementFile or the file is invalid.
AdRotator_parse_error=The AdRotator {0} was unable to parse the XML in the AdvertisementFile. {1}
AdRotator_no_advertisements=The AdRotator {0} found no valid advertisements in the file '{1}'.
AdRotator_only_one_datasource=Only one of AdvertisementFile, DataSource, or DataSourceID properties can be set on AdRotator '{0}'.
AdRotator_invalid_integer_format=The value '{0}' of field '{1}' of an advertisement data has to be a valid string to be parsed by {2}.
AdRotator_expect_records_with_advertisement_properties=The AdRotator '{0}' is expecting the data type of the first item in the collection from the DataSource property to have advertisement properties such as ImageUrl, NavigateUrl, etc..  The current data type of the item is '{1}'.
Validator_control_blank=The ControlToValidate property of '{0}' cannot be blank.
Validator_control_not_found=Unable to find control id '{0}' referenced by the '{1}' property of '{2}'.
Validator_bad_compare_control=Control '{0}' cannot have the same value '{1}' for both ControlToValidate and ControlToCompare.
Validator_bad_control_type=Control '{0}' referenced by the {1} property of '{2}' cannot be validated.
Validator_value_bad_type=The value '{0}' of the {1} property of '{2}' cannot be converted to type '{3}'.
Validator_range_overalap=The MaximumValue {0} cannot be less than the MinimumValue {1} of {2}.
Validator_bad_regex={0} is not a valid regular expression.
ValSummary_error_message_1=Error message 1.
ValSummary_error_message_2=Error message 2.
ViewState_MissingViewStateField=Invalid viewstate: Missing field: {0}.
ViewState_InvalidViewState=Invalid viewstate.
ViewState_InvalidViewStatePlus=Invalid viewstate. {0}
ClientDisconnected=The client disconnected.
HttpBufferlessInputStream_ClientDisconnected=The client is disconnected because the underlying request has been completed.  There is no longer an HttpContext available.
ViewState_ClientDisconnected=The client disconnected.
ViewState_AuthenticationFailed=Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <machineKey> configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.\r\n\r\nSee http://go.microsoft.com/fwlink/?LinkID=314055 for more information.
Control_does_not_allow_children='{0}' does not allow child controls.
DataBinder_Prop_Not_Found=DataBinding: '{0}' does not contain a property with the name '{1}'.
DataBinder_Invalid_Indexed_Expr=DataBinding: '{0}' is not a valid indexed expression.
DataBinder_No_Indexed_Accessor=DataBinding: '{0}' does not allow indexed access.
XPathBinder_MustBeIXPathNavigable=XPath DataBinding: '{0}' must implement IXPathNavigable.
XPathBinder_MustHaveXmlNodes=XPathBinder.Select can only be used with data sources that contain XmlNodes.
Field_Not_Found=A field or property with the name '{0}' was not found on the selected data source.
DataItem_Not_Found=A data item was not found in the container. The container must either implement IDataItemContainer, or have a property named DataItem.
DataGrid_Missing_VirtualItemCount=AllowCustomPaging must be true and VirtualItemCount must be set for a DataGrid with ID '{0}' when AllowPaging is set to true and the selected data source does not implement ICollection.
DataGrid_NoAutoGenColumns=DataGrid with id '{0}' could not automatically generate any columns from the selected data source.
GridView_Missing_VirtualItemCount=GridView with id '{0}' must have a data source that either implements ICollection or can perform data source paging if AllowPaging is true.
GridView_NoAutoGenFields=The data source for GridView with id '{0}' did not have any properties or attributes from which to generate columns.  Ensure that your data source has content.
GridView_DataSourceReturnedNullView=The IDataSource that is the data source for GridView '{0}' returned a null view.  Check that the DataMember property value of GridView is valid.
GridView_UnhandledEvent=The GridView '{0}' fired event {1} which wasn't handled.
GridView_MustBeParented=A GridView with EnableSortingAndPagingCallbacks set to true must be parented to a naming container before Render is called.
GridView_DataKeyNamesMustBeSpecified=Data keys must be specified on GridView '{0}' before the selected data keys can be retrieved.  Use the DataKeyNames property to specify data keys.
GridView_PersistedSelectionRequiresDataKeysNames=DataKeyNames must be specified for persisted selection to work.
DetailsView_NoAutoGenFields=DetailsView with id '{0}' did not have any properties or attributes from which to generate fields.  Ensure that your data source has content.
DetailsView_UnhandledEvent=The DetailsView '{0}' fired event {1} which wasn't handled.
DetailsView_DataSourceMustBeCollection=DetailsView with id '{0}' must have a data source that implements ICollection if AllowPaging is true.
DetailsView_MustBeParented=A DetailsView with EnablePagingCallbacks set to true must be parented to a naming container before Render is called.
FileUpload_AllowMultiple=Whether to enable multi-file uploads.
FileUpload_StreamNotSeekable=The stream returned by FileContent does not support seeking, so FileBytes is not supported.
FileUpload_StreamTooLong=The stream returned by FileContent is longer than Int32.MaxValue.  FileBytes supports only streams less than or equal to Int32.MaxValue.
FileUpload_StreamLengthNotReached=The byte stream that represents the uploaded file appears to be incomplete.  Try the upload again.
FormView_UnhandledEvent=The FormView '{0}' fired event {1} which wasn't handled.
FormView_DataSourceMustBeCollection=DetailsView with id '{0}' must have a data source that implements ICollection if AllowPaging is true.
DetailsViewFormView_ControlMustBeInEditMode={0} '{1}' must be in edit mode to update a record.
DetailsViewFormView_ControlMustBeInInsertMode={0} '{1}' must be in insert mode to insert a new record.
DataBoundControl_InvalidDataPropertyChange=Data properties on data control '{0}' such as DataSource, DataSourceID, and DataMember cannot be changed during the databinding phase of the control.
DataBoundControl_NullView=The data source retrieved by '{0}' returned a null DataSourceView.
DataBoundControl_InvalidDataSourceType=Data source is an invalid type.  It must be either an IListSource, IEnumerable, or IDataSource.
DataBoundControl_DataSourceDoesntSupportPaging=The data source '{0}' does not support server-side paging and it returned non-ICollection data.  See your data source documentation to enable paging.
DataBoundControl_CallingDataMethods=Occurs before model methods are invoked for data operations. Handle this event if the model methods are defined on a custom type other than the code behind file.
DataBoundControl_NeedICollectionOrTotalRowCount=If a data source does not return ICollection and cannot return the total row count, it cannot be used by the {0} to implement server-side paging.
DataBoundControlHelper_NoNamingContainer=The {0} control '{1}' does not have a naming container.  Ensure that the control is added to the page before calling DataBind.
HierarchicalDataBoundControl_InvalidDataSource=HierarchicalDataBoundControl only accepts data sources that implement IHierarchicalDataSource or IHierarchicalEnumerable.
DataBoundControl_OnCreatingModelDataSource=Raised before the data bound control is data binding using data methods.
HierarchicalDataControl_ViewNotFound=The view that hierarchical data bound control '{0}' requested could not be found.
HierarchicalDataControl_DataSourceIDMustBeHierarchicalDataControl=The DataSourceID of '{0}' must be the ID of a control of type IHierarchicalDataSource.  '{1}' is not an IHierarchicalDataSource.
HierarchicalDataControl_DataSourceDoesntExist=The DataSourceID of '{0}' must be the ID of a control of type IHierarchicalDataSource.  A control with ID '{1}' could not be found.
DataControl_ViewNotFound=The view that data bound control '{0}' requested could not be found. Check that the DataMember property is valid.
DataControl_DataSourceIDMustBeDataControl=The DataSourceID of '{0}' must be the ID of a control of type IDataSource.  '{1}' is not an IDataSource.
DataControl_DataSourceDoesntExist=The DataSourceID of '{0}' must be the ID of a control of type IDataSource.  A control with ID '{1}' could not be found.
DataControl_MultipleDataSources=Both DataSource and DataSourceID are defined on '{0}'.  Remove one definition.
DataControl_ItemType_MultipleDataSources=DataSource or DataSourceID cannot be defined on '{0}' when it uses model binding.
DataControlField_NoContainer=A DataControlField must be within an INamingContainer.
DataControlField_CallbacksNotSupported=Callbacks are not supported on this data control field.  Turn callbacks off on '{0}'.
DataControlFieldCollection_InvalidType=Object is not a DataControlField.
DataControlFieldCollection_InvalidTypeIndex=Type index is out of bounds.
BoundField_WrongControlType=BoundField {0} contains a control that isn't a TextBox.  Override OnDataBindField to inherit from BoundField and add different controls.
CheckBoxField_WrongControlType=CheckBoxField '{0}' contains a control that isn't a CheckBox.  Override OnDataBindField to inherit from CheckBoxField and add different controls.
CheckBoxField_CouldntParseAsBoolean=The data in the CheckBoxField '{0}' could not be parsed as a boolean value.  Try using a BoundField instead.
CheckBoxField_NotSupported=The property {0} is not supported on CheckBoxField.
CommandField_CallbacksNotSupported=Callbacks are not supported on CommandField when the select button is enabled because other controls on your page that are dependent on the selected value of '{0}' for their rendering will not update in a callback.  Turn callbacks off on '{0}'.
ImageField_WrongControlType=ImageField {0} contains a control that isn't a TextBox in edit mode, or an Image and a Label in read-only mode.  Override OnDataBindField to inherit from ImageField and add different controls.
TemplateField_CallbacksNotSupported=Callbacks are not supported on TemplateField because some controls cannot update properly in a callback.  Turn callbacks off on '{0}'.
PagedDataSource_Cannot_Get_Count=Cannot compute Count for a data source that does not implement ICollection.
Cannot_Have_Children_Of_Type='{0}' cannot have children of type '{1}'.
Control_Cannot_Databind='{0}' cannot contain a data binding expression.
InnerHtml_not_supported='{0}' does not support the InnerHtml property.
InnerText_not_supported='{0}' does not support the InnerText property.
ListControl_SelectionOutOfRange='{0}' has a {1} which is invalid because it does not exist in the list of items.
ListControl_RenderWhenDataEmptyNotSupportedWithTableLayout=The RepeatLayout property on control '{0}' does not support Table layout when RenderWhenDataEmpty is enabled.
ListControl_RenderWhenDataEmpty=Render the control's outer markup when not bound to data or data is empty.
BulletedList_SelectionNotSupported=Setting the SelectedIndex or SelectedValue properties of BulletedList is not supported.
BulletedList_TextNotSupported=Setting the Text property of BulletedList is not supported.
CannotUseParentPostBackWhenValidating=A button that causes validation in {0} '{1}' is attempting to use the container {0} as the post back target.  The button should either turn off validation or use itself as the post back container.
CannotSetValidationOnDataControlButtons=Setting CausesValidation on DataControlButtons is not supported.
CannotSetValidationOnPagerButtons=Setting CausesValidation on DataControlPagerLinkButtons is not supported.
Invalid_DataSource_Type=An invalid data source is being used for {0}. A valid data source must implement either IListSource or IEnumerable.
Invalid_CurrentPageIndex=Invalid CurrentPageIndex value. It must be >= 0 and < the PageCount.
ListSource_Without_DataMembers=The IListSource does not contain any data sources.
ListSource_Missing_DataMember=The IListSource does not contain a data source named '{0}'.  Check your DataMember value.
Enumerator_MoveNext_Not_Called=You must call MoveNext on IEnumerator before accessing the Current property.
Sample_Databound_Text=Databound
Resource_problem=An error occurred while try to load the string resources ({0} failed with error {1}).
Duplicate_Resource_File=The resource file '{0}' cannot be used, as it conflicts with another file with the same name.
Property_Had_Malformed_Url=The '{0}' property had a malformed URL: {1}.
TypeResService_Needed=The supplied IDesignerHost must provide an implementation of ITypeResolutionService.
DataList_TemplateTableNotFound= A Table control was not found in the template for '{0}' for an item of type 'ListItemType.{1}'.
DataList_DataKeyFieldMustBeSpecified=Data keys must be specified on DataList '{0}' before the selected data key can be retrieved.  Use the DataKeyField property to specify data keys.
DataList_LayoutNotSupported=DataList does not support the '{0}' layout.
EnumAttributeInvalidString='{0}' is not a valid value for the '{2}' attribute. '{2}' must be a single text (not numeric) value from the '{3}' enumeration.
UnitParseNumericPart=The numeric part ('{1}') of '{0}' cannot be parsed as a numeric part of a {2} unit.
UnitParseNoDigits='{0}' cannot be parsed as a unit as there are no numeric values in it. Examples of valid unit strings are '1px' and '.5in'.
IsValid_Cant_Be_Called=Page.IsValid cannot be called before validation has taken place. It should be queried in the event handler for a control that has CausesValidation=True and initiated the postback, or after a call to Page.Validate.
Invalid_HtmlTextWriter=An instance of '{0}' could not be used as an HtmlTextWriter. Make sure the specified class can be instantiated, extends System.Web.UI.HtmlTextWriter, and implements a constructor with a single parameter of type System.IO.TextWriter.
Form_Needs_Page=HtmlForm cannot render without a reference to the Page instance.  Make sure your form has been added to the control tree.
InvalidDefaultAutoFieldGenerator=The field generator of type '{0}' can be used only with '{1}'.

HtmlForm_OnlyIButtonControlCanBeDefaultButton=The DefaultButton of '{0}' must be the ID of a control of type IButtonControl.
Head_Needs_Page=HtmlHead cannot render without a reference to the Page instance.  Make sure your head has been added to the control tree.
HtmlHead_StyleAlreadyRegistered=You cannot register a style twice.
HtmlHead_OnlyOneHeadAllowed=You can only have one <head runat="server"> control on a page.
HtmlHead_OnlyOneTitleAllowed=You can only have one <title> element within the <head> element.
Style_RegisteredStylesAreReadOnly=Registered Styles are read-only.
Style_InvalidBorderWidth=BorderWidth must be a non-negative number and cannot be a percentage.
Style_InvalidWidth=Width must be non negative.
Style_InvalidHeight=Height must be non negative.
Cant_Multiselect_In_Single_Mode=Cannot have multiple items selected when the SelectionMode is Single.
Cant_Multiselect=Cannot have multiple items selected in a {0}.
HtmlSelect_Cant_Multiselect_In_Single_Mode=An HtmlSelect cannot have multiple items selected when Multiple is false.
Controls_Cant_Change_Between_Posts=Failed to load viewstate.  The control tree into which viewstate is being loaded must match the control tree that was used to save viewstate during the previous request.  For example, when adding controls dynamically, the controls added during a post-back must match the type and position of the controls added during the initial request.
Value_Set_Not_Supported=The value property on {0} is not settable.

SiteMap_feature_disabled=This feature is currently disabled, please enable section {0} in the configuration file.
SiteMapNode_readonly=SiteMapNode is readonly, property {0} cannot be modified.
SiteMapNodeCollection_Invalid_Type=Invalid value of type {0} passed in, value must be of type SiteMapNode.
SiteMapProvider_Circular_Provider=Circular Providers not allowed.
SiteMapProvider_Invalid_RootNode=Root node defined in provider {0} is null, root node cannot be null.
SiteMapProvider_cannot_remove_root_node=Root node cannot be removed from the providers, use RemoveProvider(string providerName) instead.
XmlSiteMapProvider_cannot_add_node=SiteMapNode {0} cannot be found in current provider, only nodes in the same provider can be added.
XmlSiteMapProvider_invalid_resource_key=Resource key {0} is not valid, it must contain a valid class name and key pair. For example, $resources:'className','key'
XmlSiteMapProvider_resourceKey_cannot_be_empty=Resource key cannot be empty.
XmlSiteMapProvider_cannot_find_provider=Provider {0} cannot be found inside XmlSiteMapProvider {1}.
;XmlSiteMapProvider_remove_node_without_provider=SiteMapNode {0} does not have a provider, cannot remove a node without a valid provider.
XmlSiteMapProvider_cannot_remove_node=SiteMapNode {0} does not exist in provider {1}, it must be removed from provider {2}.
XmlSiteMapProvider_missing_siteMapFile=The {0} attribute must be specified on the XmlSiteMapProvider.
XmlSiteMapProvider_Description=SiteMap provider which reads in .sitemap XML files.
XmlSiteMapProvider_Not_Initialized=XmlSiteMapProvider is not initialized. Call Initialize() method first.
XmlSiteMapProvider_Cannot_Be_Inited_Twice=XmlSiteMapProvider cannot be initialized twice.
XmlSiteMapProvider_Top_Element_Must_Be_SiteMap=Top element must be siteMap.
XmlSiteMapProvider_Only_One_SiteMapNode_Required_At_Top=Exactly one <siteMapNode> element is required directly inside the <siteMap> element.
XmlSiteMapProvider_Only_SiteMapNode_Allowed=Only <siteMapNode> elements are allowed at this location.
XmlSiteMapProvider_invalid_sitemapnode_returned=Provider {0} must return a valid sitemap node.
XmlSiteMapProvider_invalid_GetRootNodeCore=GetRootNode is returning null from Provider {0}, this method must return a non-empty sitemap node.
XmlSiteMapProvider_Error_loading_Config_file=The XML sitemap config file {0} could not be loaded.  {1}
XmlSiteMapProvider_FileName_does_not_exist=The file {0} required by XmlSiteMapProvider does not exist.
XmlSiteMapProvider_FileName_already_in_use=The sitemap config file {0} is already used by other nodes or providers.
;XmlSiteMapProvider_Invalid_SiteMapFile=XmlSiteMapProvider does not allow physical path {0}, use virtual path instead.
XmlSiteMapProvider_Invalid_Extension=The file {0} has an invalid extension, only .sitemap files are allowed in XmlSiteMapProvider.
XmlSiteMapProvider_multiple_resource_definition=Cannot have more than one resource binding on attribute '{0}'. Ensure that this attribute is not bound through an implicit expression, for example, {0}="$resources:key".

UrlMappings_only_app_relative_url_allowed=The URL '{0}' is not valid. Only application relative URLs (~/url) are allowed.
;UrlMappings_url_already_defined=URL {0} is already defined for mappings.
;UrlMappings_url_not_defined=Cannot remove undefined URL {0}.
FileName_does_not_exist=The file '{0}' does not exist.
SiteMapProvider_Multiple_Providers_With_Identical_Name=Multiple providers with the same name '{0}' were found. SiteMap requires providers have unique names.
XmlSiteMapProvider_Multiple_Nodes_With_Identical_Url=Multiple nodes with the same URL '{0}' were found. XmlSiteMapProvider requires that sitemap nodes have unique URLs.
XmlSiteMapProvider_Multiple_Nodes_With_Identical_Key=Multiple nodes with the same key '{0}' were found. XmlSiteMapProvider requires that sitemap nodes have unique keys.
Provider_Not_Found=Provider '{0}' was not found.
Provider_does_not_support_policy_for_responses=When using a custom output cache provider like '{0}', only the following expiration policies and cache features are supported:  file dependencies, absolute expirations, static validation callbacks and static substitution callbacks.
Provider_does_not_support_policy_for_fragments=When using a custom output cache provider like '{0}', only the following expiration policies and cache features are supported:  file dependencies and absolute expirations.
GetOutputCacheProviderName_Invalid=HttpApplication.GetOutputCacheProviderName returned '{0}', but the provider was not found.
OutputCacheExtensibility_CantSerializeDeserializeType=The provided parameter is not of a supported type for serialization and/or deserialization.
Collection_readonly=Collection is read-only.
ParameterCollection_NotParameter=Object is not a Parameter.
ControlParameter_CouldNotFindControl=Could not find control '{0}' in ControlParameter '{1}'.
ControlParameter_ControlIDNotSpecified=A ControlID must be specified in ControlParameter '{0}'.
ControlParameter_PropertyNameNotSpecified=PropertyName must be set to a valid property name of the control named '{0}' in ControlParameter '{1}'.
DataSourceCache_InvalidExpiryPolicy=Invalid DataSourceCacheExpiry.
DataSourceCache_InvalidDuration=The duration must be non-negative.
DataSourceCache_CacheMustBeEnabled=Cannot perform operation when cache is not enabled.
;DataSourceCache_StringEnabled=Enabled
;DataSourceCache_StringNotEnabled=Not enabled
DataSourceView_NoPaging=The data source does not support server-side data paging.
DataSourceView_NoSorting=The data source does not support sorting.
DataSourceView_NoRowCount=The data source does not support retrieving the number of rows of data.
AccessDataSource_Description=Connect to an Access database created with Microsoft Office.
AccessDataSource_DisplayName=Access Database
AccessDataSource_CannotSetConnectionString=The AccessDataSource ConnectionString property cannot be set, it is automatically generated.
AccessDataSource_CannotSetProvider=The provider name cannot be set on AccessDataSource '{0}'.
AccessDataSource_SqlCacheDependencyNotSupported=SQL cache dependencies are not supported on AccessDataSource '{0}'.
AccessDataSource_DesignTimeRelativePathsNotSupported=Cannot use AccessDataSource '{0}' at design time when the DataFile property is specified using a virtual path.
AccessDataSource_NoPathDiscoveryPermission=Access to the file '{0}' in AccessDataSource '{1}' was denied because of security settings.
AccessDataSourceView_SelectRequiresDataFile=To perform the 'Select' operation the DataFile property of the data source '{0}' must be set to a valid Microsoft Access database.
SqlDataSource_Description=Connect to any SQL database supported by ADO.NET, such as Microsoft SQL Server, Oracle, or OLEDB.
SqlDataSource_DisplayName=Database
SqlDataSource_InvalidMode=The SqlDataSourceMode for the DataSourceMode property on data source '{0}' is invalid.
SqlDataSource_SqlCacheDependencyNotSupported=SQL Cache Dependencies are not supported by the data source '{0}'. If this control is derived from SqlDataSource and has its own cache implementation it must also override the SaveDataToCache() method.
SqlDataSource_NoDbPermission=Access to the ADO.net Managed Provider '{0}' was denied in the data source with ID '{1}' because of security settings.
SqlDataSourceView_SortNotSupported=The data source '{0}' only supports sorting when the data source's DataSourceMode is set to DataSet.
SqlDataSourceView_FilterNotSupported=The data source '{0}' only supports filtering when the data source's DataSourceMode is set to DataSet.
SqlDataSourceView_CacheNotSupported=The data source '{0}' only supports caching when the data source's DataSourceMode is set to DataSet.
SqlDataSourceView_DeleteNotSupported=Deleting is not supported by data source '{0}' unless DeleteCommand is specified.
SqlDataSourceView_InsertNotSupported=Inserting is not supported by data source '{0}' unless InsertCommand is specified.
SqlDataSourceView_UpdateNotSupported=Updating is not supported by data source '{0}' unless UpdateCommand is specified.
SqlDataSourceView_CouldNotCreateConnection=The data source '{0}' could not create a database connection. Please check the data source's connection settings.
SqlDataSourceView_NoPaging=The SqlDataSource '{0}' does not have paging enabled.  Set the DataSourceMode to DataSet to enable paging.
SqlDataSourceView_NoSorting=The SqlDataSource '{0}' cannot sort.  Set DataSourceMode to DataSet to enable sorting. If you are using a stored procedure that supports sorting, set the SortParameterName property to the name of the stored procedure's parameter that accepts a sort expression.
SqlDataSourceView_NoRowCount=The SqlDataSource'{0}' cannot retrieve the total row count of the data source.
SqlDataSourceView_CountNotValid=The SelectCountCommand on SqlDataSource '{0}' did not return a count of the rows in the data source.  Please check the SelectCountCommand.
;SqlDataSourceView_PageReaderNotSupported=The DbCommand created by SqlDataSource '{0}' does not support paged data reader.  Either change the provider in your connection string or change the DataSourceMode to DataSet.
SqlDataSourceView_SortParameterRequiresStoredProcedure=The SortParameterName property is only supported with stored procedure commands in SqlDataSource '{0}'.
SqlDataSourceView_CommandNotificationNotSupported=SQL Server command notification for caching is only supported with the System.Data.SqlClient provider in SqlDataSource '{0}'.
SqlDataSourceView_Pessimistic=You have specified that your {0} command compares all values on SqlDataSource '{1}', but the dictionary passed in for {2} is empty.  Pass in a valid dictionary for {0} or change your mode to OverwriteChanges.
SqlDataSourceView_MissingParameters=Error executing '{0}Command' in SqlDataSource '{1}'. Ensure the command accepts the following parameters: {2}
SqlDataSourceView_NoParameters=No Parameters
DataSourceView_delete=delete
DataSourceView_update=update
ModelDataSourceView_CannotCallOpenGenericMethods=Cannot call the method '{0}' on page '{1}' because the method is a generic method.
ModelDataSourceView_CannotCallMethodsWithOutOrRefParameters=Cannot call the method '{0}' on page '{1}' because the parameter '{2}' is passed by reference.
ModelDataSourceView_DataMethodNotFound=A public method with the name '{0}' was either not found or there were multiple methods with the same name on the type '{1}'.
ModelDataSourceView_DeleteNotSupported=Deleting is not supported unless the DeleteMethod is specified.
ModelDataSourceView_InvalidSelectReturnType=The Select Method must return one of "IQueryable<{0}>" or "IEnumerable<{0}>" or "{0}" when ItemType is set to "{0}".
ModelDataSourceView_InvalidAsyncSelectReturnType=The Task-based Select Method must return one of "Task<IEnumerable<{0}>>" or "Task<System.Web.UI.WebControls.SelectResult>" or "Task<{0}>" when ItemType is set to "{0}".
ModelDataSourceView_UseAsyncMethodMustBeUsingAsyncPage=When using a Task-based async method, the page must be marked as asynchronous using the <%@ Page Async="true" %> directive, and the web application must be targeting .NET 4.5 or higher via <httpRuntime targetFramework="4.5" />.
ModelDataSourceView_InvalidPagingParameters=When the DataBoundControl has paging enabled, either the SelectMethod should return an IQueryable<ItemType> or should have all these mandatory parameters : int startRowIndex, int maximumRows, out int totalRowCount
ModelDataSourceView_InvalidAsyncPagingParameters=When the DataBoundControl has paging enabled, the SelectMethod should return "Task<System.Web.UI.WebControls.SelectResult>" and have all these mandatory parameters : int startRowIndex, int maximumRows
ModelDataSourceView_MustUseSelectResultAsReturnType=When using custom paging with an async Select method, the Select method return type must be "Task<System.Web.UI.WebControls.SelectResult>".
ModelDataSourceView_InvalidSortingParameters=When the DataBoundControl has sorting enabled, either the SelectMethod should return an IQueryable<ItemType> or should have all these mandatory parameters : string sortByExpression
ModelDataSourceView_InsertNotSupported=Inserting is not supported unless the InsertMethod is specified.
ModelDataSourceView_MultipleModelMethodSources=The DataMethodsType and DataMethodsObject properties cannot both be specified at the same time.
ModelDataSourceView_MultipleValueProvidersNotSupported=Only one source for the parameter '{0}' can be specified.
ModelDataSourceView_UpdateNotSupported=Updating is not supported unless the UpdateMethod is specified.
ModelDataSourceView_SelectNotSupported=The Select operation is not supported unless the SelectMethod is specified.
ModelDataSourceView_SortNotSupportedOnIEnumerable=The SelectMethod does not support sorting with IEnumerable data. Automatic sorting is only supported when the SelectMethod returns an IQueryable type.
ModelDataSourceView_ParameterCannotBeNull=A null value for parameter '{0}' of non-nullable type '{1}' for method '{2}' in '{3}'. An optional parameter must be a reference type or a nullable type.
ModelDataSourceView_ParameterValueHasWrongType=An invalid value for parameter '{0}' for method '{1}' in '{2}'. The value from model binding is of type '{3}', but the parameter requires a value of type '{4}'.
ModelDataSourceView_CancellationTokenIsNotSupported=Parameters typed as CancellationToken are supported only in Task-returning methods.
ObjectDataSource_Description=Connect to a middle-tier business object or DataSet in the Bin or App_Code directory for the application.
ObjectDataSource_DisplayName=Object
ObjectDataSourceView_DeleteNotSupported=Deleting is not supported by ObjectDataSource '{0}' unless the DeleteMethod is specified.
ObjectDataSourceView_InsertNotSupported=Inserting is not supported by ObjectDataSource '{0}' unless the InsertMethod is specified.
ObjectDataSourceView_UpdateNotSupported=Updating is not supported by ObjectDataSource '{0}' unless the UpdateMethod is specified.
ObjectDataSourceView_SelectNotSupported=The Select operation is not supported by ObjectDataSource '{0}' unless the SelectMethod is specified.
ObjectDataSourceView_InsertRequiresValues=ObjectDataSource '{0}' has no values to insert. Check that the 'values' dictionary contains values.
ObjectDataSourceView_TypeNotSpecified=A type must be specified in the TypeName property of ObjectDataSource '{0}'.
ObjectDataSourceView_TypeNotFound=The type specified in the TypeName property of ObjectDataSource '{0}' could not be found.
ObjectDataSourceView_MethodNotFoundNoParams=ObjectDataSource '{0}' could not find a non-generic method '{1}' that has no parameters.
ObjectDataSourceView_MethodNotFoundWithParams=ObjectDataSource '{0}' could not find a non-generic method '{1}' that has parameters: {2}.
ObjectDataSourceView_MethodNotFoundForDataObject=ObjectDataSource '{0}' could not find a non-generic method '{1}' that takes parameters of type '{2}'.
ObjectDataSourceView_DataObjectTypeNotFound=The data object type specified in the DataObjectTypeName property of ObjectDataSource '{0}' could not be found.
ObjectDataSourceView_DataObjectPropertyNotFound=Could not find a property named '{0}' on the type specified by the DataObjectTypeName property in ObjectDataSource '{1}'.
ObjectDataSourceView_DataObjectPropertyReadOnly=The '{0}' property on the type specified by the DataObjectTypeName property in ObjectDataSource '{1}' is readonly and its value cannot be set.
ObjectDataSourceView_MultipleOverloads=More than one method with the specified name and parameters was found for ObjectDataSource '{0}'. Adding the DataObjectMethodAttribute to one of these methods and/or making it the default method can help resolve overload conflicts.
;ObjectDataSourceView_CacheNotSupported=The data source '{0}' only supports caching when the SelectMethod returns a DataSet or a DataTable.
ObjectDataSourceView_CacheNotSupportedOnSortedDataView=The data source '{0}' only supports DataView caching when there is no sort expression.
ObjectDataSourceView_CacheNotSupportedOnIDataReader=The data source '{0}' does not support caching objects that implement IDataReader.
ObjectDataSourceView_SortNotSupportedOnIEnumerable=The data source '{0}' does not support sorting with IEnumerable data. Automatic sorting is only supported with DataView, DataTable, and DataSet.
ObjectDataSourceView_FilterNotSupported=The data source '{0}' only supports filtering when the SelectMethod returns a DataSet or a DataTable.
ObjectDataSourceView_Pessimistic=You have specified that your {0} method compares all values on ObjectDataSource '{1}', but the dictionary passed in for {2} is empty.  Pass in a valid dictionary for {0} or change your mode to OverwriteChanges.
ObjectDataSourceView_NoOldValuesParams=The Update method on ObjectDataSource '{0}' must have a parameter that fits the OldValuesParameterFormatString.  Check your UpdateMethod or change your ConflictDetection to OverwriteValues.
ObjectDataSourceView_MissingPagingSettings=In ObjectDataSource '{0}' when EnablePaging is set to true, StartRowIndexParameterName and MaximumRowsParameterName must also be set to valid parameter names of the SelectMethod.
ObjectDataSourceView_CannotConvertType=Cannot convert value of parameter '{0}' from '{1}' to '{2}'
FilteredDataSetHelper_DataSetHasNoTables=The DataSet in data source '{0}' does not contain any tables.
StringPropertyBuilder_CannotHaveChildObjects=The '{0}' property of '{1}' does not allow child objects.
XmlHierarchyData_CouldNotFindNode=Could not find node index. XmlNode does not exist in parent.
XmlDataSource_Description=Connect to an XML file.
XmlDataSource_DesignTimeRelativePathsNotSupported=Cannot use XmlDataSource '{0}' at design time when a file property is specified using a virtual path.
XmlDataSource_DisplayName=XML File
XmlDataSource_SaveNotAllowed=Save is not enabled in XmlDataSource '{0}' when either an XSL transform is specified, the content was specified using the Data property, the content was loaded from a URL, or a custom virtual path provider was used.
XmlDataSource_NoWebPermission=Access to the URL '{0}' was denied in the XmlDataSource with ID '{1}' because of security settings.
XmlDataSource_CannotChangeWhileLoading=The {0} property of XmlDataSource '{1}' cannot be changed while the document is being loaded.
XmlDataSource_NeedUniqueIDForCache=When caching is enabled for the XmlDataSource that is not in the page's control tree it requires a UniqueID that is unique throughout the application.
XmlDataSource_CacheKeyContext=Allows the user to specify a string that will be added to the cache key.

DataControlFieldCell_ShouldNotSetValidateRequestMode=DataControlFieldCell gets the value of ValidateRequestMode from its ContainingField. The ValidateRequestMode property cannot be set directly on DataControlFieldCell.

NeedHeader=Using {0} requires Page.Header to be non-null (e.g. <head runat="server" />).
Form_Required_For_Focus=A form tag with runat=server must exist on the Page to use SetFocus() or the Focus property.
Page_MustCallBeforeAndDuringPreRender={0} can only be called before and during PreRender.
;Control_MustCallBeforeAndDuringPreRender={0} must be called before and during PreRender.
RoleGroupCollection_InvalidType=Argument must be a RoleGroup.
Page_CallBackError=There was an error in the callback.
Page_CallBackInvalid=The callback request is invalid.
Page_CallBackTargetInvalid=The target '{0}' for the callback could not be found or did not implement ICallbackEventHandler.
NoThemingSupport=Control of type '{0}' does not support theming.
ControlNonVisual=Control of type '{0}' is a non-visual control and does not support setting the Visible property.
NoFocusSupport=Control of type '{0}' does not support the Focus operation.
PageStatePersister_PageCannotBeNull=A PageStatePersister must be constructed with a non-null Page reference.
SessionPageStatePersister_SessionMustBeEnabled=SessionPageStatePersister can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive.
Page_MissingDataBindingContext=Databinding methods such as Eval(), XPath(), and Bind() can only be used in the context of a databound control.
TemplateControl_DataBindingRequiresPage=Databinding methods such as Eval(), XPath(), and Bind() can only be used in controls contained in a page.
LabelForNotFound=Unable to find control with id '{0}' that is associated with the Label '{1}'.
Attrib_Sql9_not_allowed=The SqlDependency attribute does not support "CommandNotification" in a user control.

FactoryGenerator_TypeNotPublic=Cannot instantiate type '{0}' because it is not public.
FactoryGenerator_TypeHasNoParameterlessConstructor=Cannot instantiate type '{0}' because there is no public parameterless constructor.
FactoryInterface=factoryInterface

; Serialization and persistence related
InvalidSerializedData=The serialized data is invalid.
NonSerializableType=A value of type '{0}' cannot be serialized.
ErrorSerializingValue=Error serializing value '{0}' of type '{1}.'
;CantBinarySerializeTypeInCodeDir=Cannot serialize value of type '{0}' because it is automatically compiled by ASP.NET.

; Metadata Descriptions
Control_ValidateRequestMode=Determines whether the control validates client input or not. Defaults to inherit from parent.
Control_Controls=The collection of child controls owned by the control.
Control_ID=Programmatic name of the control.
Control_MaintainState=Whether the control automatically saves its state for use in round-trips.
Control_ViewStateMode=Determines whether the control has viewstate enabled or not, defaults to inherit from parent.
Control_Visible=Indicates whether the control is visible and rendered.
Control_OnDisposed=Fires when the control has been disposed.
Control_OnInit=Fires when the page has been initialized.
Control_OnLoad=Fires when the page has been loaded.
Control_OnUnload=Fires when the page is unloaded.
Control_OnPreRender=Fires before the page is rendered.
Control_OnDataBind=Fires when the control's data binding expressions are to be evaluated.
Control_NamingContainer=The containing control or page within which ID is unique.
Control_Page=The page containing the control.
Control_Parent=The control containing this control.
Control_TemplateSourceDirectory=The virtual directory of the Page or UserControl that contains this control.
Control_TemplateControl=The TemplateControl that hosts this control.
Control_Site=Site of the control.
Control_State=Current viewstate of the control.
Control_UniqueID=The unique ID of the control within the page.
Control_ClientID=The ID of the control that is rendered for the client.
Control_ClientIDMode=Indicates how the ClientID should be generated for the control.
Control_SkinId=The SkinId of the control skin that provides the skin of the control.
Control_EnableTheming=Indicates whether the control can be themed.
Page_ClientTarget=Allows you to override automatic detection of browser capabilities and force specific rendering.
Page_ErrorPage=URL of the associated error page.
Page_ErrorDescription=Occurs when an uncaught exception is thrown.
Page_OnCommitTransaction=Occurs when a user initiates a transaction.
Page_OnAbortTransaction=Occurs when a user aborts a transaction.
Page_Illegal_MaxPageStateFieldLength=MaxPageStateFieldLength can only be set to -1[off] or positive numbers.
Page_Illegal_AsyncTimeout=AsyncTimeout cannot be negative.
Page_InvalidUpdateModelAttempt='{0}' must be passed a value provider or alternatively must be invoked from inside a data-operation method of a control that uses model binding for data binding.
Page_UnobtrusiveValidationMode=Specifies the client side validation mode of the validators on this page.
Page_UpdateModel_UpdateUnsuccessful=The model of type '{0}' could not be updated.
ObjectDataSource_ConflictDetection=Specifies how data conflicts are resolved.
ObjectDataSource_ConvertNullToDBNull=Specifies whether null parameter values passed into methods will be converted to System.DBNull.
ObjectDataSource_DataObjectTypeName=Specifies a type that can be constructed for Update, Insert, and Delete operations when the method takes this type rather than having one parameter for each property.
ObjectDataSource_DeleteMethod=The method to execute when Delete() is called.
ObjectDataSource_DeleteParameters=Collection of parameters used when calling the DeleteMethod. These parameters are merged with the parameters provided by data-bound controls.
ObjectDataSource_EnablePaging=Indicates whether the Select method supports paging.
ObjectDataSource_FilterExpression=Filter expression used when Select() is called. Filtering is only available when the SelectMethod returns a DataSet or a DataTable.
ObjectDataSource_FilterParameters=Collection of parameters used in the FilterExpression property. Filtering is only available when the SelectMethod returns a DataSet or a DataTable.
ObjectDataSource_InsertMethod=The method to execute when Insert() is called.
ObjectDataSource_InsertParameters=Collection of values used when calling the InsertMethod. These parameters are merged with the parameters provided by data-bound controls.
ObjectDataSource_MaximumRowsParameterName=When EnablePaging is true, this indicates the parameter of the Select method that accepts the value for the number of rows to retrieve.
ObjectDataSource_SelectCountMethod=The method to execute when the total row count is needed.
ObjectDataSource_SelectMethod=The method to execute when Select() is called.
ObjectDataSource_SelectParameters=Collection of parameters used when calling the SelectMethod.
ObjectDataSource_SortParameterName=The name of the parameter on the Select Method that accepts a sort expression, if any.
ObjectDataSource_StartRowIndexParameterName=When EnablePaging is set to true, this property indicates the parameter of the Select method that accepts the value for the index of first row to retrieve.
ObjectDataSource_TypeName=The type that contains the methods specified in this control.
ObjectDataSource_UpdateMethod=The method to execute when Update() is called.
ObjectDataSource_UpdateParameters=Collection of parameters and values used when calling the UpdateMethod. These parameters are merged with the parameters provided by data-bound controls.
ObjectDataSource_ObjectCreated=This event is raised after the instance of the object has been created.
ObjectDataSource_ObjectCreating=This event is raised before an instance of the object is created to allow creation of a custom instance of the object.
ObjectDataSource_ObjectDisposing=This event is raised before the instance of the object is disposed.
ObjectDataSource_Selected=This event is raised one time each after the Select and SelectCount operation have completed.
ObjectDataSource_Selecting=This event is raised one time each before the Select and SelectCount operations have been executed.
ObjectDataSource_ParsingCulture=Indicates the Culture used by ObjectDataSource when converting string values to actual types of properties of data object.
DataSourceCache_Duration=The duration, in seconds, of the expiration. The expiration policy is specified by the ExpirationPolicy property.
DataSourceCache_Enabled=Whether caching is enabled for this data source.
DataSourceCache_ExpirationPolicy=The expiration policy of the cache. The duration for the expiration is specified by the Duration property.
DataSourceCache_KeyDependency=Indicates an arbitrary cache key to make this cache entry depend on.
SqlDataSource_ConflictDetection=Specifies how data conflicts are resolved.
SqlDataSource_ConnectionString=The connection string used to connect to the database. This property is not stored in ViewState.
SqlDataSource_CancelSelectOnNullParameter=Indicates whether the Select operation will be cancelled if the value of any of the SelectParameters is null.
SqlDataSource_ProviderName=The ADO.net managed provider name used to connect to the database. This property is not stored in ViewState.
SqlDataSource_DataSourceMode=Specifies the SqlDataSourceMode used for selecting rows.
SqlDataSource_DeleteCommand=The command to execute for deleting rows.
SqlDataSource_DeleteCommandType=The type of the delete command.
SqlDataSource_DeleteParameters=Collection of parameters used in Delete(). These parameters are merged with the parameters provided by data-bound controls.
SqlDataSource_FilterExpression=Filter expression used when Select() is called. Filtering is only available when the DataSourceMode is set to DataSet.
SqlDataSource_FilterParameters=Collection of parameters used in the FilterExpression property. Filtering is only available when the DataSourceMode is set to DataSet.
SqlDataSource_InsertCommand=The command to execute for inserting new rows.
SqlDataSource_InsertCommandType=The type of the insert command.
SqlDataSource_InsertParameters=Collection of values used in Insert(). These parameters are merged with the parameters provided by data-bound controls.
SqlDataSource_SelectCommand=The command to execute for selecting rows.
SqlDataSource_SelectCommandType=The type of the select command.
;SqlDataSource_SelectCountCommand=The command executed to retrieve the total number of rows.
;SqlDataSource_SelectCountParameters=Collection of parameters used for retrieving the total number of rows.
SqlDataSource_SelectParameters=Collection of parameters used for selecting rows.
SqlDataSource_SortParameterName=The name of the parameter on the Select Command that accepts a sort expression, if any. This is only supported when using a stored procedure.
SqlDataSource_UpdateCommand=The command to execute for updating rows.
SqlDataSource_UpdateCommandType=The type of the update command.
SqlDataSource_UpdateParameters=Collection of parameters and values used in Update(). These parameters are merged with the parameters provided by data-bound controls.
SqlDataSource_Selected=This event is raised after the Select operation has completed.
SqlDataSource_Selecting=This event is raised before the Select operation has been executed.
SqlDataSourceCache_SqlCacheDependency=A semi-colon delimited string indicating which databases to use for the dependency in the format "database1:table1;database2:table2".
Parameter_DbType=The database type of the parameter. If this property is set to DbType.Object, the Type property will be used instead.
Parameter_DefaultValue=The default value to use if the value of the parameter is null.
Parameter_Direction=The direction of the parameter.
Parameter_Name=The name of the parameter.
Parameter_Size=The maximum size of the parameter.
Parameter_ConvertEmptyStringToNull=Whether an empty string should be treated as a null value. If this property is set to true and the value is an empty string, the default value will be used.
Parameter_Type=The type of the parameter.
Parameter_TypeNotSupported=The Type property of parameter '{0}' cannot be set when the DbType property is set.
Parameter_ValidateInput=Determines whether the parameter's value is being validated or not.
ControlParameter_ControlID=The ID of the control to get the property value from.
ControlParameter_PropertyName=A property name indicating the property from which to get the value. If none is specified, the ControlValueProperty attribute of the control will be examined to determine the value.
CookieParameter_CookieName=The name of the cookie to get the value from.
QueryStringParameter_QueryStringField=The name of the query string field to get the value from.
FormParameter_FormField=The name of the form field to get the value from.
SessionParameter_SessionField=The name of the session field to get the value from.
ProfileParameter_PropertyName=The profile property to get the value from.

HtmlInputHidden_OnServerChange=Fires when the value of the control changes.
HtmlInputImage_OnServerClick=Fires when the image is clicked.
HtmlInputText_ServerChange=Fires when the text within the control changes.
HtmlSelect_DataTextField=The field in the data source that provides the item text.
HtmlSelect_DataValueField=The field in the data source that provides the item value.
HtmlSelect_OnServerChange=Fires when the selection changes.
HtmlSelect_DataMember=The data member of the select.
HtmlTextArea_OnServerChange=Fires when the text within the control changes.

AccessDataSource_DataFile=The name of a Microsoft Office Access database file.
AdRotator_AdvertisementFile=XML file containing advertisements.
AdRotator_AlternateTextField=The element name that specifies which alternate text to retrieve.

AdRotator_ImageUrlField=The element name that specifies which image URL to retrieve.
AdRotator_KeywordFilter=Keyword for limiting selection of advertisements.
AdRotator_NavigateUrlField=The element name that specifies which advertisement Web page URL to retrieve.
AdRotator_Target=The target frame for the NavigateUrl of the advertisement.
AdRotator_OnAdCreated=Fired after an advertisement is retrieved from the AdvertisementFile.

AssemblyResourceLoader_HandlerNotRegistered=The WebResource.axd handler must be registered in the configuration to process this request.\r\n\r\n<!-- Web.Config Configuration File -->\r\n\r\n<configuration>\r\n    <system.web>\r\n        <httpHandlers>\r\n            <add path="WebResource.axd" verb="GET" type="System.Web.Handlers.AssemblyResourceLoader" validate="True" />\r\n        </httpHandlers>\r\n    </system.web>\r\n</configuration>
AssemblyResourceLoader_InvalidRequest=This is an invalid webresource request.
AssemblyResourceLoader_AssemblyNotFound=Assembly {0} not found.
AssemblyResourceLoader_ResourceNotFound=Resource {0} not found in assembly.
AssemblyResourceLoader_NoCircularReferences=The resource '{0}' cannot contain a reference to itself.

DataControls_ShowFooter=Whether to the show the control's footer.
DataControls_ShowHeader=Whether to the show the control's header.
DataControls_AutoGenerateColumns=Whether the columns are generated automatically at runtime based on the associated data source.
Button_CausesValidation=Whether the button causes validation to fire.
WebControl_RepeatLayout=Whether items are repeated in a table or in-flow.
DataSource_Updating=This event is raised before the Update operation has been executed.
DataSource_Inserting=This event is raised before the Insert operation has been executed.
DataSource_Deleting=This event is raised before the Delete operation has been executed.
DataSource_Updated=This event is raised after the Update operation has completed.
DataSource_Inserted=This event is raised after the Insert operation has completed.
DataSource_Deleted=This event is raised after the Delete operation has completed.
TableItem_VerticalAlign=The vertical alignment of the cell content.
Button_PostBackUrl=The URL to post to when the button is clicked.
LoginControls_DefaultRequiredFieldValidatorText=*
LoginControls_SuccessPageUrl=The URL that the user is directed to after the action has succeeded.
LoginControls_EditProfileIconUrl=The URL of the icon for the edit profile page
LoginControls_HelpPageIconUrl=The URL of the icon for the help page.
LoginControls_HelpPageUrl=The URL of the help page.
ChangePassword_ChangePasswordButtonImageUrl=The URL of an image to be displayed for the change password button.
ChangePassword_ContinueButtonImageUrl=The URL of an image to be displayed for the continue button.
PagerSettings_PreviousPageText=The text to be used on the previous page button.
PagerSettings_NextPageText=The text to be used on the next page button.
ChangePassword_UserNameRequiredErrorMessage=The text to be shown in the validation summary when the user name is empty.
ChangePassword_ConfirmPasswordCompareErrorMessage=The text to be shown in the validation summary when the password and confirm password do not match.
LoginControls_ConfirmPasswordRequiredErrorMessage=The text to be shown in the validation summary when the confirm password is empty.
LoginControls_AnswerRequiredErrorMessage=The text to be shown in the validation summary when the answer is empty.
LoginControls_TitleText=The text to be shown for the title.
ChangePassword_PasswordRecoveryText=The text to be shown for the password recovery link.
ChangePassword_ChangePasswordButtonText=The text to be shown for the change password button.
ChangePassword_HelpPageText=The text to be shown for the help link.
ChangePassword_CreateUserText=The text to be shown for the create user link.
ChangePassword_SuccessText=The text to be shown after the password has been changed.
LoginControls_UserNameLabelText=The text that identifies the user name textbox.
WebControl_SkipLinkText=The text that appears in the ALT attribute of the invisible image link that allows screen readers to skip repetitive content.
View_HeaderText=The text shown in the header if no HeaderTemplate is defined.
View_FooterText=The text shown in the footer if no FooterTemplate is defined.
View_EmptyDataText=The text shown in the empty data row if no EmptyDataTemplate is defined.
BoundField_NullDisplayText=The text displayed if the data bound to the field is null.
View_PagerTemplate=The template used for the pager.
WebControl_HeaderTemplate=The template used for the header.
View_EmptyDataTemplate=The template used for the control when no items are returned from the data source.
LoginControls_TitleTextStyle=The style of the title.
LoginControls_TextBoxStyle=The style of the textboxes.
LoginControls_LabelStyle=The style of the textbox labels.
;Table_SummaryTitleStyle=The style of the mobile summary title.
WebControl_InstructionTextStyle=The style of the instructions.
WebControl_HyperLinkStyle=The style of the hyperlinks.
WebControl_FailureTextStyle=The style of the failure text.
;Table_DetailLinkStyle=The style for the links shown in mobile details view.
View_EmptyDataRowStyle=The style applied to the row that contains the EmptyDataTemplate.
WebControl_HeaderStyle=The style applied to the header.
View_RowStyle=The style applied to rows.
View_InsertRowStyle=The style applied to rows when the control is in insert mode.
View_EditRowStyle=The style applied to rows when the control is in edit mode.
DataControls_Columns=The set of columns to be shown in the control.
HotSpot_Target=The name of the window/frame into which the navigation URL should be opened.
MembershipProvider_Name=The name of the membership provider.
View_DefaultMode=The mode that the control will begin in, and will revert to after a Cancel, Insert, or Update command.
LoginControls_TextLayout=The layout of the labels in relation to the textboxes.
UserName_InitialValue=The initial value in the user name textbox.
WebControl_SelectedIndex=The index of the currently selected item.
View_DataSourceReturnedNullView=The IDataSource that is the data source for DetailsView '{0}' returned a null view.  Check that the DataMember property value of DetailsView is valid.
WebControl_HorizontalAlign=The horizontal alignment of the control.
TableItem_HorizontalAlign=The horizontal alignment of the cell content.

DataSource_OldValuesParameterFormatString=The format string applied to the parameter names of the old values passed in an update command when old data values are being compared for conflicts. For example, "Original_{0}". To remove the prefix, specify "{0}" for the value of this property.
Binding_DataMember=The element or table name that contains the attributes or columns specified by TextField and ValueField.
Item_RepeatDirection=The direction in which items are laid out.
DataControls_Caption=The descriptive caption associated with the control.
;DataControl_SummaryViewColumn=The data source field corresponding to the mobile summary view.
DataSource_InvalidViewName=The data source '{0}' only supports a single view named '{1}'. You may also leave the view name (also called a data member) empty for the default view to be chosen.
WebControl_CommandName=The command associated with the button.
WebControl_CommandArgument=The command argument associated with the button.
WebControl_BackImageUrl=The background image within the control.
WebControl_TextAlign=The alignment of the text label with respect to each item.
WebControl_CaptionAlign=The alignment of the associated caption.
WebControl_InstructionText=Text that is displayed to give instructions.
DataControls_HeaderStyle=Style applied to the header.
DataControls_FooterStyle=Style applied to the footer.
HotSpot_HotSpotMode=Specifies whether the image map causes postback or navigation behavior.
DataControls_GridLines=Settings for grid lines between cells.
Password_InvalidPasswordErrorMessage=Please enter a different password.
Table_UseAccessibleHeader=Indicates that the control should use accessible header cells in its containing table control.
HtmlControl_OnServerClick=Fires when the control is clicked.
Button_OnCommand=Fires when the button is clicked and an associated command is defined.
Control_OnServerCheckChanged=Fires when the checked state of the control changes.
DataControls_OnItemUpdated=Fires after an Update Command is executed on the data source.
DataControls_OnItemDeleting=Fires before a Delete Command is executed on the data source.
DataControls_OnItemInserting=Fires before an Insert Command is executed on the data source.
DataControls_OnItemUpdating=Fires before an Update Command is executed on the data source.
DataControls_OnItemCreated=Fires when an item is created.
DataControls_OnItemDataBound=Fires after an item has been databound.
DataControls_OnItemDeleted=Fires after a Delete Command is executed on the data source.
DataControls_OnItemInserted=Fires after an Insert Command is executed on the data source.
DataControls_DataKeyNames=A comma-separated list of key fields in the data source.
DataControls_DataSourceMustBeCollectionWhenNotDataBinding=Data source must implement ICollection when calling CreateChildControls with dataBinding=false.
DataControls_OnRowDeleted=Fires after a Delete Command is executed on the data source.
DataSource_Filtering=This event is raised before the filter expression is applied to the data.
WebControl_PagerStyle=Controls the paging UI style associated with the control.
WebControl_CantFindProvider=Could not find the specified membership provider.

BaseDataList_CellPadding=The padding within cells.
BaseDataList_CellSpacing=The spacing between cells.
BaseDataList_DataKeyField=The field in the data source used to populate the DataKeys collection.
BaseDataList_DataKeys=The collection of data keys.
BaseDataList_DataMember=The table or view used for binding when a DataSet is used as a data source.
BaseDataList_OnSelectedIndexChanged=Fires when the current selection changes.
BaseValidator_ControlToValidate=ID of the control to validate.
BaseValidator_ErrorMessage=Message to display in a ValidationSummary when the validated control is invalid.
BaseValidator_IsValid=Indicates whether the validated control is in error.
BaseValidator_Display=How the validator is displayed.
BaseValidator_EnableClientScript=Indicates whether to perform validation on the client in up-level browsers.
BaseValidator_SetFocusOnError=Whether the validator sets focus on the control when invalid.
BaseValidator_Text=Text to display for the validator when the validated control is invalid.
BaseValidator_ValidationGroup=The group to which the validator belongs.
BaseCompareValidator_CultureInvariantValues=Whether we should do culture invariant conversion against the string value properties on the validator.
BoundColumn_DataField=The field to which this column is bound.
BoundColumn_DataFormatString=The formatting that is applied to the bound value. For example, "{0:d}" or "{0:c}".
BoundColumn_ReadOnly=Whether the column does not permit editing of its bound field.
BoundField_ApplyFormatInEditMode=Whether the data should be shown with the DataFormatString formatting applied when in edit mode.  If set to true, the data may have to be unformatted before it is updated in the data source.
BoundField_DataField=The field to which this field is bound.
BoundField_DataFormatString=The formatting that is applied to the bound value. For example, "{0:d}" or "{0:c}".
BoundField_HtmlEncode=Whether the field is HTML encoded when displayed to the user.
BoundField_ReadOnly=Whether the field does not permit editing of its bound field.
BoundField_ConvertEmptyStringToNull=Whether the field treats empty strings as null when the value is extracted from the field.
BulletedList_BulletedListDisplayMode=The display mode of the bulleted list.
BulletedList_BulletImageUrl=The URL of an image to use as bullets.
BulletedList_BulletStyle=The Style used for the bullets.
BulletedList_FirstBulletNumber=The value at which an ordered list begins numbering.
BulletedList_Target=The target frame for the URL.
BulletedList_OnClick=Fires when any linkbutton in list is clicked.
Button_OnClientClick=The client-side script that is executed on a client-side OnClick.
ButtonColumn_ButtonType=The type of button contained within the column.
ButtonColumn_CausesValidation=Whether pressing the button will cause validation to occur.
ButtonColumn_DataTextField=The field bound to the text property of the button.
ButtonColumn_DataTextFormatString=The formatting applied to the value bound to the Text property. For example, "select: {0}".
ButtonColumn_Text=The text used for the button.
ButtonColumn_ValidationGroup=The name of the validation group for which this button should cause validation.
;Button_SoftkeyLabel=The label shown when the Button is mapped to a mobile device softkey.
Button_Text=The text to be shown on the button.
Button_OnClick=Fires when the button is clicked.
Button_UseSubmitBehavior=Indicates whether the button render as a submit button.
CheckBox_AutoPostBack=Automatically posts back to the server when the control is clicked.
CheckBox_Checked=The checked state of the control.
CheckBox_InputAttributes=Attributes to be rendered on the HTML input element.
CheckBox_LabelAttributes=Attributes to be rendered on the HTML span element associated with the checkbox text.
CheckBox_Text=The text label shown with the check box.

CheckBoxField_Text=The Text property of the CheckBox in this field.

CheckBoxList_CellPadding=The padding between each item.
CheckBoxList_CellSpacing=The spacing between each item.
CheckBoxList_RepeatColumns=The number of columns used to lay out the items.
CircleHotSpot_X=The x coordinate of the circle center.
CircleHotSpot_Y=The y coordinate of the circle center.
CircleHotSpot_Radius=The radius of the circular hot spot.
CommandField_DefaultCancelCaption=Cancel
CommandField_DefaultDeleteCaption=Delete
CommandField_DefaultEditCaption=Edit
CommandField_DefaultInsertCaption=Insert
CommandField_DefaultNewCaption=New
CommandField_DefaultSelectCaption=Select
CommandField_DefaultUpdateCaption=Update
CommandField_CancelImageUrl=The URL of the image to be displayed as the cancel button.
CommandField_DeleteImageUrl=The URL of the image to be displayed as the delete button.
CommandField_EditImageUrl=The URL of the image to be displayed as the edit button.
CommandField_InsertImageUrl=The URL of the image to be displayed as the insert button.
CommandField_NewImageUrl=The URL of the image to be displayed as the new button.
CommandField_SelectImageUrl=The URL of the image to be displayed as the select button.
CommandField_UpdateImageUrl=The URL of the image to be displayed as the update button.
CommandField_ShowDeleteButton=Whether the field should display a delete button to the user.
CommandField_ShowCancelButton=Whether the field should display a cancel button to the user.
CommandField_ShowInsertButton=Whether the field should display an insert button to the user.
CommandField_ShowEditButton=Whether the field should display an edit button to the user.
CommandField_ShowSelectButton=Whether the field should display a select button to the user.
CommandField_CancelText=The text to be displayed on the cancel button.
CommandField_DeleteText=The text to be displayed on the delete button.
CommandField_EditText=The text to be displayed on the edit button.
CommandField_InsertText=The text to be displayed on the insert button.
CommandField_NewText=The text to be displayed on the new button.
CommandField_SelectText=The text to be displayed on the select button.
CommandField_UpdateText=The text to be displayed on the update button.

ButtonFieldBase_ButtonType=The type of the button to be rendered in the field.  The values are Link, Button, and Image.
ButtonFieldBase_CausesValidation=Whether pressing the button will cause validation to occur.
ButtonFieldBase_ValidationGroup=The name of the validation group for which this button should cause validation.
ButtonField_DataTextField=The field bound to the text property of the button.
ButtonField_DataTextFormatString=The formatting applied to the value bound to the Text property. For example, "select: {0}".
ButtonField_ImageUrl=The URL of the image if the ButtonType is Image.
ButtonField_Text=The text used for the button.

ChangePassword_CancelButtonType=The type of the cancel button.
ChangePassword_ContinueButtonType=The type of the continue button.
ChangePassword_ChangePasswordButtonType=The type of the change password button.
ChangePassword_CancelButtonImageUrl=The URL of an image to be displayed for the cancel button.
ChangePassword_CancelButtonText=The text of the cancel button.
ChangePassword_CancelButtonStyle=The style of the cancel button.
ChangePassword_CancelButtonClick=Raised when the cancel button is clicked
ChangePassword_CancelDestinationPageUrl=The URL to redirect to when the cancel button is clicked.
ChangePassword_ChangePasswordError=Raised if the change password attempt fails.
ChangePassword_ChangedPassword=Raised after the password has been changed.
ChangePassword_ChangingPassword=Raised before the change password attempt.
ChangePassword_ChangePasswordFailureText=The text to be shown when the change password attempt fails
ChangePassword_ContinueButtonClick=Raised when the continue button is clicked
LoginControls_ContinueDestinationPageUrl=The URL to redirect to when the continue button is clicked.
ChangePassword_ContinueButtonText=The text of the continue button.
ChangePassword_ContinueButtonStyle=The style of the continue button.
ChangePassword_CreateUserIconUrl=The URL of the icon for the create user page.
ChangePassword_CreateUserUrl=The URL of the create user page.
ChangePassword_DefaultChangePasswordTitleText=Change Your Password
ChangePassword_DefaultChangePasswordFailureText=Password incorrect or New Password invalid. New Password length minimum: {0}. Non-alphanumeric characters required: {1}.
ChangePassword_DefaultCancelButtonText=Cancel
ChangePassword_DefaultConfirmPasswordRequiredErrorMessage=Confirm New Password is required.
ChangePassword_DefaultConfirmNewPasswordLabelText=Confirm New Password:
ChangePassword_DefaultContinueButtonText=Continue
ChangePassword_DefaultNewPasswordLabelText=New Password:
ChangePassword_DefaultNewPasswordRequiredErrorMessage=New Password is required.
ChangePassword_DefaultConfirmPasswordCompareErrorMessage=The Confirm New Password must match the New Password entry.
ChangePassword_DefaultPasswordRequiredErrorMessage=Password is required.
ChangePassword_DefaultChangePasswordButtonText=Change Password

ChangePassword_DefaultSuccessTitleText=Change Password Complete
ChangePassword_DefaultSuccessText=Your password has been changed!

ChangePassword_DefaultUserNameLabelText=User Name:
ChangePassword_DefaultUserNameRequiredErrorMessage=User Name is required.
ChangePassword_EditProfileText=The text to be shown for the edit link.
ChangePassword_EditProfileUrl=The URL of the edit profile page
ChangePassword_DisplayUserName=True if the user name text box should be shown
;ChangePassword_FailureTextWrongType=FailureText control with ID {0} inside the ChangePasswordTemplate must be of type IStaticTextControl.
ChangePassword_InvalidBorderPadding=BorderPadding must be greater than or equal to -1.
;ChangePassword_LoginError=Raised if the authentication fails.

ChangePassword_PasswordHintText=Text that is displayed to give password guidelines.

ChangePassword_MailDefinition=The content and format of the e-mail message that contains the successful change password notification.


ChangePassword_NewPasswordRegularExpressionErrorMessage=The text to be shown when the new password regular expression fails.
ChangePassword_NewPasswordLabelText=The text that identifies the new password textbox.
ChangePassword_NewPasswordRegularExpression=Regular expression specification for valid new passwords.
ChangePassword_NewPasswordRequiredErrorMessage=The text to be shown in the validation summary when the new password is empty.

ChangePassword_NoCurrentPasswordTextBox={0}: ChangePasswordTemplate does not contain an IEditableTextControl with ID {1} for the current password.
ChangePassword_NoNewPasswordTextBox={0}: ChangePasswordTemplate does not contain an IEditableTextControl with ID {1} for the new password.

ChangePassword_NoUserNameTextBox={0}: ChangePasswordTemplate does not contain an IEditableTextControl with ID {1} for the username, this is required if DisplayUserName=true.
ChangePassword_UserNameTextBoxNotAllowed={0}: ChangePasswordTemplate contains an IEditableTextControl with ID {1} for the username, this is not allowed if DisplayUserName=false.
ChangePassword_PasswordHintStyle=The style of the password hint
ChangePassword_PasswordRecoveryIconUrl=The URL of the icon for the password recovery link.
ChangePassword_PasswordRecoveryUrl=The URL of the password recovery page.
ChangePassword_PasswordRequiredErrorMessage=The text to be shown in the validation summary when the password is empty.
ChangePassword_SendingMail=Raised before the e-mail is sent.
ChangePassword_SendMailError=Raised when there is an error sending mail.
ChangePassword_ChangePasswordButtonStyle=The style to be shown for the change password button.
ChangePassword_SuccessTitleText=The text to be shown for the title on success
ChangePassword_SuccessTextStyle=The style of the success text.
ChangePassword_ConfirmNewPasswordLabelText=The text that identifies the confirm password textbox.
ChangePassword_ValidatorTextStyle=The style of the validators' text.

CompareValidator_ControlToCompare=ID of the control to compare with.
CompareValidator_Operator=Comparison operation to apply to values.
CompareValidator_ValueToCompare=Value to compare against.
Content_ContentPlaceHolderID=The ID of the corresponding ContentPlaceHolder in the master page.

ContentPlaceHolder_only_in_master=ContentPlaceHolder can only be used in .master files.
ContentPlaceHolder_duplicate_contentPlaceHolderID=Duplicate ContentPlaceHolder '{0}' were found. ContentPlaceHolders require unique IDs.
CreateUserWizard_AutoGeneratePassword=Determines if the control autogenerates a password for the user.
CreateUserWizard_Answer=The initial value in the answer textbox.
CreateUserWizard_InvalidAnswerErrorMessage=Text to be shown when the security answer is invalid.
CreateUserWizard_AnswerLabelText=The text that identifies the answer textbox.
CreateUserWizard_CompleteSuccessText=The text to be shown after the user has been created.
CreateUserWizard_ContinueButtonType=The type of the continue button.
CreateUserWizard_CreatingUser=Raised before the user is created.
CreateUserWizard_CreatedUser=Raised after the user is created.
CreateUserWizard_ConfirmPasswordLabelText=The text that identifies the confirm password textbox.
CreateUserWizard_ContinueButtonText=The text of the continue button.
CreateUserWizard_ContinueButtonStyle=The style of the continue button.
CreateUserWizard_ContinueButtonClick=Raised when the continue button is clicked.
;CreateUserWizard_ContinueDestinationPageUrl=The URL of the continue page.
CreateUserWizard_CreateUserButtonImageUrl=The URL for the image of the create user button.
CreateUserWizard_CreateUserButtonType=The type of the create user button.
CreateUserWizard_CreateUserButtonText=The text of the create user button.
CreateUserWizard_CreateUserButtonStyle=The style of the create user button.
CreateUserWizard_CreateUserError=Raised when there is an error creating the user.
CreateUserWizard_CreateUserStep=The create user WizardStep.
;CreateUserWizard_DefaultCancelButtonText=Cancel
CreateUserWizard_DefaultConfirmPasswordCompareErrorMessage=The Password and Confirmation Password must match.
CreateUserWizard_DefaultConfirmPasswordRequiredErrorMessage=Confirm Password is required.
CreateUserWizard_DefaultConfirmPasswordLabelText=Confirm Password:
CreateUserWizard_DefaultContinueButtonText=Continue
CreateUserWizard_DefaultCreateUserButtonText=Create User
CreateUserWizard_DefaultDuplicateUserNameErrorMessage=Please enter a different user name.
CreateUserWizard_DefaultDuplicateEmailErrorMessage=The e-mail address that you entered is already in use. Please enter a different e-mail address.
CreateUserWizard_DefaultEmailLabelText=E-mail:
CreateUserWizard_DefaultUnknownErrorMessage=Your account was not created. Please try again.
CreateUserWizard_DefaultInvalidEmailErrorMessage=Please enter a valid e-mail address.
CreateUserWizard_DefaultInvalidPasswordErrorMessage=Password length minimum: {0}. Non-alphanumeric characters required: {1}.
CreateUserWizard_DefaultCompleteTitleText=Complete
CreateUserWizard_DefaultPasswordRequiredErrorMessage=Password is required.
CreateUserWizard_DefaultQuestionLabelText=Security Question:
CreateUserWizard_DefaultInvalidQuestionErrorMessage=Please enter a different security question.
CreateUserWizard_DefaultInvalidAnswerErrorMessage=Please enter a different security answer.
CreateUserWizard_DefaultAnswerLabelText=Security Answer:
CreateUserWizard_DefaultEmailRegularExpressionErrorMessage=Please enter a different e-mail.
CreateUserWizard_DefaultCompleteSuccessText=Your account has been successfully created.
CreateUserWizard_DefaultCreateUserTitleText=Sign Up for Your New Account
CreateUserWizard_DefaultUserNameLabelText=User Name:
CreateUserWizard_DefaultUserNameRequiredErrorMessage=User Name is required.
CreateUserWizard_DefaultAnswerRequiredErrorMessage=Security answer is required.
CreateUserWizard_DefaultEmailRequiredErrorMessage=E-mail is required.
CreateUserWizard_DefaultQuestionRequiredErrorMessage=Security question is required.
CreateUserWizard_DuplicateEmailErrorMessage=Text to be shown when a duplicate e-mail error is returned from create user.
CreateUserWizard_DuplicateUserNameErrorMessage=Text to be shown when a duplicate username error is returned from create user.
CreateUserWizard_EditProfileText=The text to be shown for the edit link.
CreateUserWizard_EditProfileUrl=The URL of the edit profile page.
CreateUserWizard_Email=The text to be shown in the initial textbox for e-mail.
CreateUserWizard_EmailRegularExpression=Regular expression specification for valid e-mail addresses.
CreateUserWizard_EmailRegularExpressionErrorMessage=The text to be shown in the validation summary when the e-mail does not match the regular expression.
CreateUserWizard_InvalidEmailErrorMessage=The text to be shown when the e-mail is invalid.
CreateUserWizard_EmailLabelText=The text that identifies the e-mail textbox.
CreateUserWizard_UnknownErrorMessage=The text that is displayed for unknown errors.
CreateUserWizard_CompleteStep=The complete WizardStep.
;CreateUserWizard_CompleteTitleText=The text for the complete step title.
CreateUserWizard_DisableCreatedUser=Determines if the newly created user will be disabled.
CreateUserWizard_LoginCreatedUser=Determines if the newly created user will be logged into the site.
CreateUserWizard_QuestionAndAnswerRequired=Determines whether a security question and answer is required to create the user.
CreateUserWizard_RequireEmail=Determines whether an e-mail address is required to create the user.
CreateUserWizard_ErrorMessageStyle=The style of the error message.
CreateUserWizard_PasswordHintStyle=The style of the password hint text.
CreateUserWizard_MailDefinition=The content and format of the e-mail message that contains the create user notification.
CreateUserWizard_InvalidPasswordErrorMessage=The text to be shown when the password is invalid.
CreateUserWizard_PasswordRegularExpression=Regular expression specification for valid new passwords.
CreateUserWizard_PasswordRegularExpressionErrorMessage=The text to be shown in the validation summary when the password does not match the regular expression.
CreateUserWizard_PasswordRequiredErrorMessage=The text to be shown in the validation summary when the password is empty.
CreateUserWizard_NoPasswordTextBox={0}: CreateUserWizardStep.ContentTemplate does not contain an IEditableTextControl with ID {1} for the new password, this is required if AutoGeneratePassword = true.
CreateUserWizard_NoUserNameTextBox={0}: CreateUserWizardStep.ContentTemplate does not contain an IEditableTextControl with ID {1} for the username.
CreateUserWizard_NoEmailTextBox={0}: CreateUserWizardStep.ContentTemplate does not contain an IEditableTextControl with ID {1} for the e-mail, this is required if RequireEmail = true.
CreateUserWizard_NoQuestionTextBox={0}: CreateUserWizardStep.ContentTemplate does not contain an IEditableTextControl with ID {1} for the security question, this is required if your membership provider requires a question and answer.
CreateUserWizard_NoAnswerTextBox={0}: CreateUserWizardStep.ContentTemplate does not contain an IEditableTextControl with ID {1} for the security answer, this is required if your membership provider requires a question and answer.
CreateUserWizard_Question=The initial value in the question textbox.
CreateUserWizard_InvalidQuestionErrorMessage=Text to be shown when the security question is invalid.
CreateUserWizard_QuestionLabelText=The text that identifies the question textbox.
CreateUserWizard_QuestionRequiredErrorMessage=The text to be shown in the validation summary when the question is empty.
CreateUserWizard_EmailRequiredErrorMessage=The text to be shown in the validation summary when the e-mail is empty.

CreateUserWizard_SendMailError=Raised when there is an error sending mail.
CreateUserWizard_SideBar_Label_Not_Found={0} control must contain a Label with ID {1} in its ItemTemplate.
CreateUserWizard_CompleteSuccessTextStyle=The style of the complete success text.

CreateUserWizard_DuplicateCreateUserWizardStep=There can only be one CreateUserWizardStep in your WizardSteps.
CreateUserWizard_DuplicateCompleteWizardStep=There can only be one CompleteWizardStep in your WizardSteps.
CreateUserWizard_ValidatorTextStyle=The style of the validators' text.
TemplatedWizardStep_ContentTemplate=The content template for the wizard step.
TemplatedWizardStep_CustomNavigationTemplate=The custom navigation template for the wizard step.
CreateUserWizardStep_AllowReturnCannotBeSet=AllowReturn cannot be set.
CreateUserWizardStep_StepTypeCannotBeSet=StepType cannot be changed.
CreateUserWizardStep_OnlyAllowedInCreateUserWizard=CreateUserWizardStep is only allowed in a CreateUserWizard control.
CompleteWizardStep_OnlyAllowedInCreateUserWizard=CompleteWizardStep is only allowed in a CreateUserWizard control.
CustomValidator_ClientValidationFunction=Client script validation function.
CustomValidator_ValidateEmptyText=Whether the validator validates the control when the text of the control is empty.
CustomValidator_ServerValidate=Called to perform validation on the server.
BaseDataBoundControl_DataSourceID=The control ID of an IDataSource that will be used as the data source.
BaseDataBoundControl_DataSource=The data source that is used to populate the items in the list.
BaseDataBoundControl_OnDataBound=Fires after the control has been databound.
DataBoundControl_DataMember=The table or view used for binding against.
DataBoundControl_EnableModelValidation=Whether page validation will be performed after validation is done in the model.
DataBoundControl_ItemType=The name of the model type used in the SelectMethod, InsertMethod, UpdateMethod, and DeleteMethod.
DataBoundControl_SelectMethod=The name of the method on the page that is called when this control does a select operation.
DataBoundControl_UpdateMethod=The name of the method on the page that is called when this control does an update operation.
DataBoundControl_InsertMethod=The name of the method on the page that is called when this control does an insert operation.
DataBoundControl_DeleteMethod=The name of the method on the page that is called when this control does a delete operation.
DataControlField_AccessibleHeaderText=The text rendered by some controls as the abbreviated text within the header of this field.
DataControlField_ControlStyle=The style applied to each control within this field.
DataControlField_FooterStyle=The style applied to footer within this field.
DataControlField_FooterText=The text within the footer of this field.
DataControlField_HeaderImageUrl=The URL of the image to be displayed in the header of this field.
DataControlField_HeaderStyle=The style applied to header within this field.
DataControlField_HeaderText=The text within the header of this field.
DataControlField_InsertVisible=Whether the field is present when in Insert mode.
DataControlField_ItemStyle=The style applied to rows within this field.
DataControlField_ShowHeader=Whether the field's HeaderText is visible.  This property is used to control layout by some controls.
DataControlField_SortExpression=The sort expression associated with the field.
DataControlField_Visible=Whether the field is visible or not.
DataGrid_AllowCustomPaging=Whether to turn on support for custom paging.
DataGrid_AllowPaging=Whether to turn on paging functionality in the DataGrid.
DataGrid_AllowSorting=Whether the column headers can be used to sort the associated data source.
DataGrid_AlternatingItemStyle=The style applied to alternating items.
DataGrid_CurrentPageIndex=The index of the current page.
;DataGrid_DetailTitleStyle=The style used for the mobile details view.
DataGrid_EditItemIndex=The index of the item shown in edit mode.
DataGrid_EditItemStyle=The style applied to items in edit mode.
DataGrid_ItemStyle=The style applied to items.
DataGrid_Items=The collection of items.
;DataGrid_NextRow=Next Row
DataGrid_PageCount=The current page count.
DataGrid_PagerStyle=Controls the paging UI associated with the control.
DataGrid_PageSize=The number of items from the data source to display per page.
;DataGrid_PreviousRow=Previous Row
DataGrid_SelectedItem=The currently selected item.
DataGrid_SelectedItemStyle=The style applied to selected items.
DataGrid_OnCancelCommand=Fires when a Cancel CommandEvent is generated within the DataGrid.
DataGrid_OnDeleteCommand=Fires when a Delete CommandEvent is generated within the DataGrid.
DataGrid_OnEditCommand=Fires when an Edit CommandEvent is generated within the DataGrid.
DataGrid_OnItemCommand=Fires when an event is generated within the DataGrid.
DataGrid_OnPageIndexChanged=Fires when the current page index of the DataGrid has changed.
DataGrid_OnSortCommand=Fires when a Sort CommandEvent is generated within the DataGrid.
DataGrid_OnUpdateCommand=Fires when an Update CommandEvent is generated within the DataGrid.
DataGrid_VisibleItemCount=The count of visible items.
DataGridColumn_FooterStyle=The style applied to footer within this column.
DataGridColumn_FooterText=The text within the footer of this column.
DataGridColumn_HeaderImageUrl=The URL of the image to be displayed in the header of this column.
DataGridColumn_HeaderStyle=The style applied to header within this column.
DataGridColumn_HeaderText=The text within the header of this column.
DataGridColumn_ItemStyle=The style applied to rows within this column.
DataGridColumn_SortExpression=The sort expression associated with the column.
DataGridColumn_Visible=Whether the column is visible or not.
DataGridPagerStyle_Mode=The type of paging UI to use.
DataGridPagerStyle_PageButtonCount=Number of pages to show in the paging UI.
DataGridPagerStyle_Position=The position of the navigation bar.
DataGridPagerStyle_Visible=Whether the paging UI is visible.
DataList_AlternatingItemStyle=The style applied to alternating items.
DataList_AlternatingItemTemplate=The template used for alternating items.
DataList_EditItemIndex=The index of the item shown in edit mode.
DataList_EditItemStyle=The style applied to items in edit mode.
DataList_EditItemTemplate=The template used for items in edit mode.
DataList_ExtractTemplateRows=Whether to extract the rows defined in the table within the template content.
DataList_FooterTemplate=Template used for the footer.
DataList_HeaderTemplate=Template used for the header.
DataList_ItemStyle=The style applied to items.
DataList_Items=The collection of items.
DataList_ItemTemplate=The template used for items.
DataList_RepeatColumns=The number of columns to be used for the layout.
DataList_SelectedItemStyle=The style applied to selected items.
DataList_SelectedItem=The currently selected item.
DataList_SelectedItemTemplate=The template used for the currently selected item.
DataList_SeparatorStyle=The style applied to separator items.
DataList_SeparatorTemplate=The template used for separator items.
DataList_OnCancelCommand=Fires when a Cancel CommandEvent is generated within the DataList.
DataList_OnDeleteCommand=Fires when a Delete CommandEvent is generated within the DataList.
DataList_OnEditCommand=Fires when an Edit CommandEvent is generated within the DataList.
DataList_OnItemCommand=Fires when a CommandEvent is generated within the DataList.
DataList_OnUpdateCommand=Fires when an Update CommandEvent is generated within the DataList.
DetailsView_AllowPaging=Whether to turn on paging functionality in the DetailsView.
DetailsView_AlternatingRowStyle=The style applied to alternating rows.
DetailsView_AutoGenerateDeleteButton=Whether a delete button is generated automatically at runtime.
DetailsView_AutoGenerateEditButton=Whether an edit button is generated automatically at runtime.
DetailsView_AutoGenerateInsertButton=Whether an insert button is generated automatically at runtime.
DetailsView_AutoGenerateRows=Whether the rows are generated automatically at runtime based on the associated data source.
DetailsView_CellPadding=The padding within cells.
DetailsView_CellSpacing=The spacing between cells.
DetailsView_CommandRowStyle=The style applied to rows that contain command fields.
DetailsView_DataKey=The Data key of the currently displayed item.
DetailsView_PageIndex=The index of the current data item being displayed by the control.
DetailsView_EnablePagingCallbacks=Whether client script for paging should be rendered to browser clients that can support callbacks.
DetailsView_FooterStyle=The style applied to the footer.
DetailsView_FooterTemplate=The template used for the footer.
DetailsView_FieldHeaderStyle=The style applied to the header column.
DetailsView_OnPageIndexChanged=Fires when the page index of the DetailsView has changed.
DetailsView_OnPageIndexChanging=Fires when the page index of the DetailsView is changing.
DetailsView_OnItemCommand=Fires when a CommandEvent is generated within the DetailsView.
DetailsView_OnItemCreated=Fires when the item is created.
DetailsView_OnModeChanged=Fires after the DetailsView's mode changes.
DetailsView_OnModeChanging=Fires before the DetailsView's mode changes.
DetailsView_PagerSettings=Controls the paging UI settings associated with the control.
DetailsView_Fields=The set of fields to be shown in the control.
DetailsView_Rows=The collection of rows.

FontInfo_Name=The preferred font to be used to render the control.
FontInfo_Names=Sequence of fonts that can be used to render the control.
FontInfo_Size=The size of the font.
FontInfo_Bold=Whether the font is bold.
FontInfo_Italic=Whether the font is italic.
FontInfo_Underline=Whether the font is underlined.
FontInfo_Strikeout=Whether the font has a strike through it.
FontInfo_Overline=Whether the font contains an overline.
FormView_AllowPaging=Whether to turn on paging functionality in the FormView.
FormView_CellPadding=The padding within cells.
FormView_CellSpacing=The spacing between cells.
FormView_DataKey=The Data key of the currently displayed item.
FormView_PageIndex=The index of the current page being displayed by the control.
FormView_EditItemTemplate=The template used when the control is in edit mode.
FormView_RenderOuterTable=Whether to render a table around the templates in the FormView.
FormView_FooterStyle=The style applied to the footer.
FormView_FooterTemplate=The template used for the footer.
FormView_InsertItemTemplate=The template used when the control is in insert mode.
FormView_OnPageIndexChanged=Fires when the page index of the FormView has changed.
FormView_OnPageIndexChanging=Fires when the page index of the FormView is changing.
FormView_OnItemCommand=Fires when a CommandEvent is generated within the FormView.
FormView_OnItemCreated=Fires when the item is created.
FormView_OnModeChanged=Fires after the FormView's mode changes.
FormView_OnModeChanging=Fires before the FormView's mode changes.
FormView_Rows=The collection of rows.

HiddenField_OnValueChanged=Fires when the value of the control changes.
HiddenField_Value=The value stored in the hidden field.
HotSpot_AccessKey=Keyboard shortcut used by the HotSpot.
HotSpot_AlternateText=Tool tip to display over the hotspot.
HotSpot_PostBackValue=The value for postback event.
HotSpot_NavigateUrl=URL for navigation.
HotSpot_TabIndex=The tab order of the HotSpot.
HyperLink_ImageUrl=The URL of an image to be displayed.
HyperLink_ImageHeight=The height of an image to be displayed.
HyperLink_ImageWidth=The width of an image to be displayed.
HyperLink_NavigateUrl=The URL to navigate to.
HyperLink_Target=The target frame for the NavigateUrl.
HyperLink_Text=The text to be shown for the link.
HyperLinkColumn_DataNavigateUrlField=The field bound to the NavigateUrl property of the hyperlink.
HyperLinkColumn_DataTextField=The field bound to the text property of the hyperlink.
HyperLinkColumn_NavigateUrl=The URL navigated to by the hyperlink.
HyperLinkColumn_Text=The text used for the hyperlink.
HyperLinkField_DataNavigateUrlFields=The fields bound to the NavigateUrl property of the hyperlink.
HyperLinkField_DataNavigateUrlFormatString=The formatting applied to the value bound to the NavigateUrl property of the hyperlink. For example, "page.aspx?id={0}".
HyperLinkField_DataTextField=The field bound to the text property of the hyperlink.
HyperLinkField_DataTextFormatString=The formatting applied to the value bound to the Text property of the hyperlink. For example, "go back to: {0}".
HyperLinkField_NavigateUrl=The URL navigated to by the hyperlink.
HyperLinkField_Text=The text used for the hyperlink.
Image_AlternateText=The alternate text displayed when the image cannot be shown.
Image_DescriptionUrl=The URL containing a more detailed description of the image.
Image_GenerateEmptyAlternateText=Specifies whether an empty alternate text attribute is generated when the alternate text is not specified.
Image_ImageAlign=The alignment of the image.
Image_ImageUrl=The URL of the image to be shown.
ImageButton_OnClick=Fires when the image is clicked.
ImageButton_OnCommand=Fires when the image is clicked and an associated command is defined.
;ImageButton_SoftkeyLabel=The label shown when the ImageButton is mapped to a mobile device softkey.
ImageField_AlternateText=The value of the AlternateText property of the image.
ImageField_DataAlternateTextField=The field bound to the AlternateText property of the image.
ImageField_DataAlternateTextFormatString=The formatting applied to the value bound to the AlternateText property of the image when using the DataAlternateTextField. For example, "image: {0}".
ImageField_ConvertEmptyStringToNull=Whether the field treats empty strings as null when the value is extracted from the field.
ImageField_ImageUrlField=The field to which the image URL is bound.
ImageField_ImageUrlFormatString=The formatting applied to the value bound to the ImageUrl property of the image.
ImageField_NullImageUrl=The URL of the image displayed if the data bound to the field is null.
ImageField_ReadOnly=Whether the field does not permit editing of its image field.
ImageMap_Click=Fires when a hotspot is clicked.
ImageMap_HotSpots=The hotspots collection.
IRenderOuterTableControl_CannotSetStyleWhenDisableRenderOuterTable=The style property '{0}' cannot be used while RenderOuterTable is disabled on the {1} control with ID '{2}'.
Label_AssociatedControlID=The ID of the control associated with the Label.
Label_Text=The text to be shown for the Label.
Literal_Text=The text to be shown for the literal.
Literal_Mode=Determines whether the text is transformed or encoded.
;LinkButton_SoftkeyLabel=The label shown when the LinkButton is mapped to a mobile device softkey.
LinkButton_Text=The text to be shown for the link.
LinkButton_OnClick=Fires when the button is clicked.
ListBox_Rows=The number of visible rows to display.
ListBox_SelectionMode=The selection mode for the list.
ListControl_AppendDataBoundItems=Append data bound items to statically declared list items.
ListControl_AutoPostBack=Automatically postback to the server after selection is changed.
ListControl_DataTextField=The field in the data source which provides the item text.
ListControl_DataTextFormatString=The formatting applied to the text field. For example, "{0:d}".
ListControl_DataValueField=The field in the data source which provides the item value.
ListControl_Items=The collection of items in the list.
ListControl_SelectedItem=The currently selected item.
ListControl_SelectedValue=The value of the currently selected item.
ListControl_OnSelectedIndexChanged=Fires when the selected index has been changed.
ListControl_Text=The text value.
ListControl_TextChanged=Fires when the text property has been changed.
Login_LoggedIn=Raised after the user is authenticated.
Login_Authenticate=Raised to authenticate the user.
Login_LoggingIn=Raised before the user is authenticated.
Login_CheckBoxStyle=The style of the checkbox.
Login_CreateUserUrl=The URL of the create user page.
Login_CreateUserIconUrl=The URL of an icon for the create user link.
Login_DefaultFailureText=Your login attempt was not successful. Please try again.
LoginControls_DefaultPasswordLabelText=Password:
Login_DefaultPasswordRequiredErrorMessage=Password is required.
Login_DefaultRememberMeText=Remember me next time.
Login_DefaultLoginButtonText=Log In
Login_DefaultTitleText=Log In
Login_DefaultUserNameLabelText=User Name:
Login_DefaultUserNameRequiredErrorMessage=User Name is required.
Login_DestinationPageUrl=The URL that the user is directed to upon successful login.
Login_DisplayRememberMe=True if the remember me checkbox is displayed.
Login_HelpPageIconUrl=The URL of an icon for the help page link.
Login_InvalidBorderPadding=BorderPadding must be greater than or equal to -1.
Login_LoginError=Raised if the authentication fails.
Login_FailureAction=The action to take when a login attempt fails.
Login_FailureText=The text to be shown when a login attempt fails.
Login_Orientation=The general layout of the control.
Login_NoPasswordTextBox={0}: LayoutTemplate does not contain an IEditableTextControl with ID {1} for the password.
Login_NoUserNameTextBox={0}: LayoutTemplate does not contain an IEditableTextControl with ID {1} for the username.
LoginControls_PasswordLabelText=The text that identifies the password textbox.
Login_PasswordRecoveryUrl=The URL of the password recovery page.
Login_PasswordRecoveryIconUrl=The URL of an icon for the password recovery link.
Login_PasswordRequiredErrorMessage=The text to be shown in the validation summary when the password is empty.
Login_RememberMeSet=Whether the remember me checkbox is initially checked.
Login_RememberMeText=The text to be shown for the remember me checkbox.
LoginControls_RenderOuterTable=Whether to render a table around the templates in this control.
Login_LoginButtonImageUrl=The URL of an image to be displayed for the login button.
Login_LoginButtonStyle=The style of the login button.
Login_LoginButtonType=The type of the login button.
Login_LoginButtonText=The text to be shown for the login button.
Login_BorderPadding=The padding from the border of the control.
;Login_BorderSpacing=The spacing from the border of the control.
Login_ValidatorTextStyle=The style of the validators' text.
Login_VisibleWhenLoggedIn=True if the control remains visible when a user is logged in.
LoginName_InvalidFormatString=FormatString is not a valid format string.
LoginName_FormatString=The format specification.  {0} is replaced with the user name of the logged in user.
LoginName_DesignModeUserName=[UserName]
LoginStatus_LoginImageUrl=The URL of the image to be shown for the login button.
LoginStatus_LoginText=The text to be shown for the login button.
LoginStatus_LogoutAction=The action to perform after logging out.
LoginStatus_LogoutImageUrl=The URL of the image to be shown for the logout button.
LoginStatus_LogoutPageUrl=The URL redirected to after logging out.
LoginStatus_LogoutText=The text to be shown for the logout button.
LoginStatus_LoggedOut=Raised after the user is logged out.
LoginStatus_LoggingOut=Raised before the user is logged out.
LoginStatus_DefaultLoginText=Login
LoginStatus_DefaultLogoutText=Logout
LoginView_RoleGroups=Associates templates with roles.
LoginView_ViewChanged=Raised after the view is changed.
LoginView_ViewChanging=Raised before the view is changed.
EmbeddedMailObject_Name=The name of the embedded mail object.
EmbeddedMailObject_Path=The absolute path to the embedded mail object file.
MailDefinition_EmbeddedObjects=Embedded objects within the e-mail message.
MailDefinition_BodyFileName=The file that contains the body of the e-mail message.
MailDefinition_CC=A comma-delimited list of e-mail addresses that receive a carbon copy (CC) of the e-mail message.
MailDefinition_From=The sender's e-mail address.
MailDefinition_InvalidReplacements=The replacements dictionary must contain only strings.
MailDefinition_IsBodyHtml=True if the body is html;
MailDefinition_NoFromAddressSpecified=A from e-mail address must be specified in the From property or the system.net/mailSettings/smtp config section.
MailDefinition_Priority=The priority of the e-mail message.
MailDefinition_Subject=The subject line of the e-mail message.
MenuItemStyle_HorizontalPadding=The amount of horizontal padding around the item text.
MenuItemStyle_ItemSpacing=The amount of vertical spacing between items.
MenuItemStyle_VerticalPadding=The amount of vertical padding around the item text.
MenuItemStyleCollection_InvalidArgument=MenuItemStyleCollection can only contain MenuItemStyles.
MenuItemBinding_Depth=The menu depth associated with the menu level object.
MenuItemBinding_Enabled=The default value for the Enabled property for all menu items in this level when databinding.
MenuItemBinding_EnabledField=The table column or XML attribute name to use for the menu item's Enabled property when databinding.
MenuItemBinding_FormatString=The format string to use when formatting the value retrieved from TextField, for example: "Item {0}".
MenuItemBinding_ImageUrl=The default image URL for all menu items in this level when databinding.
MenuItemBinding_ImageUrlField=The table column or XML attribute name to use for the menu item's ImageUrl property when databinding.
MenuItemBinding_NavigateUrl=The default navigation URL for all menu items in this level when databinding.
MenuItemBinding_NavigateUrlField=The table column or XML attribute name to use for the menu item's NavigateUrl property when databinding.
MenuItemBinding_PopOutImageUrl=The default pop-out image URL for all menu items in this level when databinding.
MenuItemBinding_PopOutImageUrlField=The table column or XML attribute name to use for the menu item's PopOutImageUrl property when databinding.
MenuItemBinding_Selectable=The default value for the Selectable property for all menu items in this level when databinding.
MenuItemBinding_SelectableField=The table column or XML attribute name to use for the menu item's Selectable property when databinding.
MenuItemBinding_SeparatorImageUrl=The default separator image URL for all menu items in this level when databinding.
MenuItemBinding_SeparatorImageUrlField=The table column or XML attribute name to use for the menu item's SeparatorImageUrl property when databinding.
MenuItemBinding_Target=The default navigation target for all menu items in this level when databinding.
MenuItemBinding_TargetField=The table column or XML attribute name to use for the menu item's Target property when databinding.
MenuItemBinding_Text=The default text for all menu items in this level when databinding.
MenuItemBinding_TextField=The table column or XML attribute name to use for a menu item's Text property when databinding.
MenuItemBinding_ToolTip=The default tooltip for all menu items in this level when databinding.
MenuItemBinding_ToolTipField=The table column or XML attribute name to use for the menu item's ToolTip property when databinding.
MenuItemBinding_Value=The default value for all menu items in this level when databinding.
MenuItemBinding_ValueField=The table column or XML attribute name to use for a menu item's Value property when databinding. When binding to a data source, this is usually a unique key in the current level view.
MenuItem_Enabled=Enabled state of the menu item.
MenuItem_ImageUrl=The URL for the image for the menu item.
MenuItem_NavigateUrl=The URL to which the menu item navigates when selected.
MenuItem_PopOutImageUrl=The URL for the image that shows if the menu item has children.
MenuItem_Selectable=If false, the menu item can't be selected, but its child menu items are still accessible.
MenuItem_Selected=The select state of the menu item.
MenuItem_SeparatorImageUrl=The URL for the image that will be used as a separator.
MenuItem_Target=The navigate target used when the menu item is selected.
MenuItem_Text=The display text of the menu item.
MenuItem_ToolTip=The tooltip of the menu item.
MenuItem_Value=The value of the menu item.
MenuItemCollection_InvalidArrayType=MenuItem[] expected.
Menu_Bindings=The data bindings for menu items in the menu.
Menu_CannotChangeRenderingMode=The RenderingMode property cannot be changed once rendering or pre-rendering begins.
Menu_DataSourceReturnedNullView=The IHierarchicalDataSource that is the data source for Menu '{0}' returned a null view for the given view path.
Menu_DesignTimeDummyItemText=Menu Item
Menu_DisappearAfter=The time (in milliseconds) after which the popped-out menus will disappear.
Menu_DynamicBottomSeparatorImageUrl=The URL of the image that will serve as a bottom separator in the dynamic part of the menu.
Menu_DynamicDisplayPopOutImage=Determines if the default pop-out image is displayed in the dynamic part of the menu.
Menu_DynamicHorizontalOffset=The horizontal offset in pixels between the right border of a menu item and the left border of its sub-menu.
Menu_DynamicHoverStyle=The style that gets applied when the mouse hovers over an item in the dynamic part of the menu (only available when client script is enabled).
Menu_DynamicItemFormatString=The format string that gets applied to the dynamic item texts, for example "Item {0}".
Menu_DynamicMenuItemStyle=The style of menu items that are in the dynamic part of the menu.
Menu_DynamicMenuStyle=The style of submenus in the dynamic part.
Menu_DynamicPopoutImageUrl=The URL of the image that will show that an item has a sub-menu in the dynamic part of the menu.
Menu_DynamicPopoutImageText=The alternate text for the pop-out image in the dynamic part of the menu.
Menu_DynamicSelectedStyle=The style applied to the selected item if in the dynamic part of the menu.
Menu_DynamicTemplate=The template for dynamic menu items.
Menu_DynamicTopSeparatorImageUrl=The URL of the image that will serve as a top separator in the dynamic part of the menu.
Menu_DynamicVerticalOffset=The vertical offset in pixels between the top of a menu item and the top of its sub-menu.
;Menu_ExpandImageUrl=The URL to the image that expands an item when hovered over.
;Menu_HideSelectElements=When set to false, the menu won't hide the Select elements on the page when displaying pop-out menus. The Select elements may then appear above the pop-out menus.
Menu_IncludeStyleBlock=Determines whether or not to render the inline style block (only used in standards compliance mode)
Menu_InvalidDataBinding=Could not bind to the '{0}' property (specified by {1}) while databinding Menu.  Please check the Bindings fields.
Menu_InvalidDepth=The depth of the selected item is larger than StaticDisplayLevels + MaximumDynamicDisplayLevels. This could be caused by an invalid declaration, by a change since the last request or by a forged request.
Menu_InvalidNavigation=Can't open a disabled menu item.
Menu_InvalidSelection=Can't select a disabled or unselectable menu item.
Menu_Items=The collection of items in the menu.
Menu_ItemWrap=Whether the item text should be word wrapped.
Menu_LevelMenuItemStyles=The menu item styles to be applied at each level of the menu.
Menu_LevelSelectedStyles=The selected menu item styles to be applied at each level of the menu.
Menu_LevelSubMenuStyles=The sub-menu styles to be applied at each level of the menu.
Menu_MaximumDynamicDisplayLevels=The maximum number of pop-outs supported by the menu.
Menu_MaximumDynamicDisplayLevelsInvalid=MaximumDynamicDisplayLevels must be a positive integer.
Menu_MenuItemClick=Fired after an item has been clicked.
Menu_MenuItemDataBound=Fired after a MenuItem is databound.
Menu_Orientation=Whether the static part of the menu should be rendered horizontally or vertically.
Menu_PathSeparator=The character used to separate parts of the path.
Menu_RenderingMode=Whether to render the menu with tables or unordered lists.
Menu_ScrollDown=Scroll down
Menu_ScrollDownImageUrl=The URL of the image that will enable scrolling down in sub-menus.
Menu_ScrollDownText=The tooltip text for the scroll-down button in sub-menus.
Menu_ScrollUpImageUrl=The URL of the image that will enable scrolling up in sub-menus.
Menu_SkipLinkTextDefault=Skip Navigation Links
Menu_ScrollUp=Scroll up
Menu_ScrollUpText=The tooltip text for the scroll-up button in sub-menus.
Menu_StaticBottomSeparatorImageUrl=The URL of the image that will serve as a bottom separator in the static part of the menu.
Menu_StaticDisplayLevels=The number of levels displayed in the static part of the menu.
Menu_StaticDisplayPopOutImage=Determines if the default pop-out image is displayed in the static part of the menu.
Menu_StaticHoverStyle=The style that gets applied when the mouse hovers over an item in the static part of the menu (only available when client script is enabled).
Menu_StaticItemFormatString=The format string that gets applied to the static item texts, for example "Item {0}".
Menu_StaticMenuItemStyle=The style of menu items that are in the static part of the menu.
Menu_StaticMenuStyle=The style of the static part of the menu.
Menu_StaticPopoutImageText=The alternate text for the pop-out image in the static part of the menu.
Menu_StaticPopoutImageUrl=The URL of the image that will show that an item has a sub-menu in the static part of the menu.
Menu_StaticSelectedStyle=The style applied to the selected item if in the static part of the menu.
Menu_StaticSubMenuIndent=The indentation between a static menu item and its static sub-menu.
Menu_StaticTemplate=The template for static menu items.
Menu_StaticTopSeparatorImageUrl=The URL of the image that will serve as a top separator in the static part of the menu.
ModelErrorMessage_AssociatedControlID=The ID of the control associated with the model state error message.
ModelErrorMessage_ModelStateKey=The key of the model state value to display the first error for.
ModelErrorMessage_SetFocusOnError=Whether focus is set on the associated control when a model state error message is found.
MultiView_ActiveView=The active View control.
MultiView_ActiveViewChanged=Fires when the active view control is changed.
MultiView_ActiveViewIndex_out_of_range=The ActiveViewIndex must be less than Views.Count and at least -1.
MultiView_cannot_have_children_of_type=MultiView cannot have children of type '{0}'.  It can only have children of type View.
Multiview_rendering_block_not_allowed=A rendering block cannot be nested inside a MultiView control.
MultiView_Views=The collection of Views.
MultiView_invalid_view_id=MultiView with id '{0}' could not find a View '{1}' specified in CommandArgument with CommandName '{2}'.
MultiView_invalid_view_index_format=CommandArgument '{0}' with CommandName '{1}' is not a valid integer for ActiveViewIndex.
MultiView_view_not_found=The view {0} cannot be found inside {1}, the ActiveView must be a View control directly inside a MultiView.
MultiView_ActiveViewIndex_less_than_minus_one=ActiveViewIndex is being set to '{0}'.  It cannot be less than -1.
MultiView_ActiveViewIndex_equal_or_greater_than_count=ActiveViewIndex is being set to '{0}'.  It must be smaller than the current number of View controls '{1}'. For dynamically added views, make sure they are added before or in Page_PreInit event.
View_CannotSetVisible=The Visible property of a View control can only be set by setting the active View of a MultiView.
SiteMapPath_CannotFindUrl=Could not find the sitemap node with URL '{0}'.
SiteMapPath_CurrentNodeStyle=The style applied to current node.
SiteMapPath_CurrentNodeTemplate=The template used for the current node.
;SiteMapPath_HoverStyle=The style applied for mouse hover.
SiteMapPath_OnItemDataBound=Fires when an item is databound.
SiteMapPath_NodeStyle=The style applied to navigation nodes.
SiteMapPath_NodeTemplate=The template used for the navigation nodes.
SiteMapPath_PathDirection=The direction of path to render.
SiteMapPath_PathSeparator=The separator string between each node.
SiteMapPath_PathSeparatorTemplate=The template used for the path separators.
SiteMapPath_PathSeparatorStyle=The style applied to the path separators.
SiteMapPath_Provider=The SitemapProvider used by this control.
SiteMapPath_RenderCurrentNodeAsLink=Indicates whether the current node will be rendered as a link.
SiteMapPath_RootNodeStyle=The style applied to root node.
SiteMapPath_RootNodeTemplate=The template used for the root node.
SiteMapPath_SiteMapProvider=The name of the sitemap provider.
SiteMapPath_SkipToContentText=The text that appears in the ALT attribute of the invisible image link that allows screen readers to skip repetitive content.
SiteMapPath_Default_SkipToContentText=Skip Navigation Links
SiteMapPath_ShowToolTips=Indicates whether tooltip will be shown.
SiteMapPath_ParentLevelsDisplayed=The number of parent nodes to display.
SubMenuStyle_HorizontalPadding=The amount of horizontal padding around the items.
SubMenuStyle_VerticalPadding=The amount of vertical padding around the items.
SubMenuStyleCollection_InvalidArgument=SubMenuStyleCollection can only contain SubMenuStyles.
Panel_BackImageUrl=The background image of the panel.
Panel_DefaultButton=The default button for the panel.
Panel_Direction=The direction of text in the panel.
Panel_GroupingText=The text of group box around this control's contents.
Panel_HorizontalAlign=The horizontal alignment of the content.
Panel_ScrollBars=The appearance of scrollbars for the panel.
Panel_Wrap=Whether the content should wrap or not.
PasswordRecovery_AnswerLabelText=The text that identifies the answer textbox.
PasswordRecovery_AnswerLookupError=Raised when the answer provided is incorrect.
PasswordRecovery_VerifyingAnswer=Raised before the answer is validated.
PasswordRecovery_SendingMail=Raised before the e-mail is sent.
PasswordRecovery_VerifyingUser=Raised before the username is looked up.
PasswordRecovery_DefaultAnswerLabelText=Answer:
PasswordRecovery_DefaultAnswerRequiredErrorMessage=Answer is required.
PasswordRecovery_DefaultBody=Please return to the site and log in using the following information.\nUser Name: <%UserName%>\nPassword: <%Password%>\n\n
PasswordRecovery_DefaultGeneralFailureText=Your attempt to retrieve your password was not successful. Please try again.
PasswordRecovery_DefaultUserNameFailureText=We were unable to access your information. Please try again.
PasswordRecovery_DefaultQuestionInstructionText=Answer the following question to receive your password.
PasswordRecovery_DefaultQuestionFailureText=Your answer could not be verified. Please try again.
PasswordRecovery_DefaultQuestionLabelText=Question:
PasswordRecovery_DefaultQuestionTitleText=Identity Confirmation
PasswordRecovery_DefaultSubject=Password
PasswordRecovery_DefaultSubmitButtonText=Submit
PasswordRecovery_DefaultSuccessText=Your password has been sent to you.
PasswordRecovery_DefaultUserNameInstructionText=Enter your User Name to receive your password.
PasswordRecovery_DefaultUserNameLabelText=User Name:
PasswordRecovery_DefaultUserNameRequiredErrorMessage=User Name is required.
PasswordRecovery_DefaultUserNameTitleText=Forgot Your Password?
;PasswordRecovery_FromNotSpecified=The sender's e-mail address must be set in the smtpMail config section, the PasswordRecovery.MailDefinition.From field, or in the SendingMail event handler.
PasswordRecovery_GeneralFailureText=The text to be shown when there is an unexpected failure.
PasswordRecovery_InvalidBorderPadding=BorderPadding must be greater than or equal to -1.
PasswordRecovery_MailDefinition=The content and format of the e-mail message that contains the successful recovered password notification.
PasswordRecovery_NoUserNameTextBox={0}: UserNameTemplate does not contain an IEditableTextControl with ID {1} for the username.
PasswordRecovery_NoAnswerTextBox={0}: QuestionTemplate does not contain an IEditableTextControl with ID {1} for the answer.

PasswordRecovery_QuestionFailureText=The text to be shown when the answer is incorrect.
PasswordRecovery_QuestionInstructionText=Text that is displayed to give instructions for answering the question.
PasswordRecovery_QuestionLabelText=The text that identifies the question textbox.
PasswordRecovery_QuestionTemplate=Template for the question view.
PasswordRecovery_QuestionTemplateContainer=Container for the question view.
PasswordRecovery_QuestionTitleText=The text to be shown for the title when answering the question.
PasswordRecovery_RecoveryNotSupported=Membership provider does not support password retrieval or reset.
PasswordRecovery_SubmitButtonStyle=The style of the submit button.
PasswordRecovery_SubmitButtonType=The type of the submit button.

PasswordRecovery_SuccessTemplate=Template for the success view.
PasswordRecovery_SuccessTemplateContainer=Container for the success view.
PasswordRecovery_SuccessText=The text to be shown after the password e-mail has been sent.
PasswordRecovery_SuccessTextStyle=The style of the success text.
PasswordRecovery_UserLookupError=Raised when the user name is invalid.
PasswordRecovery_UserNameFailureText=The text to be shown when the user name is invalid.
PasswordRecovery_UserNameInstructionText=Text that is displayed to give instructions for entering the user name.
PasswordRecovery_UserNameLabelText=The text that identifies the user name textbox.
PasswordRecovery_UserNameTemplate=Template for the username view.
PasswordRecovery_UserNameTemplateContainer=Container for the username view.
PasswordRecovery_UserNameTitleText=The text to be shown for the title when entering the user name.
;PasswordRecovery_UserNameWrongType=UserName control with ID {0} inside UserNameTemplate must be of type ITextControl.
;PasswordRecovery_ValidatorTextStyle=The style of the validators' text.
PolygonHotSpot_Coordinates=The coordinates of the points representing the polygon.
RadioButton_GroupName=Group that this radio button belongs to.
RadioButtonList_CellPadding=The padding between each item.
RadioButtonList_CellSpacing=The spacing between each item.
RadioButtonList_RepeatColumns=The number of columns to use to lay out the items.
RangeValidator_MaximumValue=Maximum value for the control being validated.
RangeValidator_MinmumValue=Minimum value for the control being validated.
RangeValidator_Type=Data type of values for comparison.
ReadOnlyHierarchicalDataSourceView_CantAccessPathInEnumerable=Can't use a view path when the data source implements IHierarchicalEnumerable and not IHierarchicalDataSource.
RectangleHotSpot_Bottom=The bottom coordinate of the rectangular hot spot.
RectangleHotSpot_Right=The right coordinate of the rectangular hot spot.
RectangleHotSpot_Top=The top coordinate of the rectangular hot spot.
RectangleHotSpot_Left=The left coordinate of the rectangular hot spot.
RegularExpressionValidator_ValidationExpression=Regular expression to determine validity.
Repeater_AlternatingItemTemplate=The template used for alternating items.
Repeater_DataMember=The table or view used for binding when a DataSet is used a data source.
Repeater_FooterTemplate=The template used for the footer.
Repeater_Items=The collection of items.
Repeater_ItemTemplate=The template used for the items.
Repeater_OnItemCommand=Fires when an event is generated within the DataList.
Repeater_SeparatorTemplate=The template used for the separators.

RepeatInfo_ListLayoutDoesNotSupportHeaderFooterSeparator=The UnorderedList and OrderedList layouts do not support headers, footers, or separators.
RepeatInfo_ListLayoutOnlySupportsVerticalLayout=The UnorderedList and OrderedList layouts only support vertical layout.
RepeatInfo_ListLayoutDoesNotSupportMultipleColumn=The UnorderedList and OrderedList layouts do not support multi-column layouts.
RepeatInfo_ListLayoutDoesNotSupportImpliedOuterTable=The UnorderedList and OrderedList layouts do not support implied outer tables.

RequiredFieldValidator_InitialValue=Initial value of the field to validate.
SiteMapDataSource_Description=Connect to the site navigation tree for this application (requires a valid sitemap file at the application root).
SiteMapDataSource_DisplayName=Site Map
SiteMapDataSource_Provider=The SitemapProvider used by this control.
SiteMapDataSource_ContainsListCollection=Indicates whether the data source control contains ListCollection.
SiteMapDataSource_StartingNodeOffset=The depth at which the base node of the SiteMap starts.
SiteMapDataSource_StartingNodeUrl=The URL of the starting node.
SiteMapDataSource_SiteMapProvider=The name of the provider used to populate the data source control.
SiteMapDataSource_ProviderNotFound=The SiteMapProvider '{0}' cannot be found.
SiteMapDataSource_DefaultProviderNotFound=Default provider is not defined in your configuration files. You must specify the defaultProvider within <siteMap> section to enable sitemap feature.
SiteMapDataSource_ShowStartingNode=Indicates whether the starting node should be returned.
SiteMapDataSource_StartFromCurrentNode=Indicates whether to display from the current node.
SiteMapDataSource_StartingNodeUrlAndStartFromcurrentNode_Defined=StartingNodeUrl may not be set when StartFromCurrentNode is true.
GridView_AllowCustomPaging=Whether to turn on support for custom paging.
GridView_AllowPaging=Whether to turn on paging functionality in the GridView.
GridView_AllowSorting=Whether the field headers can be used to sort the associated data source.
GridView_AlternatingRowStyle=The style applied to alternating rows.
GridView_AutoGenerateDeleteButton=Whether the delete button is generated automatically at runtime.
GridView_AutoGenerateEditButton=Whether the edit button is generated automatically at runtime.
GridView_AutoGenerateSelectButton=Whether the select button is generated automatically at runtime.
GridView_CellPadding=The padding within cells.
GridView_CellSpacing=The spacing between cells.
GridView_DataKeys=The collection of data key field values.
GridView_EditIndex=The index of the row shown in edit mode.
GridView_EditRowStyle=The style applied to rows in edit mode.
GridView_EnableSortingAndPagingCallbacks=Whether client script for sorting and paging should be rendered to browser clients that can support callbacks.
GridView_EnablePersistedSelection=Whether selection should be based on DataKeys or row index.
GridView_EmptyDataRowStyle=The style applied to the row that contain the EmptyDataTemplate.
;GridView_NextRow=Next Row
GridView_OnRowCancelingEdit=Fires when a Cancel event is generated within the GridView.
GridView_OnRowEditing=Fires when an Edit event is generated within the GridView.
GridView_OnPageIndexChanging=Fires when the current page index of the GridView is changing.
GridView_OnPageIndexChanged=Fires when the current page index of the GridView has changed.
GridView_OnSelectedIndexChanged=Fires when a row is selected in the GridView, after the selection is complete.
GridView_OnSelectedIndexChanging=Fires when a new row is selected in the GridView, before the new row is selected.
GridView_OnSorted=Fires when a column is sorted in the GridView, after the sort is complete.
GridView_OnSorting=Fires when a column is sorted in the GridView, before the sort occurs.
GridView_OnRowCommand=Fires when an event is generated within the GridView.
GridView_OnRowCreated=Fires when a row is created.
GridView_OnRowDataBound=Fires after a row has been databound.
GridView_PageCount=The current page count.
GridView_PageIndex=The index of the current page.
GridView_PagerSettings=Controls the paging UI settings associated with the control.
GridView_PageSize=The number of rows from the data source to display per page.
;GridView_PreviousRow=Previous Row
GridView_RowHeaderColumn=The data source field corresponding to the column that is the row header.
GridView_Rows=The collection of rows.
GridView_ShowHeaderWhenEmpty=Whether to the show the header when displaying the EmptyDataTemplate.
GridView_SelectedIndex=The index of the currently selected row.
GridView_SelectedRow=The currently selected row.
GridView_SelectedRowStyle=The style applied to selected rows.
GridView_SortDirection=The direction in which to sort the field.
GridView_SortExpression=Sort expression used to sort the data source to which the GridView is binding.
GridView_SortedAscendingCellStyle=The style applied to cells when sorting in ascending order.
GridView_SortedDescendingCellStyle=The style applied to cells when sorting in descending order.
GridView_SortedAscendingHeaderStyle=The style applied to header when sorting in ascending order.
GridView_SortedDescendingHeaderStyle=The style applied to header when sorting in descending order.
GridView_VirtualItemCount=The count of visible items.
PagerSettings_FirstPageImageUrl=The URL to the image to be used for the first page button.
PagerSettings_FirstPageText=The text to be used on the first page button.
PagerSettings_LastPageImageUrl=The URL to the image to be used for the last page button.
PagerSettings_LastPageText=The text to be used on the last page button.
PagerSettings_Mode=The type of paging UI to use.
PagerSettings_NextPageImageUrl=The URL to the image to be used for the next page button.
PagerSettings_PageButtonCount=Number of pages to show in the paging UI.
PagerSettings_PreviousPageImageUrl=The URL to the image to be used for the previous page button.
PagerStyle_Position=The position of the navigation bar.
PagerStyle_Visible=Whether the paging UI is visible.
Style_BackColor=Background color of the controls applied with this style.
Style_BorderColor=Border color of the controls applied with this style.
Style_BorderWidth=Thickness of the border around the controls applied with this style.
Style_BorderStyle=Style of the border of controls applied with this style.
Style_CSSClass=CSS class name applied to the user of this style.
Style_Font=The font used for text in controls applied with this style.
Style_ForeColor=Foreground color of the controls applied with this style.
Style_Height=The height of the controls applied with this style.
Style_Width=The width of the controls applied with this style.

Substitution_MethodNameDescr=The name of the substitution callback static method.
Substitution_CannotBeInCachedControl=Substitution controls cannot be used in cached User Controls or cached Master Pages.
Substitution_BadMethodName=Cannot find static method '{0}' matching HttpResponseSubstitutionCallback.
Substitution_NotAllowed=Adding a Substitution control to a control collection is not permitted.
Substitution_SiteNotAllowed=Setting the Site on a Substitution control is not permitted.
Table_SectionsMustBeInOrder=The table {0} must contain row sections in order of header, body, then footer.
Table_BackImageUrl=The background image of the table.
Table_Caption=The caption associated with the table.
Table_CellSpacing=The spacing between the table cells.
Table_CellPadding=The padding within the table cells.
Table_GridLines=Which grid lines to display between the table cells.
Table_HorizontalAlign=The horizontal alignment of the table.
Table_Rows=The collection of rows within the table.

TableCell_AssociatedHeaderCellNotFound=The cell {0} listed as an associated header cell was not found.
TableCell_AssociatedHeaderCellID= Lists the header cell IDs associated with the current table cell. This attribute is rendered with the HTML headers attribute.
TableCell_ColumnSpan=The number of columns this cell spans.
TableCell_RowSpan=The number of rows this cell spans.
TableCell_Text=The text to be rendered within the cell.
TableCell_Wrap=Whether the cell content should wrap or not.
TableHeaderCell_AbbreviatedText=Sets the abbreviated text for a header cell. The abbreviated text is rendered with the HTML abbr attribute. The abbr attribute is important for screen readers since it allows them to read a shortened version of a header for each cell in the table.
TableHeaderCell_Scope=Represents the cells that the header applies to. Renders the HTML SCOPE attribute. Possible values are from the TableHeaderScope enumeration: Column and Row.
TableHeaderCell_CategoryText=Contains a list of categories associated with the table header (read by screen readers). The categories can be any string values. The categories are rendered as a comma delimited list using the HTML axis attribute.
TableItemStyle_Wrap=Whether the cell content should wrap or not.
TableRow_Cells=The collection of cells within the table row.
TableRow_TableSection=The tablesection for the table row.
TableSectionStyle_Visible=Determines whether the table section is visible.
TableStyle_BackImageUrl=The background image within the table.
TableStyle_CellPadding=The spacing within cells of the table.
TableStyle_CellSpacing=The spacing between cells of the table.
TableStyle_GridLines=The type of grid to be shown within the table.
TableStyle_InvalidCellSpacing=CellSpacing must be greater than -1.
TableStyle_InvalidCellPadding=CellPadding must be greater than -1.
TableStyle_HorizontalAlign=The horizontal alignment of the table.
Control_Missing_Attribute=The required attribute '{0}' is not found on '{1}' control.

TemplateColumn_EditItemTemplate=The template to use for rows in edit mode in this column.
TemplateColumn_FooterTemplate=The template to use for the footer in this column.
TemplateColumn_HeaderTemplate=The template to use for the header in this column.
TemplateColumn_ItemTemplate=The template to use for rows in this column.
TemplateField_AlternatingItemTemplate=The template to use for alternating items in this field.
;TemplateField_ConvertEmptyStringToNull=Whether the field treats empty strings as null when the value is extracted from the field.
TemplateField_EditItemTemplate=The template to use for items in edit mode in this field.
TemplateField_FooterTemplate=The template to use for the footer in this field.
TemplateField_HeaderTemplate=The template to use for the header in this field.
TemplateField_InsertItemTemplate=The template to use for items in insert mode in this field.
TemplateField_ItemTemplate=The template to use for items in this field.
TextBox_AutoCompleteType=The type of input content used by client browsers for auto completion.
TextBox_AutoPostBack=Automatically postback to the server after the text is modified.
TextBox_Columns=The width of the textbox in characters.
TextBox_InvalidColumns=Columns must be greater than -1.
TextBox_InvalidRows=Rows must be greater than -1.
TextBox_MaxLength=The maximum number of characters that can be entered.
TextBox_TextMode=The behavior mode of the textbox.
TextBox_ReadOnly=Whether the text in the control can be changed or not.
TextBox_Rows=The number of lines to display for a multi-line textbox.
TextBox_Text=The text value.
TextBox_Wrap=Whether the text should wrap or not.
TextBox_OnTextChanged=Fires when the text property has been changed.
TreeNodeStyle_ChildNodesPadding=Gets and sets the vertical spacing between the node and its child nodes.
TreeNodeStyle_HorizontalPadding=The amount of horizontal padding around the node text.
TreeNodeStyle_ImageUrl=The URL of the image rendered on nodes.
TreeNodeStyle_NodeSpacing=The amount of vertical spacing between nodes.
TreeNodeStyle_VerticalPadding=The amount of vertical padding around the node text.
TreeNodeStyleCollection_InvalidArgument=TreeNodeStyleCollection can only contain TreeNodeStyles.
TreeNodeBinding_Depth=The tree depth associated with the tree level object.
TreeNodeBinding_EmptyBindingText=(Empty)
TreeNodeBinding_FormatString=The format string to use when formatting the value retrieved from TextField, for example: "Node {0}".
TreeNodeBinding_ImageToolTip=The default image tooltip for all nodes in this level when data binding.
TreeNodeBinding_ImageToolTipField=The table column or XML attribute name to use for the node's ImageToolTip property when data binding.
TreeNodeBinding_ImageUrl=The default image URL for all nodes in this level when data binding.
TreeNodeBinding_ImageUrlField=The table column or XML attribute name to use for the node's ImageUrl property when data binding.
TreeNodeBinding_NavigateUrl=The default navigation URL for all nodes in this level when data binding.
TreeNodeBinding_NavigateUrlField=The table column or XML attribute name to use for the node's NavigateUrl property when data binding.
TreeNodeBinding_PopulateOnDemand=If set to true, the TreeView populates data at the hierarchy-level represented by the TreeNodeBinding object on-demand (when the node is expanded), either by calling a service directly from the client (if TreeView.PopulateNodesFromClient is set) or by causing a postback to the server.  If set to false, the TreeView populates node data all-at-once, when the page containing the TreeView is first requested.
TreeNodeBinding_SelectAction=The default select action for all nodes in this level when data binding.
TreeNodeBinding_ShowCheckBox=The default show checkbox state for all nodes in this level when data binding.
TreeNodeBinding_Target=The default navigation target for all nodes in this level when data binding.
TreeNodeBinding_TargetField=The table column or XML attribute name to use for the node's Target property when data binding.
TreeNodeBinding_Text=The default text for all nodes in this level when data binding.
TreeNodeBinding_TextField=The table column or XML attribute name to use for a node's Text property when data binding.
TreeNodeBinding_ToolTip=The default tooltip for all nodes in this level when data binding.
TreeNodeBinding_ToolTipField=The table column or XML attribute name to use for the node's ToolTip property when data binding.
TreeNodeBinding_Value=The default value for all nodes in this level when data binding.
TreeNodeBinding_ValueField=The table column or XML attribute name to use for an item's Value property when databinding. When binding to a data source, this is usually a unique key in the current level view.
TreeNodeCollection_InvalidArrayType=TreeNode[] expected.
TreeNode_Checked=The checked state of the tree node.
TreeView_DataSourceReturnedNullView=The IHierarchicalDataSource that is the data source for TreeView '{0}' returned a null view for the given view path.
TreeNode_Expanded=The expand state of the tree node.
TreeNode_ImageToolTip=The tooltip of the image associated with the tree node.
TreeNode_ImageUrl=The URL for the image for the tree node.
TreeView_InvalidDataBinding=Could not bind to the '{0}' property (specified by {1}) while data binding TreeView.  Please check the Bindings fields.
;TreeView_InvalidDepth=The depth of the selected item is larger than MaxDatabindDepth. This could be caused by an invalid declaration, by a change since the last request or by a forged request.
TreeNode_NavigateUrl=The URL to which the tree node navigates when selected.
TreeNode_PopulateOnDemand=Whether the node should populate its child nodes on demand.
TreeView_PopulateOnlyForDataSourceControls=PopulateOnDemand only supported when binding the TreeView to a data source control using the DataSourceID property or when the TreeNodePopulate event is handled.
TreeView_PopulateOnlyEmptyNodes=PopulateOnDemand can't be set to true on a node that already has children.
TreeNode_Selected=The select state of the tree node.
TreeNode_SelectAction=The action that the node takes when selected.
TreeNode_ShowCheckBox=Whether the node should show its checkbox.
TreeNode_Target=The navigate target used when the node is selected.
TreeNode_Text=The display text of the tree node.
TreeNode_ToolTip=The tooltip of the tree node.
TreeNode_Value=The value of the tree node.
TreeView_AutoGenerateDataBindings=Whether the tree will automatically bind to data.
TreeView_DataBindings=The data bindings for nodes in the tree.
TreeView_CollapseImageToolTip=The tooltip format string of the image that collapses a node when clicked.
TreeView_CollapseImageToolTipDefaultValue=Collapse {0}
TreeView_CollapseImageUrl=The URL of the image that collapses a node when clicked.
TreeView_Default_SkipLinkText=Skip Navigation Links.
TreeView_EnableClientScript=Whether the TreeView should try to use client-script.
TreeView_ExpandImageToolTip=The tooltip format string of the image that expands a node when clicked.
TreeView_ExpandImageToolTipDefaultValue=Expand {0}
TreeView_ExpandImageUrl=The URL to the image that expands a node when clicked.
TreeView_HoverNodeStyle=The style that gets applied when the mouse hovers over a node (only available when client script is enabled).
TreeView_ExpandDepth=When data binding, how many levels of the tree to expand by default.
TreeView_ImageSet=Whether to use the packaged images or those specified in the properties of TreeView.
TreeView_LeafNodeStyle=The style applied to leaf nodes.
TreeView_LevelStyles=The tree styles to be applied at each level of the tree.
TreeView_LineImagesFolderUrl=The relative folder that contains the line images for the TreeView.
TreeView_MaxDataBindDepth=The maximum depth to which the TreeView will databind.
TreeView_NoExpandImageUrl=The URL of the image that represents the absence of an expand/collapse icon.
TreeView_NodeIndent=The number of pixels to indent each node.
TreeView_Nodes=The initial collection of nodes for the tree.
TreeView_NodeStyle=The default style applied to all nodes.
TreeView_NodeWrap=Whether the node text should be word wrapped.
TreeView_ParentNodeStyle=The style applied to parent nodes (excluding root nodes).
TreeView_PathSeparator=The character used to separate parts of the path.
TreeView_PopulateNodesFromClient=Whether the TreeView should try to populate nodes from the client (without posting back).
TreeView_RootNodeStyle=The style applied to root nodes.
TreeView_SelectedNodeStyle=The style applied to the selected node.
TreeView_ShowCheckBoxes=The node types next to which checkboxes should be shown.
TreeView_ShowExpandCollapse=Whether to show the expand/collapse icon next to the nodes.
TreeView_ShowLines=Whether to show lines connecting the tree nodes.
TreeView_SkipLinkText=The text that appears in the ALT attribute of the invisible image link that allows screen readers to skip repetitive content.
TreeView_CheckChanged=Fired after the check state of a node changes.
TreeView_SelectedNodeChanged=Fired after the selected node changes.
TreeView_TreeNodeCollapsed=Fired after a TreeNode is collapsed.
TreeView_TreeNodeExpanded=Fired after a TreeNode is expanded.
TreeView_TreeNodeDataBound=Fired after a TreeNode is databound.
TreeView_TreeNodePopulate=Fired when a TreeNode is being populated.
ValidationSummary_DisplayMode=Format for error summary display.
ValidationSummary_HeaderText=Header text to display in the summary.
ValidationSummary_ShowMessageBox=Whether to display a message box on error in up-level browsers.
ValidationSummary_ShowModelStateErrors=Whether the model state errors from a data operation should be shown.
ValidationSummary_ShowSummary=Whether to display the summary text on the page.
ValidationSummary_ShowValidationErrors=Whether the validation summary from validators should be shown.
ValidationSummary_EnableClientScript=Whether to update the summary on the client in up-level browsers.
ValidationSummary_ValidationGroup=The group to which the validation summary belongs.
PostBackControl_ValidationGroup=The group that should be validated when the control causes a postback.
AutoPostBackControl_CausesValidation=Whether the control causes validation to fire.

Calendar_Caption=The caption associated with the calendar.
Calendar_CellPadding=The padding within cells.
Calendar_CellSpacing=The spacing between cells.
Calendar_DayHeaderStyle=The style applied to the day header row.
Calendar_DayNameFormat=Format for day header text.
Calendar_DayStyle=The style applied to days.
Calendar_FirstDayOfWeek=Which day of the week is displayed first.
Calendar_NextMonthText=Text for the next month button.
Calendar_NextPrevFormat=Format for month navigation buttons.
Calendar_NextPrevStyle=The style applied to month navigation buttons.
Calendar_OtherMonthDayStyle=The style applied to days from adjacent months
Calendar_PrevMonthText=Text for the previous month button
Calendar_SelectedDate=The currently selected date.
Calendar_SelectedDates=The set of selected dates for use when range selection is enabled.
Calendar_SelectedDayStyle=The style of currently selected days.
Calendar_SelectionMode=Determines whether days, weeks and months are selectable.
Calendar_SelectMonthText=Text for the select month button.
Calendar_SelectorStyle=The style applied to the week and month selector column.
Calendar_SelectWeekText=Text for select week button.
Calendar_ShowDayHeader=True if showing days of week header.
Calendar_ShowGridLines=True if showing grid lines.
Calendar_ShowNextPrevMonth=True if showing the next/previous month buttons.
Calendar_ShowTitle=True if showing the title.
Calendar_TitleFormat=Format for month title in header.
Calendar_TitleStyle=The style applied to the title.
Calendar_TodayDayStyle=The style applied to today's date.
Calendar_TodaysDate=The current date as displayed by the Calendar.
Calendar_VisibleDate=The month to be displayed.
Calendar_WeekendDayStyle=The style applied to weekend days.
Calendar_OnDayRender=Fires as a day is being rendered.
Calendar_OnSelectionChanged=Fires when selection is changed by the user.
Calendar_OnVisibleMonthChanged=Fires when visible month is changed by the user.
Calendar_TitleText=Calendar
Calendar_PreviousMonthTitle=Go to the previous month
Calendar_NextMonthTitle=Go to the next month
Calendar_SelectMonthTitle=Select the whole month
Calendar_SelectWeekTitle=Select week {0}

View_Activate=Fires when the view control is activated.
View_Deactivate=Fires when the view control is deactivated.
ViewCollection_must_contain_view=Controls added to a ViewCollection must be of type View.
WebControl_AccessKey=Keyboard shortcut used by the control.
WebControl_InvalidAccessKey=AccessKey too long, cannot be more than one character.
WebControl_Attributes=Tag attributes of the control.
WebControl_BackColor=Color of the background of the control.
WebControl_BorderColor=Color of the border around the control.
WebControl_BorderWidth=Width of the border around the control.
WebControl_BorderStyle=Style of the border around the control.
WebControl_CSSClassName=CSS Class name applied to the control.
WebControl_ControlStyle=The style associated with the control.
WebControl_ControlStyleCreated=Whether the style associated with the control has been created.
WebControl_Enabled=Enabled state of the control.
WebControl_Font=The font used for text within the control.
WebControl_ForeColor=Color of the text within the control.
WebControl_Height=The height of the control.
WebControl_Style=Low-level access to control styles.
WebControl_TabIndex=The tab order of the control.
WebControl_Tooltip=The tooltip displayed when the mouse is over the control.
WebControl_Width=The width of the control.
;WebServiceDataSourceControl_CacheEnabled=Whether to internally cache the Web Service data.
;WebServiceDataSourceControl_CacheKey=Key used as part of the cache id.
;WebServiceDataSourceControl_CacheTime=Length of time to keep the cache.
;WebServiceDataSourceControl_Method=Describes the Web Service method to be called.
;WebServiceDataSourceControl_Timeout=Milliseconds to wait for a Web Service response.
;WebServiceDataSourceControl_TypeName=The Web Service proxy type identifier.
;WebServiceDataSourceControl_URL=An alternate URL for the Web Service.
;WebServiceDataSourceControl_OnWebServiceExceptionCaught=Fires when an exception is thrown in calling the Web Service.
;WebServiceMethod_Parameters=A list of parameters to be passed to the Web Service method.
;WebServiceMethod_Name=The name of the Web Service method.
;Wizard_only_one_wizardStep_allowed=Only one <wizardSteps> is allowed inside the {0} control.
Wizard_ActiveStep=The active WizardStep control.
Wizard_ActiveStepIndex=The index of the active WizardStep control.
Wizard_ActiveStepIndex_out_of_range=The ActiveStepIndex must be less than WizardSteps.Count and at least -1.  For dynamically added steps, make sure they are added before or in Page_PreInit event.
Wizard_CancelButtonClick=Fires when the cancel button is clicked.
Wizard_CancelButtonImageUrl=The URL for the image to be used for the cancel button.
Wizard_CancelButtonText=The text of the cancel button.
Wizard_CancelButtonType=The button type of the cancel button.
Wizard_CancelButtonStyle=The style of the cancel button.
Wizard_CancelDestinationPageUrl=The URL to redirect to when the cancel button is clicked.
Wizard_CellPadding=The padding within cells.
Wizard_CellSpacing=The spacing between cells.
Wizard_Default_CancelButtonText=Cancel
Wizard_DisplayCancelButton=Indicates whether cancel button is displayed.
Wizard_FinishDestinationPageUrl=The URL to redirect to when the finish button is clicked.
Wizard_FinishCompleteButtonStyle=The style of the finish step button.
Wizard_FinishCompleteButtonText=The text of the finish step button.
Wizard_FinishCompleteButtonType=The button type of the finish step button.
Wizard_FinishCompleteButtonImageUrl=The URL for the image to be used for the finish button.
Wizard_FinishPreviousButtonStyle=The style of the finish step's previous button.
Wizard_FinishPreviousButtonText=The text of the finish step's previous button.
Wizard_FinishPreviousButtonType=The button type of the finish step's previous button.
Wizard_FinishPreviousButtonImageUrl=The URL for the image to be used for the finish step's previous button
Wizard_FinishNavigationTemplate=The template used for finish navigation layout.
Wizard_InvalidBubbleEvent=The command '{0}' is not valid for the previous step, make sure the step type is not changed between postbacks.
Wizard_NavigationButtonStyle=The style of the navigation buttons.
Wizard_NavigationStyle=The style applied to the navigation layout.
Wizard_StepNextButtonStyle=The style of the next step button.
Wizard_StepNextButtonText=The text of the next step button.
Wizard_StepNextButtonType=The button type of the next step button.
Wizard_StepNextButtonImageUrl=The URL for the image to be used for the next button.
Wizard_StepPreviousButtonStyle=The style of the previous step button.
Wizard_StepPreviousButtonText=The text of the previous step button.
Wizard_StepPreviousButtonType=The button type of the previous step button.
Wizard_StepPreviousButtonImageUrl=The URL for the image to be used for the previous button.
Wizard_SideBarButtonStyle=The style of the side bar buttons.
Wizard_DisplaySideBar=Indicates whether sidebar is displayed.
Wizard_SideBarStyle=The style applied to the side bar.
Wizard_SideBarTemplate=The template used for the side bar layout.
Wizard_StartNavigationTemplate=The template used for the start navigation layout.
Wizard_StartNextButtonStyle=The style of the start step's next button.
Wizard_StartNextButtonText=The text of the start step's next button.
Wizard_StartNextButtonType=The type of the start step's next button.
Wizard_StartNextButtonImageUrl=The URL for the image to be used for the start step's next button.
Wizard_Step_Not_In_Wizard=The step cannot be found in Wizard's WizardSteps collection.
Wizard_StepNavigationTemplate=The template used for the step navigation layout.
Wizard_StepStyle=The style applied to the steps.
Wizard_WizardSteps=The collection of the WizardStep controls inside the control.
Wizard_HeaderText=The header text of wizard control.
Wizard_Default_SkipToContentText=Skip Navigation Links.
Wizard_ActiveStepChanged=Fires when the active step is changed.
Wizard_FinishButtonClick=Fires when the finish button is clicked.
Wizard_NextButtonClick=Fires when the next button is clicked.
Wizard_PreviousButtonClick=Fires when the previous button is clicked.
Wizard_SideBarButtonClick=Fires when the sidebar button is clicked.
Wizard_Default_StepPreviousButtonText=Previous
Wizard_Default_StepNextButtonText=Next
Wizard_Default_FinishButtonText=Finish
Wizard_SideBar_Button_Not_Found={0} control must contain an IButtonControl with ID {1} in every item template, this maybe include ItemTemplate, EditItemTemplate, SelectedItemTemplate or AlternatingItemTemplate if they exist.
Wizard_DataList_Not_Found=SideBarTemplate must contain a ListView control or a DataList control with ID {0} to enable the side bar navigation feature.
Wizard_Cannot_Modify_ControlCollection=The Control collection cannot be modified.
Wizard_Header_Placeholder_Must_Be_Specified_For_HeaderTemplate=A header placeholder must be specified on Wizard '{0}' when HeaderTemplate is set. Specify a placeholder by setting a control's ID property to "{1}". The placeholder control must also specify runat="server".
Wizard_Header_Placeholder_Must_Be_Specified_For_HeaderText=A header placeholder must be specified on Wizard '{0}' when HeaderText is set. Specify a placeholder by setting a control's ID property to "{1}". The placeholder control must also specify runat="server".
Wizard_Navigation_Placeholder_Must_Be_Specified=A navigation placeholder must be specified on Wizard '{0}'. Specify a placeholder by setting a control's ID property to "{1}". The placeholder control must also specify runat="server".
Wizard_Sidebar_Placeholder_Must_Be_Specified=A sidebar placeholder must be specified on Wizard '{0}' when DisplaySideBar is set to true. Specify a placeholder by setting a control's ID property to "{1}". The placeholder control must also specify runat="server".
Wizard_Step_Placeholder_Must_Be_Specified=A step placeholder must be specified on Wizard '{0}'. Specify a placeholder by setting a control's ID property to "{1}". The placeholder control must also specify runat="server".
Wizard_LayoutTemplate=The template used for a customized layout.


Wizard_WizardStepOnly=Only WizardStep can be added to WizardControlCollection.
WizardStep_AllowReturn=Determines whether the step can be visited more than once.
WizardStep_Name=The name of wizard step.
WizardStep_Title=The title of wizard step.
WizardStep_StepType=The type of wizard step.
WizardStep_WrongContainment=WizardStep can only be placed inside the <WizardSteps> tag of a Wizard control.
Xml_DocumentContent=The XML string that the transform is applied to.
Xml_DocumentSource=The XML file that the transform is applied to.
Xml_TransformSource=The XSL file used to transform the XML data.
Xml_Document=The XML document that the transform is applied to.
Xml_Transform=The XSL transform used on the XML data.
Xml_TransformArgumentList=The argument list used by the XSL stylesheet.
Xml_XPathNavigator=The XPathNavigator that the transform is applied to.
XmlDataSource_Data=Inline XML data. This is only used if no file is specified in the DataFile property.
XmlDataSource_DataFile=The path to an XML data file.
XmlDataSource_Transform=Inline XML transform. This is only used if no file is specified in the TransformFile property.
XmlDataSource_TransformFile=The path to an XML transform file.
XmlDataSource_XPath=Specifies an initial XPath that is applied to the XML data.
XmlDataSource_Transforming=This event is raised before the transform is applied.


; WebParts

AppearanceEditorPart_Title=Title
AppearanceEditorPart_Height=Height
AppearanceEditorPart_Width=Width
AppearanceEditorPart_ChromeType=Chrome Type
AppearanceEditorPart_Hidden=Hidden
AppearanceEditorPart_Direction=Direction
AppearanceEditorPart_PartTitle=Appearance
AppearanceEditorPart_Pixels=pixels
AppearanceEditorPart_Points=points
AppearanceEditorPart_Picas=picas
AppearanceEditorPart_Inches=inches
AppearanceEditorPart_Millimeters=millimeters
AppearanceEditorPart_Centimeters=centimeters
AppearanceEditorPart_Percent=percent
AppearanceEditorPart_Em=em
AppearanceEditorPart_Ex=ex
BehaviorEditorPart_AllowClose=Allow Close
BehaviorEditorPart_AllowConnect=Allow Connect
BehaviorEditorPart_AllowHide=Allow Hide
BehaviorEditorPart_AllowMinimize=Allow Minimize
BehaviorEditorPart_AllowZoneChange=Allow Zone Change
BehaviorEditorPart_ExportMode=Export Mode
BehaviorEditorPart_ExportModeNone=Do not allow
BehaviorEditorPart_ExportModeAll=Export all data
BehaviorEditorPart_ExportModeNonSensitiveData=Non-sensitive data only
BehaviorEditorPart_HelpMode=Help Mode
BehaviorEditorPart_HelpModeModal=Modal
BehaviorEditorPart_HelpModeModeless=Modeless
BehaviorEditorPart_HelpModeNavigate=Navigate
BehaviorEditorPart_Description=Description
BehaviorEditorPart_TitleLink=Title Link
BehaviorEditorPart_TitleIconImageLink=Title Icon Image Link
BehaviorEditorPart_CatalogIconImageLink=Catalog Icon Image Link
BehaviorEditorPart_HelpLink=Help Link
BehaviorEditorPart_ImportErrorMessage=Import Error Message
BehaviorEditorPart_AuthorizationFilter=Authorization Filter
BehaviorEditorPart_AllowEdit=Allow Edit
BehaviorEditorPart_PartTitle=Behavior
BlobPersonalizationState_CantApply=Cannot apply personalization data to '{0}', because personalization data was already applied to a control with this ID.
BlobPersonalizationState_CantExtract=Cannot extract personalization data for '{0}', because personalization data was never applied to this control.  Ensure that the control's ID has not changed since personalization data was applied.
BlobPersonalizationState_DeserializeError=Cannot deserialize the blob of personalization data associated with the current page.
BlobPersonalizationState_NotApplied=Personalization data has not been applied.
BlobPersonalizationState_NotLoaded=Personalization data has not been loaded.
;CatalogDisplayMode_Description=Allows the user to add Web Parts from a catalog to the page.
;CatalogDisplayMode_Name=Catalog Mode
CatalogPart_MustBeInZone=CatalogPart '{0}' must be placed in a CatalogZone.
CatalogPart_SampleWebPartTitle=WebPart {0}
CatalogPart_UnknownDescription=Unknown description.
;CatalogPart_ZoneMustBeRegistered=Zone must be registered with the WebPartManager.
CatalogZone_OnlyCatalogParts=Should only have catalog parts in the ZoneTemplate of '{0}'.
CatalogZoneBase_AddVerb=Verb to add a Web Part to a Zone.
;CatalogZoneBase_AvailableCatalogText=The text shown above the list of available CatalogParts.
CatalogZoneBase_CloseVerb=Verb to close the CatalogZone.
CatalogZoneBase_DefaultEmptyZoneText=Catalog Zone contains no Catalog Parts.
CatalogZoneBase_DefaultSelectTargetZoneText=Add to:
CatalogZoneBase_HeaderText=Catalog Zone
CatalogZoneBase_InstructionText=Select the catalog you would like to browse.
CatalogZoneBase_NoCatalogPartID=CatalogPart does not have an ID.
CatalogZoneBase_PartLinkStyle=The style applied to each link to select a CatalogPart.
CatalogZoneBase_SelectCatalogPart=Selects '{0}'
CatalogZoneBase_SelectedCatalogPartID=ID of the selected CatalogPart.
CatalogZoneBase_SelectedPartLinkStyle=The style applied to the link to the currently selected CatalogPart.
CatalogZoneBase_SelectTargetZoneText=The text shown next to the dropdown for selecting the target Zone.
CatalogZoneBase_ShowCatalogIcons=Whether an icon should be displayed next to each item in a CatalogPart.
;ConnectDisplayMode_Description=Allows the user to connect and disconnect Web Parts.
;ConnectDisplayMode_Name=Connect Mode
ConnectionConsumerAttribute_InvalidConnectionPointType=Type '{0}' is not a valid consumer connection point.  It must be public, a subclass of ConsumerConnectionPoint, and have a public constructor with the same parameters as the ConsumerConnectionPoint constructor.
ConnectionProviderAttribute_InvalidConnectionPointType=Type '{0}' is not a valid provider connection point.  It must be public, a subclass of ProviderConnectionPoint, and have a public constructor with the same parameters as the ProviderConnectionPoint constructor.
ConnectionsZone_CancelVerb=Verb to cancel the current action.
ConnectionsZone_ConfigureConnectionTitle=Configure Connection
ConnectionsZone_ConfigureConnectionTitleDescription=The title for the connection configuration mode.
ConnectionsZone_ConfigureVerb=Verb to configure a connection.
ConnectionsZone_ConnectToConsumerInstructionText=Create consumer connections for this Web Part.
ConnectionsZone_ConnectToConsumerInstructionTextDescription=The instruction text when creating a connection to a consumer.
ConnectionsZone_ConnectToConsumerText=Create a connection to a Consumer
ConnectionsZone_ConnectToConsumerTextDescription=The text of the link to the creation of a new connection to a consumer.
ConnectionsZone_ConnectToConsumerTitle=Send Data to Web Part
ConnectionsZone_ConnectToConsumerTitleDescription=The title when creating a new connection to a consumer.
ConnectionsZone_ConnectToProviderInstructionText=Create provider connections for this Web Part.
ConnectionsZone_ConnectToProviderInstructionTextDescription=The instruction text when creating a new connection to a consumer.
ConnectionsZone_ConnectToProviderText=Create a connection to a Provider
ConnectionsZone_ConnectToProviderTextDescription=The text of the link to the creation of a new connection to a provider.
ConnectionsZone_ConnectToProviderTitle=Get Data from Web Part
ConnectionsZone_ConnectToProviderTitleDescription=The title when creating a new connection to a provider.
ConnectionsZone_ConnectVerb=Verb to connect two Web Parts.
ConnectionsZone_ConsumersInstructionText=Web parts that the current Web part sends information to:
ConnectionsZone_ConsumersInstructionTextDescription=The text that describes the list of existing connections to consumers.
ConnectionsZone_ConsumersTitle=Consumers
ConnectionsZone_ConsumersTitleDescription=The legend for the set of existing connections to consumers.
ConnectionsZone_CloseVerb=Verb to close the ConnectionsZone.
ConnectionsZone_DisconnectVerb=Verb to disconnect two Web Parts.
ConnectionsZone_DisconnectInvalid=The provider or the consumer of the connection to disconnect must be the currently selected Web Part.
ConnectionsZone_ErrorCantContinueConnectionCreation=Can't continue with the creation of this connection because at least one of the Web Parts or connection points has disappeared or has become incompatible with the currently selected Web Part or is already used by another connection and doesn't support multiple connections.
ConnectionsZone_ErrorMessage=The message that's displayed by the connections zone when it can't create or continue creating a connection.
ConnectionsZone_Get=Get:
ConnectionsZone_GetDescription=The text that appears before consumer connection point names.
ConnectionsZone_GetFromText=From:
ConnectionsZone_GetFromTextDescription=The text that appears before provider names.
ConnectionsZone_HeaderText=Connections Zone
ConnectionsZone_HeaderTextDescription=The text that appears in the header of the connections zone.
ConnectionsZone_InstructionText=Manage the connections for the current Web part.
ConnectionsZone_InstructionTextDescription=The instruction text when the connections zone is displaying existing connections.
ConnectionsZone_InstructionTitle=Manage the connections for {0}
ConnectionsZone_InstructionTitleDescription=The title when the connections zone is displaying existing connections. The name of the Web part to connect is appended to this text at run-time.
ConnectionsZone_MustImplementITransformerConfigurationControl=The control returned from WebPartTransformer.CreateConfigurationControl() must implement ITransformerConfigurationControl.
ConnectionsZone_NoConsumers=No compatible consumers
ConnectionsZone_NoExistingConnectionTitle=No active connections
ConnectionsZone_NoExistingConnectionTitleDescription=The title when no connection exists on the selected Web part.
ConnectionsZone_NoExistingConnectionInstructionText=There are no active connections available in your Web Part. You may create a new connection by selecting the links above if there are compatible Web Parts on the page.
ConnectionsZone_NoExistingConnectionInstructionTextDescription=The instruction text when no connection exist on the selected Web part.
ConnectionsZone_NoProviders=No compatible providers
ConnectionsZone_ProvidersInstructionText=Web parts that the current Web part gets information from:
ConnectionsZone_ProvidersInstructionTextDescription=The text that describes the list of existing connections to providers.
ConnectionsZone_ProvidersTitle=Providers
ConnectionsZone_ProvidersTitleDescription=The legend for the set of existing connections to providers.
ConnectionsZone_SendText=Send:
ConnectionsZone_SendTextDescription=The text that appears before provider connection point names.
ConnectionsZone_SendToText=To:
ConnectionsZone_SendToTextDescription=The text that appears before consumer names.
ConnectionsZone_WarningConnectionDisabled=This connection is currently inactive due to the unavailability of one of its end points.
ConnectionsZone_WarningMessage=The message that is displayed when an existing connection is no longer valid.
ConnectionPoint_InvalidControlType=Type must be a subclass of Control.
ContentDirection_NotSet=Not Set
ContentDirection_LeftToRight=Left to Right
ContentDirection_RightToLeft=Right to Left
DeclarativeCatalogPart_PartTitle=Declarative Catalog
DeclarativeCatlaogPart_WebPartsListUserControlPath=Path to a UserControl containing additional WebParts to display in the CatalogPart.
;DesignDisplayMode_Description=Allows the user to rearrange the Web Parts on the page.
;DesignDisplayMode_Name=Design Mode
;EditDisplayMode_Description=Allows the user to edit the properties of Web Parts.
;EditDisplayMode_Name=Edit Mode
EditorPart_MustBeInZone=EditorPart '{0}' must be placed in an EditorZone.
EditorPart_ErrorBadUrl=Url properties must be relative or use the http: or https: protocol.
EditorPart_ErrorConvertingProperty=Error converting property to the required type.
EditorPart_ErrorConvertingPropertyWithType=Property value must be of type {0}.
EditorPart_ErrorSettingProperty=Error setting property value.
EditorPart_ErrorSettingPropertyWithExceptionMessage=Error setting property value: {0}
EditorPart_PropertyMaxValue=Property value must be less than or equal to {0}.
EditorPart_PropertyMinValue=Property value must be greater than or equal to {0}.
EditorPart_PropertyMustBeDecimal=Property value must be a decimal number.
EditorPart_PropertyMustBeInteger=Property value must be an integer.
;EditorPartCollection_WrongType=Value must be of type EditorPart.
EditorZone_OnlyEditorParts=Should only have editor parts in the ZoneTemplate of '{0}'.
EditorZoneBase_ApplyVerb=Verb to apply the changes and leave the EditorZone open.
EditorZoneBase_CancelVerb=Verb to cancel the changes and close the EditorZone.
EditorZoneBase_DefaultEmptyZoneText=Editor Zone contains no Editor Parts.
EditorZoneBase_DefaultErrorText=There was an error applying one or more Editor Parts.
EditorZoneBase_DefaultHeaderText=Editor Zone
EditorZoneBase_DefaultInstructionText=Modify the properties of the Web Part, then click OK or Apply to apply your changes.
EditorZoneBase_ErrorText=The text shown when there is an error in an Editor Part.
EditorZoneBase_NoEditorPartID=EditorPart does not have an ID.
EditorZoneBase_OKVerb=Verb to apply the changes and close the EditorZone.
ErrorWebPart_ErrorText=Web Part Error: {0}
GenericWebPart_CannotWrapWebPart=Web Parts cannot be wrapped by a GenericWebPart.
GenericWebPart_CannotWrapOutputCachedControl=OutputCached controls cannot be wrapped by a GenericWebPart.
GenericWebPart_NoID=The specified control of type '{0}' does not have an ID.
GenericWebPart_CannotModify=Cannot modify the controls collection of a GenericWebPart.  To create a new GenericWebPart, use the WebPartManager.CreateWebPart() method.
GenericWebPart_ChildControlIsNull=The child control inside the GenericWebPart is null.
;GenericWebPart_CantLoadType=Cannot load the Type of the control with ID {0}.
ImportCatalogPart_PartTitle=Imported Web Part Catalog
ImportCatalogPart_Browse=Type a file name (.WebPart) or click "Browse" to locate a Web Part.
ImportCatalogPart_BrowseHelpText=The help text that appears before the upload field.
ImportCatalogPart_Upload=Once you have selected a Web Part file to import, click the Upload button.
ImportCatalogPart_UploadHelpText=The text that appears above the upload button.
ImportCatalogPart_UploadButton=Upload
ImportCatalogPart_UploadButtonText=The text of the button that launches the Web Part upload.
ImportCatalogPart_ImportedPartLabel=Imported Web Part
ImportCatalogPart_ImportedPartErrorLabel=Error while importing Web Part
ImportCatalogPart_PartImportErrorLabelText=The text that appears in the catalog if an error occurs during import.
ImportCatalogPart_ImportedPartLabelText=The text that appears in the catalog above an imported part description.
ImportCatalogPart_NoFileName=You must type a Web Part file name (.WebPart).
LayoutEditorPart_ChromeState=Chrome State
LayoutEditorPart_Zone=Zone
LayoutEditorPart_ZoneIndex=Zone Index
LayoutEditorPart_PartTitle=Layout
;NormalDisplayMode_Description=Allows the user to browse the Web Parts on the page.
;NormalDisplayMode_Name=Normal Mode
PageCatalogPart_PartTitle=Page Catalog
Part_Description=The text description of the Part.
Part_ChromeState=Whether the Part is shown minimized or normal size.
Part_ChromeType=The type of chrome that will be rendered around the Part.
Part_Title=The title of the Part.
;Part_TitleStyle=The style applied to the title bar.
Part_Unknown=Unknown
Part_Untitled=Untitled
PartChromeState_Normal=Normal
PartChromeState_Minimized=Minimized
PartChromeType_Default=Default
PartChromeType_TitleAndBorder=Title and Border
PartChromeType_TitleOnly=Title Only
PartChromeType_BorderOnly=Border Only
PartChromeType_None=None
;PersonalizableAttribute_PropertyMustBePersonalizable=The property must be Personalizable.
PersonalizableTypeEntry_InvalidProperty=The '{0}' property of '{1}' is not a valid Personalizable property.  It must have a public get and set accessor, and take no index parameters.
PersonalizationDictionary_MustBeTypeString=Value must be of type String.
PersonalizationDictionary_MustBeTypePersonalizationEntry=Value must be of type PersonalizationEntry.
PersonalizationDictionary_MustBeTypeDictionaryEntryArray=Value must be of type DictionaryEntry[].
PersonalizationProvider_ApplicationNameExceedMaxLength=The ApplicationName cannot exceed character length {0}.
PersonalizationProvider_BadConnection=The specified connectionStringName, '{0}', was not registered.
PersonalizationProvider_CantAccess=A connection could not be made by the {0} personalization provider using the specified registration.
PersonalizationProvider_NoConnection=The connectionStringName attribute must be specified when registering a personalization provider.
PersonalizationProvider_UnknownProp=Invalid attribute '{0}', specified in the '{1}' personalization provider registration.
PersonalizationProvider_WrongType=Argument must be of type BlobPersonalizationState.
;PropertyGridEditorPart_ErrorConvertingString=Property requires a value of type {0}.
;PropertyGridEditorPart_ErrorText=Text shown when there is an error setting a property value entered in the property grid.
PropertyGridEditorPart_PartTitle=Property Grid
PropertyGridEditorPart_DesignModeWebPart_BoolProperty=Sample boolean property
PropertyGridEditorPart_DesignModeWebPart_EnumProperty=Sample enum property
PropertyGridEditorPart_DesignModeWebPart_StringProperty=Sample string property
ProxyWebPartConnectionCollection_ReadOnly=The StaticConnections collection of ProxyWebPartManager is read-only after connections have been activated.
RowToFieldTransformer_FieldName=Field Name:
RowToFieldTransformer_NoProviderSchema=No Provider Schema
;RowToFilterTransformer_ConsumerFieldName=Consumer Field Name:
;RowToFilterTransformer_NoConsumerSchema=No Consumer Schema
;RowToFilterTransformer_ProviderFieldName=Provider Field Name:
;RowToFilterTransformer_NoProviderSchema=No Provider Schema
RowToParametersTransformer_DifferentFieldNamesLength=The number of ConsumerFieldNames and ProviderFieldNames must be the same.
RowToParametersTransformer_ConsumerFieldName=Consumer Field Name:
RowToParametersTransformer_NoConsumerSchema=No Consumer Schema
RowToParametersTransformer_ProviderFieldName=Provider Field Name:
RowToParametersTransformer_NoProviderSchema=No Provider Schema
SqlPersonalizationProvider_Description=Personalization provider that stores data in a SQL Server database.
ToolZone_CantSetVisible=Cannot set the Visible property of a Tool Zone.  Override the ToolZone.Display property instead.
ToolZone_EditUIStyle=The style applied to the UI elements used for editing.
ToolZone_HeaderCloseVerb=Verb displayed in the header to close the Zone.
ToolZone_HeaderVerbStyle=The style applied to the HeaderCloseVerb.
ToolZone_InstructionText=The instructional text shown in the Zone.
ToolZone_InstructionTextStyle=The style applied to the instructional text shown in the Zone.
ToolZone_LabelStyle=The style applied to the labels for the UI elements used for editing.
ToolZone_DisplayModesReadOnly=The collection of DisplayModes on a ToolZone is read-only.
WebPartTransformerAttribute_Missing=The WebPartTransformerAttribute is not defined on the type '{0}'.
WebPartTransformerAttribute_NotTransformer=The type '{0}' is not a subclass of WebPartTransformer.
WebPartTransformerAttribute_SameTypes=The consumer and provider types of a transformer may not be the same type.
WebPartTransformerCollection_NotEmpty=The WebPartTransformerCollection may contain at most one WebPartTransformer.
WebPartTransformerCollection_ReadOnly=The WebPartTransformerCollection of Connection is read-only after it has been activated.
UnknownWebPart=The specified Web Part does not belong the collection of Web Parts on this page.
WebPart_AllowClose=Whether the Web Part can be closed.
WebPart_AllowConnect=Whether the Web Part can be connected to other Web Parts.
WebPart_AllowEdit=Whether the Web Part's properties can be changed using the EditorZone.
WebPart_AllowHide=Whether the Web Part can be hidden.
;WebPart_AllowLink=Whether the Web Part can be linked to external from the page.
WebPart_AllowMinimize=Whether the Web Part can be minimized.
WebPart_AllowZoneChange=Whether the Web Part can be moved to another Zone.
WebPart_AuthorizationFilter=String used by the WebPartManager to determine if the user is authorized to view this WebPart.
WebPart_BadUrl='{0}' is not a valid Url.  It must be relative or use the http: or https: protocol.
WebPart_CatalogIconImageUrl=The URL of the image to be displayed in the catalog for the Web Part.
;WebPart_CantSetVisible=Cannot set the Visible property of a Web Part.  Use WebPartManager.AddWebPart() or WebPartManager.DeleteWebPart() instead.
WebPart_CantSetExportMode=Cannot set ExportMode after Load if not in shared mode or if there is no WebPartManager or if the WebPart is outside of a Zone.
WebPart_DefaultImportErrorMessage=Cannot import this Web Part.
WebPart_ErrorFormatString={0} (Error)
WebPart_ExportMode=Which properties can be exported from the Web Part.
WebPart_HelpMode=Determines how the help page should be shown.
WebPart_HelpUrl=The URL of the page that provides help for this Web Part.
WebPart_Hidden=Whether the Web Part should be hidden on the page. A hidden Web Part can still be edited and participate in connections.
WebPart_HiddenFormatString=(Hidden) {0}
WebPart_ImportErrorInvalidVersion=The version of the imported <webPart /> is not supported.
WebPart_ImportErrorMessage=The text shown when there is an error importing the Web Part.
WebPart_ImportErrorNoVersion=The imported <webPart /> must specify its version using the xmlns attribute.
WebPart_NonWebPart=The specified control is not being used as a Web Part.
WebPart_NotStandalone=The {0} property cannot be set on Web Part '{1}', since it is a standalone Web Part.
WebPart_OnlyStandalone=The {0} property cannot be set on Web Part '{1}'.  It can only be set on a standalone Web Part.
WebPart_SetZoneTemplateTooLate=The ZoneTemplate property can only be set in or before the Page_PreInit event for static controls. For dynamic controls, set the property before adding it to the Controls collection.
WebPart_TitleIconImageUrl=The URL of the image to be displayed in the title bar of the Web Part.
WebPart_TitleUrl=The URL of the page that contains additional information about this Web Part.  The title of the Web Part will be rendered as a link to this page.
WebPart_Collection_DuplicateID=A {0} has already been added with ID '{1}'.
WebPartActionVerb_CantSetChecked=Cannot set the Checked property of this Verb.
WebPartCatalogAddVerb_Description=Adds a Web Part to a Zone
WebPartCatalogAddVerb_Text=Add
WebPartCatalogCloseVerb_Description=Closes Catalog
WebPartCatalogCloseVerb_Text=Close
WebPartChrome_ConfirmExportSensitive=This Web Part Page has been personalized. As a result, one or more Web Part properties may contain confidential information. Make sure the properties contain information that is safe for others to read. After exporting this Web Part, view properties in the Web Part description file (.WebPart) by using a text editor such as Microsoft Notepad.
WebPartCloseVerb_Description=Closes '{0}'
WebPartCloseVerb_Text=Close
WebPartConnectVerb_Description=Edits the connections for '{0}'
WebPartConnectVerb_Text=Connect
WebPartConnection_ConsumerIDNotSet=The ConsumerID property is not set.
WebPartConnection_ConsumerRequiresSecondaryInterfaces=The consumer connection point '{0}' on '{1}' does not support a connection with no secondary interfaces, so it cannot be connected via a transformer.
WebPartConnection_DisabledConnectionPoint=The connection point '{0}' on '{1}' is disabled.
WebPartConnection_Duplicate=The connection point '{0}' on '{1}' does not allow multiple connections.
WebPartConnection_IncompatibleConsumerTransformer=The transformer and the consumer connection point '{0}' on '{1}' do not use the same connection interface.
WebPartConnection_IncompatibleConsumerTransformerWithType=The transformer of type '{0}' and the consumer connection point '{1}' on '{2}' do not use the same connection interface.
WebPartConnection_IncompatibleProviderTransformer=The provider connection point '{0}' on '{1}' and the transformer do not use the same connection interface.
WebPartConnection_IncompatibleProviderTransformerWithType=The provider connection point '{0}' on '{1}' and the transformer of type '{2}' do not use the same connection interface.
WebPartConnection_IncompatibleSecondaryInterfaces=The consumer connection point '{0}' on '{1}' does not support connecting on the secondary interfaces provided by connection point '{2}' on '{3}'.
WebPartConnection_NoCommonInterface=The provider connection point '{0}' on '{1}' and the consumer connection point '{2}' on '{3}' do not use the same connection interface.
WebPartConnection_NoConsumer=Could not find the connection consumer Web Part with ID '{0}'.
WebPartConnection_NoConsumerConnectionPoint=There is no consumer connection point '{0}' on '{1}'.
WebPartConnection_NoID=Connection does not have an ID.
WebPartConnection_NoProvider=Could not find the connection provider Web Part with ID '{0}'.
WebPartConnection_NoProviderConnectionPoint=There is no provider connection point '{0}' on '{1}'.
WebPartConnection_ProviderIDNotSet=The ProviderID property is not set.
WebPartConnection_TransformerNotAvailable=The required transformer type is not allowed to be used on this page.
WebPartConnection_TransformerNotAvailableWithType=The transformer type '{0}' is not allowed to be used on this page.
WebPartConnectionsCancelVerb_Description=Cancels the current action
WebPartConnectionsCancelVerb_Text=Cancel
WebPartConnectionsCloseVerb_Description=Closes Connections Editor
WebPartConnectionsCloseVerb_Text=Close
WebPartConnectionsConfigureVerb_Description=Modifies the configuration of the connection
WebPartConnectionsConfigureVerb_Text=Edit...
WebPartConnectionsConnectVerb_Description=Connects the Web Parts
WebPartConnectionsConnectVerb_Text=Connect
WebPartConnectionsDisconnectVerb_Description=Disconnects the Web Parts
WebPartConnectionsDisconnectVerb_Text=Disconnect
WebPartDeleteVerb_Description=Deletes '{0}'
WebPartDeleteVerb_Text=Delete
WebPartDisplayModeCollection_CantRemove=Collection does not allow removal of items.
WebPartDisplayModeCollection_CantSet=Collection does not allow setting of items.
WebPartDisplayModeCollection_DuplicateName=A display mode has already been added with name '{0}'.
WebPartEditorApplyVerb_Description=Applies changes
WebPartEditorApplyVerb_Text=Apply
WebPartEditorCancelVerb_Description=Cancels changes
WebPartEditorCancelVerb_Text=Cancel
WebPartEditorOKVerb_Description=Applies changes and closes editor
WebPartEditorOKVerb_Text=OK
WebPartEditVerb_Description=Edits '{0}'
WebPartEditVerb_Text=Edit
WebPartExportHandler_InvalidArgument=Invalid export parameters.
WebPartExportHandler_DisabledExportHandler=Web Part export is currently disabled. It can be enabled by setting enableExport="true" in the WebParts section of the configuration file for this application.
WebPartExportVerb_Description=Exports the personalization data for '{0}' as an XML file
WebPartExportVerb_Text=Export
WebPartHeaderCloseVerb_Description=Closes Zone
WebPartHeaderCloseVerb_Text=Close
WebPartHelpVerb_Description=Shows help for '{0}'
WebPartHelpVerb_Text=Help
;WebPartLinkVerb_Description=Exports '{0}' as a link on the desktop
;WebPartLinkVerb_Text=Create Desktop Link
;WebPartLinkHandler_Exception=Couldn't export web part {0} from page {1}
;WebPartLinkHandler_InvalidArgument=Parameter {0} is missing from the query string.
WebPartManager_Personalization=The personalization settings associated with the WebPartManager and this page.
WebPartManager_MustRegister=Zone must be registered with the WebPartManager.
WebPartManager_UnknownConnection=Unknown connection.
WebPartManager_AlreadyInConnect=Web part is already in connect mode.
WebPartManager_AlreadyInZone=Web Part is already in a zone.
WebPartManager_MustBeInConnect=Must be in connect mode.
WebPartManager_AlreadyInEdit=Web part is already in edit mode.
WebPartManager_MustBeInEdit=Must be in edit mode.
WebPartManager_InvalidConnectionPoint=ConnectionPoint must be from a Web Part's ConnectionPoints collection.
WebPartManager_NoSelectedWebPartConnect=No Web Part is having its connections changed.
WebPartManager_NoSelectedWebPartEdit=No Web Part is being edited.
WebPartManager_MustBeInZone=Web Part must be currently in a Zone.
WebPartManager_OnlyOneInstance=Can only have one instance of a WebPartManager and it must precede any instances of WebPartZone controls.
WebPartManager_AlreadyRegistered=Zone has already been registered.
WebPartManager_NoZoneID=Zone does not have an ID.
WebPartManager_DuplicateZoneID=A Zone has already been added with ID '{0}'.
WebPartManager_CannotModify=Cannot directly modify the collection of Web Parts.  Instead, use the WebPartManager.AddWebPart() or WebPartManager.DeleteWebPart() method.
WebPartManager_NoWebPartID=Web Part does not have an ID.
WebPartManager_NoChildControlID=Child Control of Generic Web Part does not have an ID.
WebPartManager_DuplicateWebPartID=A Web Part or Child Control of a Generic Web Part has already been added with ID '{0}'.
WebPartManager_StaticConnections=The static connections between Web Parts on the page.
WebPartManager_InvalidConsumerSignature=Method '{0}' on type '{1}' is not a valid connection consumer.  It must be public, return void, and take one parameter.
WebPartManager_InvalidProviderSignature=Method '{0}' on type '{1}' is not a valid connection provider.  It must be public, return an object, and take no parameters.
WebPartManager_ConnectTooLate=The ConnectWebParts method cannot be called after connections have already been activated (in WebPartManager.PreRender).
WebPartManager_DisconnectTooLate=The DisconnectWebParts method cannot be called after connections have already been activated (in WebPartManager.PreRender).
WebPartManager_EnableClientScript=Whether the client script features of the Web Part framework are enabled.
WebPartManager_ForbiddenType=You are not allowed to use this Web Part.
;WebPartManager_TypeNotPublic=The type of the Web Part must be a public class.
;WebPartManager_NoParameterlessConstructor=The type of the Web Part must contain a parameterless constructor.
WebPartManager_PartNotExportable=This part is not exportable. To be exportable, a part must be personalizable and not have its ExportMode set to None.
WebPartManager_ImportInvalidFormat=The file format is not valid. Try importing a Web Part file (.WebPart).
WebPartManager_ImportInvalidData=Couldn't import property {0}.
;WebPartManager_NotPersonalizable=The type specified is not personalizable.
WebPartManager_RegisterTooLate=The RegisterZone method cannot be called after the Page has been initialized.
WebPartManager_ExportSensitiveDataWarning=The warning message to be displayed when potentially exporting sensitive personalized data.
WebPartManager_AlreadyDisconnected=Connection has already been disconnected.
WebPartManager_ConnectionsReadOnly=The Connections collection of WebPartManager is read-only.
WebPartManager_DynamicConnectionsReadOnly=The DynamicConnections collection of WebPartManager is read-only after connections have been activated.
WebPartManager_StaticConnectionsReadOnly=The StaticConnections collection of WebPartManager is read-only after connections have been activated.
WebPartManager_DisplayModesReadOnly=The collection of DisplayModes on the WebPartManager is read-only.
;WebPartManager_AlreadyConnected=The Web Part '{0}' is already connected on the consumer connection point '{1}'.  You must delete the existing connection before creating a new connection.
WebPartManager_InvalidDisplayMode=The specified display mode is not supported on this page. Make sure personalization is enabled and the corresponding zones are present on the page. The display mode can be set during and after Page_Init.
WebPartManager_DisabledDisplayMode=The specified display mode is currently disabled on this page. Make sure personalization is enabled for the current user.
WebPartManager_CloseProviderWarning=The text shown to confirm closing a provider Web Part.
WebPartManager_DefaultCloseProviderWarning=You are about to close this Web Part.  It is currently providing data to other Web Parts, and these connections will be deleted if this Web Part is closed.  To close this Web Part, click OK.  To keep this Web Part, click Cancel.
WebPartManager_DeleteWarning=The text shown to confirm deleting a Web Part.
WebPartManager_DefaultDeleteWarning=You are about to permanently delete this Web Part.  Are you sure you want to do this?  To delete this Web Part, click OK.  To keep this Web Part, click Cancel.
WebPartManager_CantConnectClosed=Cannot create a new connection to closed Web Part '{0}'.
WebPartManager_DuplicateConnectionID=A Connection has already been added with ID '{0}'.
WebPartManager_AuthorizeWebPart=Raised to authorize a WebPart to be displayed in the page.
WebPartManager_ConnectionsActivated=Raised after Connections have been activated.
WebPartManager_ConnectionsActivating=Raised before Connections are activated.
WebPartManager_DisplayModeChanged=Raised after the DisplayMode has been changed.
WebPartManager_DisplayModeChanging=Raised before the DisplayMode is changed.
WebPartManager_SelectedWebPartChanged=Raised after the SelectedWebPart has been changed.
WebPartManager_SelectedWebPartChanging=Raised before the SelectedWebPart is changed.
WebPartManager_WebPartAdded=Raised after a WebPart has been added.
WebPartManager_WebPartAdding=Raised before a WebPart is added.
WebPartManager_WebPartClosed=Raised after a WebPart has been closed.
WebPartManager_WebPartClosing=Raised before a WebPart is closed.
WebPartManager_WebPartDeleted=Raised after a WebPart has been deleted.
WebPartManager_WebPartDeleting=Raised before a WebPart is deleted.
WebPartManager_WebPartMoved=Raised after a WebPart has been moved.
WebPartManager_WebPartMoving=Raised before a WebPart is moved.
WebPartManager_WebPartsConnected=Raised after a new Connection has been established.
WebPartManager_WebPartsConnecting=Raised before a new Connection is established.
WebPartManager_WebPartsDisconnected=Raised after a Connection has been disconnected.
WebPartManager_WebPartsDisconnecting=Raised before a Connection is disconnected.
WebPartManager_CantDeleteStatic=Cannot delete a static Web Part.
WebPartManager_CantDeleteSharedInUserScope=Cannot delete a shared Web Part in User personalization scope.
WebPartManager_CantAddControlType=Cannot add a control of Type {0}.  The Type must be loadable by BuildManager.GetType(string typeName).
WebPartManager_PathCannotBeEmpty=The "path" argument cannot be empty if the "type" argument is UserControl.
WebPartManager_PathMustBeEmpty=The "path" argument must be empty if the "type" argument is not UserControl.  The "path" argument cannot be '{0}'.
;WebPartManager_ErrorWebPartTitle=Error
WebPartManager_CantCreateInstance=Could not create instance of the required type.
WebPartManager_CantCreateInstanceWithType=Could not create instance of type '{0}'.
WebPartManager_TypeMustDeriveFromControl=The type is not a subclass of Control.
WebPartManager_TypeMustDeriveFromControlWithType=The type '{0}' is not a subclass of Control.
WebPartManager_InvalidPath=Could not load the required path.
WebPartManager_InvalidPathWithPath=Could not load path '{0}'.
WebPartManager_CantCreateGeneric=Could not create GenericWebPart.
WebPartManager_CantBeginConnectingClosed=Cannot begin connecting a closed WebPart.
WebPartManager_CantBeginEditingClosed=Cannot begin editing a closed WebPart.
WebPartManager_AlreadyClosed=Cannot close a closed WebPart.
WebPartManager_CantSetEnableTheming=Cannot set the EnableTheming property on WebPartManager.  EnableTheming must be true for the WebParts to be themeable.
WebPartManager_CantConnectToSelf=A WebPart cannot be connected to itself.
WebPartManager_ErrorLoadingWebPartType=Could not load the required type.
WebPartManagerRequired=You must enable Web Parts by adding a WebPartManager to your page.  The WebPartManager must be placed before any Web Part controls on the page.
WebPartMenu_DefaultDropDownAlternateText=Verbs
;WebPartMenu_SeparatorAlternateText=------
;WebPartMenuStyle_SeparatorColor=The color of the separators within the popup menu.
WebPartMenuStyle_ShadowColor=The color of the shadow below the popup menu.
WebPartMinimizeVerb_Description=Minimizes '{0}'
WebPartMinimizeVerb_Text=Minimize
WebPartPersonalization_CannotLoadPersonalization=Personalization state could not be loaded by the selected personalization provider.
WebPartPersonalization_CannotEnterSharedScope=Cannot toggle the page into shared personalization scope. The current user must be granted the right to enter shared personalization scope.
WebPartPersonalization_CantCallMethodBeforeInit=The '{0}' method of '{1}' cannot be called before initialization of the page is complete.
WebPartPersonalization_CantUsePropertyBeforeInit=The '{0}' property of '{1}' cannot be used before initialization of the page is complete.
WebPartPersonalization_Enabled=Whether personalization of Web Parts is enabled.
WebPartPersonalization_InitialScope=The initial PersonalizationScope to be used when the page is first requested.
WebPartPersonalization_MustSetBeforeInit=The '{0}' property of '{1}' must be set before initialization of the page is complete.
WebPartPersonalization_PersonalizationNotEnabled=Personalization is not enabled. The Enabled property must be set to true, a registered personalization provider must be selected, and initialization of the page must be complete.
WebPartPersonalization_PersonalizationNotModifiable=Personalization is not enabled and/or modifiable. The Enabled property must be set to true, and a registered personalization provider must be selected. The current user must be granted the right to modify personalization state.
WebPartPersonalization_PersonalizationStateNotLoaded=Personalization state has not been loaded.
WebPartPersonalization_ProviderName=The name of a registered PersonalizationProvider used to access personalization state.
WebPartPersonalization_ProviderNotFound=The specified personalization provider, '{0}', is not registered.
WebPartPersonalization_SameType='{0}' and '{1}' must be the same type.
WebPartRestoreVerb_Description=Restores '{0}'
WebPartRestoreVerb_Text=Restore
WebPartTracker_CircularConnection=The ProviderConnectionPoint '{0}' is involved in a circular connection.
WebPartVerb_Checked=Whether the verb is checked.  In a menu a checkmark would appear next to the verb text.
WebPartVerb_Description=The description of the verb.  May be displayed in a tooltip.
WebPartVerb_Enabled=Whether the verb is enabled.  A disabled verb will be shown but cannot be invoked.
WebPartVerb_ImageUrl=The URL of the image to display for the verb.
WebPartVerb_Text=The text to be displayed for the verb.
WebPartVerb_Visible=Whether the verb is visible.
WebPartZoneBase_AllowLayoutChange=Whether Web Parts can be added to, removed from, or moved within the Zone.
WebPartZoneBase_CloseVerb=Verb to close a Web Part.
WebPartZoneBase_ConnectVerb=Verb to edit the connections of a Web Part.
WebPartZoneBase_CreateVerbs=Raised to add verbs to the Web Parts.
WebPartZoneBase_DefaultEmptyZoneText=Add a Web Part to this zone by dropping it here.
WebPartZoneBase_DeleteVerb=Verb to delete a Web Part.
WebPartZoneBase_DisplayTitleFallback=Zone {0}
WebPartZoneBase_DragHighlightColor=The color of the Zone's border when a Web Part is dragged over the Zone.
WebPartZoneBase_EditVerb=Verb to edit a Web Part.
WebPartZoneBase_ExportVerb=Verb to export a Web Part's personalization data.
WebPartZoneBase_HelpVerb=Verb to show the help for a Web Part.
WebPartZoneBase_LayoutOrientation=Specifies how the Web Parts are arranged within the Zone.
;WebPartZoneBase_LinkVerb=Verb to create a desktop link to a Web Part.
WebPartZoneBase_MenuPopupStyle=The style for the Verbs drop-down menu.
WebPartZoneBase_MenuCheckImageStyle=The style for the checkmarks in the verbs menu.
WebPartZoneBase_MenuCheckImageUrl=The image used to render the checkmarks in the verbs menu dropdown.
WebPartZoneBase_MenuLabelHoverStyle=The mouse hover style for the verbs menu label.
WebPartZoneBase_MenuLabelStyle=The style for the verbs menu label.
WebPartZoneBase_MenuLabelText=The text for the verbs menu label.
WebPartZoneBase_MenuPopupImageUrl=The image used to render the verbs menu popup.
WebPartZoneBase_MenuVerbHoverStyle=The mouse hover style applied to the verbs within the menu popup.
WebPartZoneBase_MenuVerbStyle=The style applied to the verbs within the menu popup.
WebPartZoneBase_MinimizeVerb=Verb to minimize a Web Part.
WebPartZoneBase_RestoreVerb=Verb to restore a Web Part.
WebPartZoneBase_SelectedPartChromeStyle=The style applied to the chrome of the selected Web Part.
WebPartZoneBase_ShowTitleIcons=Whether the icon of each Web Part should be displayed in its title bar.
WebPartZoneBase_TitleBarVerbButtonType=The type of the verb buttons for each Web Part when rendered in the verb bar.
WebPartZoneBase_TitleBarVerbStyle=The style applied to the verbs within the title bar.
;WebPartZoneBase_TitleSeparator=The string used to separate the Title and Caption of each Web Part.
WebPartZoneBase_WebPartVerbRenderMode=Specifies how the Web Part Verbs will be rendered.
Zone_AddedTooLate=A Zone can only be added to the Page in or before the Page_Init event.
Zone_EmptyZoneText=The text shown when the Zone is empty.
Zone_EmptyZoneTextStyle=The style applied to the EmptyZoneText.
Zone_ErrorStyle=The style applied to the error message shown in the Zone.
Zone_FooterStyle=Style for the footer of the zone.
;Zone_HeaderAlignment=The horizontal alignment of the zone's header.
Zone_HeaderStyle=Style for the header of the zone.
Zone_HeaderText=The text in the header of the zone.
Zone_InvalidParent=A Zone may not be placed inside a Part or another Zone.
Zone_Padding=The padding between Parts in the Zone.
Zone_PartStyle=Style for the contained parts.
Zone_PartChromePadding=Padding for the chrome of the contained parts.
Zone_PartChromeStyle=Style for the chrome of the contained parts.
Zone_PartChromeType=The type of chrome for the contained parts.
;Zone_PartTitleHorizontalAlign=The horizontal alignment of the titles of the contained parts.
Zone_PartTitleStyle=Style for the title bars of the contained parts.
Zone_VerbButtonType=The type of the verb buttons.
Zone_VerbStyle=The style applied to the verbs.
Zone_SampleHeaderText=Zone Name


PersonalizationAdmin_UnexpectedResetSharedStateReturnValue=Unexpected integer value '{0}' is returned when calling provider's ResetState method for resetting shared state with one path. The expected value should be either 0 or 1.
PersonalizationAdmin_UnexpectedResetUserStateReturnValue=Unexpected integer value '{0}' is returned when calling provider's ResetState method for resetting user state with one path and one username. The expected value should be either 0 or 1.
PersonalizationAdmin_UnexpectedPersonalizationProviderReturnValue=The negative value '{0}' is returned when calling provider's '{1}' method.  The method should return non-negative integer.

PersonalizationStateInfoCollection_CouldNotAddSharedStateInfo=Error happened when adding a SharedPersonalizationStateInfo with Path '{0}' to the PersonalizationStateInfoCollection.
PersonalizationStateInfoCollection_CouldNotAddUserStateInfo=Error happened when adding a UserPersonalizationStateInfo with Path '{0}' and Username '{1}' to the PersonalizationStateInfoCollection.

PersonalizationStateQuery_IncorrectValueType=The query key '{0}' can only be set with value of type {1}.

PersonalizationProviderHelper_CannotHaveCommaInString=Input parameter '{0}' cannot have comma in string value '{1}'.
PersonalizationProviderHelper_Empty_Collection=Input parameter '{0}' cannot be an empty collection.
PersonalizationProviderHelper_Invalid_Less_Than_Parameter=Input parameter '{0}' must be greater than or equal to {1}.
PersonalizationProviderHelper_More_Than_One_Path=Input parameter '{0}' cannot contain more than one entry when '{1}' contains some entries.
PersonalizationProviderHelper_Negative_Integer=The input parameter cannot be negative.
PersonalizationProviderHelper_No_Usernames_Set_In_Shared_Scope=Input parameter '{0}' cannot be provided when '{1}' is set to '{2}'.
PersonalizationProviderHelper_Null_Entries=Input parameter '{0}' cannot contain null entries.
PersonalizationProviderHelper_Null_Or_Empty_String_Entries=Input parameter '{0}' cannot contain null or empty string entries.
PersonalizationProviderHelper_TrimmedEmptyString=Input parameter '{0}' cannot be an empty string.
PersonalizationProviderHelper_Trimmed_Entry_Value_Exceed_Maximum_Length=Trimmed entry value '{0}' of input parameter '{1}' cannot exceed character length {2}.

; StringUtil
StringUtil_Trimmed_String_Exceed_Maximum_Length=Trimmed string value '{0}' of input parameter '{1}' cannot exceed character length {2}.

; Web category attributes
; (Indirectly referenced through the WebCategoryAttribute class)
Category_Accessibility=Accessibility
Category_Cache=Cache
Category_Control=Control
Category_Databindings=Databindings
Category_DefaultProperties=Default Properties
Category_Links=Links
Category_Navigation=Navigation
Category_Paging=Paging
Category_Parameter=Parameter
Category_Styles=Styles
Category_Validation=Validation
Category_Verbs=Verbs
Category_WebPart=Web Part
Category_WebPartAppearance=Web Part Appearance
Category_WebPartBehavior=Web Part Behavior

; Error Formatter text, generic to error pages
Error_Formatter_ASPNET_Error=Server Error in '{0}' Application.
Error_Formatter_Description=Description:

Error_Formatter_Source_File=Source File:
Error_Formatter_No_Source_File=none
Error_Formatter_Version=Version Information:
Error_Formatter_CLR_Build=Microsoft .NET Framework Version:
Error_Formatter_ASPNET_Build=; ASP.NET Version:
Error_Formatter_Line=Line:
Error_Formatter_FusionLog=Assembly Load Trace
Error_Formatter_FusionLogDesc=The following information can be helpful to determine why the assembly '{0}' could not be loaded.
Unhandled_Err_Error=Unhandled Execution Error
Unhandled_Err_Desc=An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.\r\n
Unhandled_Err_Exception_Details=Exception Details
Unhandled_Err_Stack_Trace=Stack Trace
Unauthorized_Err_Desc1=ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\\ASPNET on IIS 5 or Network Service on IIS 6 and IIS 7, and the configured application pool identity on IIS 7.5) that is used if the application is not impersonating.  If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user.
Unauthorized_Err_Desc2=To grant ASP.NET access to a file, right-click the file in File Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access.
Security_Err_Error=Security Exception
Security_Err_Desc=The application attempted to perform an operation not allowed by the security policy.  To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.
NotFound_Resource_Not_Found=The resource cannot be found.
NotFound_Http_404=HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable.  Please review the following URL and make sure that it is spelled correctly.
NotFound_Requested_Url=Requested URL
Forbidden_Type_Not_Served=This type of page is not served.
Forbidden_Extension_Incorrect=The extension '{0}' may be incorrect.
Forbidden_Extension_Desc=The type of page you have requested is not served because it has been explicitly forbidden.  {0}   Please review the URL below and make sure that it is spelled correctly.
Generic_Err_Title=Runtime Error
Generic_Err_Local_Desc=An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed.
Generic_Err_Remote_Desc=An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.
Generic_Err_Details_Title=Details
Generic_Err_Local_Details_Desc=To enable the details of this specific error message to be viewable on the local server machine, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "RemoteOnly". To enable the details to be viewable on remote machines, please set "mode" to "Off".
Generic_Err_Remote_Details_Desc=To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
Generic_Err_Local_Details_Sample=<!-- Web.Config Configuration File -->\r\n\r\n<configuration>\r\n    <system.web>\r\n        <customErrors mode="RemoteOnly"/>\r\n    </system.web>\r\n</configuration>
Generic_Err_Remote_Details_Sample=<!-- Web.Config Configuration File -->\r\n\r\n<configuration>\r\n    <system.web>\r\n        <customErrors mode="Off"/>\r\n    </system.web>\r\n</configuration>
Generic_Err_Notes_Title=Notes
Generic_Err_Notes_Desc=The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.
Generic_Err_Local_Notes_Sample=<!-- Web.Config Configuration File -->\r\n\r\n<configuration>\r\n    <system.web>\r\n        <customErrors mode="On" defaultRedirect="mycustompage.htm"/>\r\n    </system.web>\r\n</configuration>
Generic_Err_Remote_Notes_Sample=<!-- Web.Config Configuration File -->\r\n\r\n<configuration>\r\n    <system.web>\r\n        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>\r\n    </system.web>\r\n</configuration>
CustomErrorFailed_Err_Desc=An exception occurred while processing your request. Additionally, another exception occurred while executing the custom error page for the first exception. The request has been terminated.
WithFile_No_Relevant_Line=[No relevant source lines]
Src_not_available=The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:\r\n\r\n1. Add a "Debug=true" directive at the top of the file that generated the error. Example:\r\n\r\n{0}   <%@ Page Language="C#" Debug="true" %>{1}\r\n\r\nor:\r\n\r\n2) Add the following section to the configuration file of your application:\r\n\r\n{2}<configuration>\r\n    <system.web>\r\n        <compilation debug="true"/>\r\n    </system.web>\r\n</configuration>{3}\r\n\r\n Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.\r\n\r\nImportant: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.
Src_not_available_nodebug=An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
WithFile_Line_Num=Line {0}:
TmplCompilerErrorTitle=Compilation Error
TmplCompilerErrorDesc=An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
TmplCompilerCompleteOutput=Show Detailed Compiler Output
TmplCompilerGeneratedFile=Show Complete Compilation Source
TmplConfigurationAdditionalError=Show Additional Configuration Errors

TmplCompilerErrorSecTitle=Compiler Error Message
TmplCompilerFatalError=The compiler failed with error code {0}.
TmplCompilerWarningBanner=Compiler Warning Messages
TmplCompilerWarningSecTitle=Warning
TmplCompilerSourceSecTitle=Source Error
TmplCompilerSourceFileTitle=Source File
TmplCompilerSourceFileLine=Line
TmplCompilerLineHeader=Line {0}:

Parser_Error=Parser Error
Parser_Desc=An error occurred during the parsing of a resource required to service this request.   Please review the following specific parse error details and modify your source file appropriately.
Parser_Error_Message=Parser Error Message
Parser_Source_Error=Source Error
Config_Error=Configuration Error
Config_Desc=An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
File_Circular_Reference={0} has a circular reference!

CantGenPropertySet=Unable to generate code for a value of type '{1}'. This error occurred while trying to generate the property value for {0}.

; Trace strings
Trace_Request=Request
Trace_Status_Code=Status Code
Trace_Trace_Information=Trace Information
Trace_Category=Category
Trace_From_First=From First(s)
Trace_Message=Message
Trace_Warning=Warning
Trace_From_Last=From Last(s)
Trace_Control_Tree=Control Tree
Trace_Control_Id=Control UniqueID
Trace_Parent_Id=Parent Id
Trace_Type=Type
Trace_Viewstate_Size=ViewState Size
Trace_Controlstate_Size=ControlState Size
Trace_Render_Size=Render Size
Trace_Session_State=Session State
Trace_Application_State=Application State
Trace_Request_Cookies_Collection=Request Cookies Collection
Trace_Response_Cookies_Collection=Response Cookies Collection
Trace_Headers_Collection=Headers Collection
Trace_Response_Headers_Collection=Response Headers Collection
Trace_Form_Collection=Form Collection
Trace_Querystring_Collection=Querystring Collection
Trace_Server_Variables=Server Variables
Trace_Time_of_Request=Time of Request
Trace_Url=URL
Trace_Request_Type=Request Type
Trace_Request_Encoding=Request Encoding
Trace_Name=Name
Trace_Value=Value
Trace_Response_Encoding=Response Encoding
Trace_Session_Id=Session Id
Trace_No=No.
Trace_Application_Key=Application Key
Trace_Session_Key=Session Key
Trace_Size=Size
Trace_Request_Details=Request Details
Trace_Application_Trace=<h1>Application Trace</h1>
Trace_Clear_Current=clear current trace
Trace_Physical_Directory=Physical Directory:
Trace_Requests_This=Requests to this Application
Trace_Remaining=Remaining:
Trace_File=File
Trace_Verb=Verb
Trace_View_Details=View Details
Trace_Render_Size_children=Render Size Bytes (including children)
Trace_Viewstate_Size_Nochildren=ViewState Size Bytes (excluding children)
Trace_Controlstate_Size_Nochildren=ControlState Size Bytes (excluding children)
Trace_Page=Page

Trace_Error_Title=Trace Error
Trace_Error_LocalOnly_Description=The current trace settings prevent trace.axd from being viewed remotely (for security reasons).  It could, however, be viewed by browsers running on the local server machine.
Trace_Error_LocalOnly_Details_Desc=To enable trace.axd to be viewable on remote machines, please create a <trace> tag within the configuration file located in the root directory of the current web application. This <trace> tag should then have its "localOnly" attribute set to "false".
Trace_Error_LocalOnly_Details_Sample=<configuration>\r\n    <system.web>\r\n        <trace localOnly="false"/>\r\n    </system.web>\r\n</configuration>
Trace_Error_Enabled_Description=Trace.axd is not enabled in the configuration file for this application.  Note: Trace is never enabled when <deployment retail=true />
Trace_Error_Enabled_Details_Desc=To enable trace.axd, please create a <trace> tag within the configuration file located in the root directory of the current web application.  This <trace> tag should then have its "enabled" attribute set to "true".
Trace_Error_Enabled_Details_Sample=<configuration>\r\n    <system.web>\r\n        <trace enabled="true"/>\r\n    </system.web>\r\n</configuration>

WebPageTraceListener_Event=Event

; Adapters
Adapter_GoLabel=Go
Adapter_OKLabel=OK



MenuAdapter_Up=Up
MenuAdapter_UpOneLevel=^Up One Level
MenuAdapter_Expand=Expand {0}

PageAdapter_MustHaveFormRunatServer=To adaptively render for this device, the page must have a form tag with runat=server.
PageAdapter_RenderDelegateMustBeInServerForm=To adaptively render for this device, the delimiters <% %> or <%= %> must be within a form element with runat=server.


; SQL Services
SQL_Services_Database_Empty_Or_Space_Only_Arg=The database name cannot be empty or contain only white space characters.
SQL_Services_Cant_connect_sql_database=Unable to connect to SQL Server database.
SQL_Services_Invalid_Feature=An invalid feature is requested.
SQL_Services_Error_Deleting_Session_Job=The attempt to remove the Session State expired sessions job from msdb did not succeed.  This can occur either because the job no longer exists, or because the job was originally created with a different user account than the account that is currently performing the uninstall.  You will need to manually delete the Session State expired sessions job if it still exists."
SQL_Services_Error_Executing_Command=An error occurred during the execution of the SQL file '{0}'. The SQL error number is {1} and the SqlException message is: {2}
SQL_Services_Error_Cant_Uninstall_Nonempty_Table=Cannot uninstall the specified feature(s) because the SQL table '{0}' in the database '{1}' is not empty. You must first remove all rows from the table.
SQL_Services_Error_Cant_Uninstall_Nonexisting_Database=Cannot uninstall the specified feature(s) because the SQL database '{0}' does not exist.
SQL_Services_Error_Cant_use_custom_database=You cannot specify the database name because it is allowed only if the session state type is SessionStateType.Custom.
SQL_Services_Error_missing_custom_database=The database name cannot be null or empty if the session state type is SessionStateType.Custom.
;SQL_Services_Error_custom_database_start_end_space=The custom database name cannot contain white space characters at the beginning or the end.
SQL_Services_Database_contains_invalid_chars=The custom database name cannot contain the following three characters: single quotation mark ('), left bracket ([) or right bracket (]).

; Provider Util
Provider_missing_attribute=The attribute '{0}' is missing in the configuration of the '{1}' provider.
Invalid_provider_attribute=The value '{2}' specified for the attribute '{0}' is invalid in the configuration of the '{1}' provider.
Invalid_mail_template_provider_attribute=The value '{2}' specified for the attribute '{0}' is invalid in the configuration of the '{1}' provider. Only application relative URLs (~/url) are allowed.
Unexpected_provider_attribute=The attribute '{0}' is unexpected in the configuration of the '{1}' provider.
Invalid_provider_positive_attributes=The attribute '{0}' is invalid in the configuration of the '{1}' provider. The attribute must be set to a non-negative integer.
Invalid_provider_non_zero_positive_attributes=The attribute '{0}' is invalid in the configuration of the '{1}' provider. The attribute must be greater than zero.

; Health Monitoring
;No_Health_Mon_Config_In_subdir=Health Monitoring configuration can only be set in machine or application configuration.
;Duplicate_registered_provider=The provider '{0}' has already been registered.
;No_provider_to_remove=No '{0}' provider to remove.
;Duplicate_registered_event_type_name=The name '{0}' has already been registered in <healthEventNames> section.
;Duplicate_registered_event_name=The name '{0}' has already been registered in <rules> section.
;No_event_name_to_remove=No '{0}' event name to remove.
;Duplicate_registered_profile=The profile name '{0}' has already been registered.
;No_profile_to_remove=No '{0}' profile name to remove.
;No_event_to_remove=No '{0}' event to remove.
Event_name_not_found=The event name '{0}' is not found.
Event_name_invalid_code_range=The 'startEventCode' and 'endEventCode' attributes are invalid. 'startEventCode' must be equal or less than 'endEventCode'.
Health_mon_profile_not_found=The profile '{0}' is not found.
Health_mon_provider_not_found=The provider '{0}' is not found.
Wmi_provider_cant_initialize=Cannot initialize WMI event provider. Error code:{0}.
;Health_mon_invalid_provider_name=The provider name '{0}' is invalid. Please note that a provider name cannot contain the illegal character ',' (comma).
;Health_mon_invalid_event_name=The event name '{0}' is invalid.
Invalid_max_event_details_length=The value '{1}' specified for the maxEventDetailsLength attribute of the '{0}' provider is invalid. It should be between 0 and 1073741823.
;Duplicate_registered_buffer_mode=The buffer mode '{0}' has already been registered.
;No_buffer_mode_to_remove=No '{0}' buffer mode to remove.
Health_mon_buffer_mode_not_found=The buffer mode '{0}' is not found.
Invalid_attribute1_must_less_than_or_equal_attribute2=The value '{0}' specified for the {1} attribute must be less than or equal to the value '{2}' specified for the {3} attribute.
Invalid_attribute1_must_less_than_attribute2=The value '{0}' specified for the {1} attribute must be less than the value '{2}' specified for the {3} attribute.
MailWebEventProvider_discard_warning={1} events were discarded since last notification was made at {2} because the event buffer capacity was exceeded. (Warning ID: {0})
MailWebEventProvider_events_drop_warning=The {1} events remaining for this notification period will be discarded because the maximum number of messages allowed per notification was exceeded. (Warning ID: {0})
MailWebEventProvider_summary_body=This message contains events {0} to {1} from the total of {2} events scheduled for this notification.  There were {3} events left in the buffer at the beginning of this notification.
WebEvent_event_email_subject=Event Notification {0}, part {1}: {2}{3} event received in {4}
WebEvent_event_group_email_subject=Event Notification {0}, part {1}: {2}{3} events received in {4}
WebEvent_event_email_subject_template_error=Event Notification {0}, part {1}: {2}error in notification template
MailWebEventProvider_Warnings=** Warnings **
MailWebEventProvider_Summary=** Summary **
MailWebEventProvider_Application_Info=** Application Information **
MailWebEventProvider_Events=** Events **
MailWebEventProvider_template_file_not_found_error=The template file to be used for creating this event notification is not found.  The {0} events that were part of this message were discarded.
MailWebEventProvider_template_runtime_error=An unhandled exception occurred during the execution of the template page used to create this event notification.  The {0} events that were part of this message were discarded.
MailWebEventProvider_template_compile_error=An error occurred during the compilation of the template page used to create this event notification.  The {0} events that were part of this notification were discarded.
MailWebEventProvider_template_error_no_details=The current configuration prevents the exception details from being included in this message.  Add the "detailedTemplateErrors=true" attribute to the provider configuration to enable exception details to be reported.
MailWebEventProvider_no_recipient_error=No recipients have been specified for the {0} instance named {1}.  If you would like to disable this provider, please remove it from the providers collection.
Sql_webevent_provider_events_dropped={0} events were discarded since last notification was made at {1} because the event buffer capacity was exceeded.
MailWebEventProvider_cannot_send_mail=Unable to send out an e-mail to the SMTP server. Please ensure that the server specified in the <smtpMail> section is valid.
Invalid_eventCode_error=The eventCode of a WebBaseEvent object must be a non-negative integer.
Invalid_eventDetailCode_error=The eventDetailCode of a WebBaseEvent object must be a non-negative integer.
System_eventCode_not_allowed=The event code {0} is invalid. Event codes less than {1} are reserved for ASP.NET.
Event_log_provider_error=The EventLogWebEventProvider provider failed to log an event with the error code {0}.
Wmi_provider_error=The WmiWebEventProvider provider failed to raise a WMI event with the error code {0}.

; Health Monitoring event messages
Webevent_msg_ApplicationStart=Application is starting.
Webevent_msg_ApplicationShutdown=Application is shutting down.
Webevent_msg_ApplicationCompilationStart=Application compilation is starting.
Webevent_msg_ApplicationCompilationEnd=Application compilation finished.
Webevent_msg_ApplicationHeartbeat=Application heartbeat.
Webevent_msg_RequestTransactionComplete=Request transaction is complete.
Webevent_msg_RequestTransactionAbort=Request transaction was aborted.
Webevent_msg_RuntimeErrorRequestAbort=The request has been aborted.
Webevent_msg_RuntimeErrorViewStateFailure=An error occurred while processing viewstate.
Webevent_msg_RuntimeErrorValidationFailure=A validation error has occurred.
Webevent_msg_RuntimeErrorPostTooLarge=Post size exceeded allowed limits.
Webevent_msg_RuntimeErrorUnhandledException=An unhandled exception has occurred.
Webevent_msg_RuntimeErrorWebResourceFailure_DecryptionError=An error occurred processing a web or script resource request. The resource identifier failed to decrypt.
Webevent_msg_RuntimeErrorWebResourceFailure_ResourceMissing=An error occurred processing a web or script resource request. The requested resource '{0}' does not exist or there was a problem loading it.
Webevent_msg_WebErrorParserError=A parser error has occurred.
Webevent_msg_WebErrorCompilationError=A compilation error has occurred.
Webevent_msg_WebErrorConfigurationError=A configuration error has occurred.
Webevent_msg_AuditUnhandledSecurityException=An unhandled security exception has occurred.
Webevent_msg_AuditInvalidViewStateFailure=Viewstate verification failed.
Webevent_msg_AuditFormsAuthenticationSuccess=Forms authentication succeeded for the request.
Webevent_msg_AuditUrlAuthorizationSuccess=URL authorization succeeded for the request.
Webevent_msg_AuditFileAuthorizationFailure=File authorization failed for the request.
Webevent_msg_AuditFormsAuthenticationFailure=Forms authentication failed for the request.
Webevent_msg_AuditFileAuthorizationSuccess=File authorization succeeded for the request.
Webevent_msg_AuditMembershipAuthenticationSuccess=Membership credential verification succeeded.
Webevent_msg_AuditMembershipAuthenticationFailure=Membership credential verification failed.
Webevent_msg_AuditUrlAuthorizationFailure=URL authorization failed for the request.
Webevent_msg_AuditUnhandledAccessException=An unhandled access exception has occurred.
Webevent_msg_OSF_Deserialization_String=A deserialization error occurred inside of ObjectStateFormatter.  Deserialization was attempted using a string TypeConverter.  The type of the property that failed to deserialize is '{0}'.
Webevent_msg_OSF_Deserialization_Binary=A deserialization error occurred inside of ObjectStateFormatter.  Deserialization was attempted using binary serialization.
Webevent_msg_OSF_Deserialization_Type=A deserialization error occurred inside of ObjectStateFormatter.  A property was typed as "Type" but the Type instance could not be created for '{0}'.
Webevent_msg_Property_Deserialization=Deserialization of property '{0}' failed.  The serialization setting for this property was '{1}'.  The type of this property is currently defined as '{2}'.


; Health Monitoring detail event messages
Webevent_detail_ApplicationShutdownUnknown=Reason: Unknown.
Webevent_detail_ApplicationShutdownHostingEnvironment=Reason: Hosting environment is shutting down.
Webevent_detail_ApplicationShutdownChangeInGlobalAsax=Reason: Global.asax changed.
Webevent_detail_ApplicationShutdownConfigurationChange=Reason: Configuration changed.
Webevent_detail_ApplicationShutdownUnloadAppDomainCalled=Reason: Appdomain was explicitly unloaded.
Webevent_detail_ApplicationShutdownChangeInSecurityPolicyFile=Reason: Security policy file changed.
Webevent_detail_ApplicationShutdownBinDirChangeOrDirectoryRename=Reason: A subdirectory in the Bin application directory was changed or renamed.
Webevent_detail_ApplicationShutdownBrowsersDirChangeOrDirectoryRename=Reason: A subdirectory in the Browsers application directory was changed or renamed.
Webevent_detail_ApplicationShutdownCodeDirChangeOrDirectoryRename=Reason: A subdirectory in the Code application directory was changed or renamed.
Webevent_detail_ApplicationShutdownResourcesDirChangeOrDirectoryRename=Reason: A subdirectory in the Resources application directory was changed or renamed.
Webevent_detail_ApplicationShutdownIdleTimeout=Reason: The idle timeout was exceeded.
Webevent_detail_ApplicationShutdownPhysicalApplicationPathChanged=Reason: The physical path of the application changed.
Webevent_detail_ApplicationShutdownHttpRuntimeClose=Reason: HttpRuntime was explicitly closed.
Webevent_detail_ApplicationShutdownInitializationError=Reason: Initialization error.
Webevent_detail_ApplicationShutdownMaxRecompilationsReached=Reason: Maximum number of recompilations was reached.
Webevent_detail_ApplicationShutdownBuildManagerChange=Reason: The BuildManager has made a change that requires the AppDomain to be shutdown.
Webevent_detail_StateServerConnectionError=Reason: An error occurred while communicating with the state server.
Webevent_detail_InvalidTicketFailure=Reason: The ticket supplied was invalid.
Webevent_detail_ExpiredTicketFailure=Reason: The ticket supplied has expired.
Webevent_detail_InvalidViewStateMac=Reason: The viewstate supplied failed integrity check.
Webevent_detail_InvalidViewState=Reason: Viewstate was invalid.
Webevent_detail_SqlProviderEventsDropped=Reason: Sql web event provider dropped events.

; WebEvent ToString
Webevent_event_code=Event code: {0}
Webevent_event_message=Event message: {0}
Webevent_event_time=Event time: {0}
Webevent_event_time_Utc=Event time (UTC): {0}
Webevent_event_sequence=Event sequence: {0}
Webevent_event_occurrence=Event occurrence: {0}
Webevent_event_id=Event ID: {0}
Webevent_event_detail_code=Event detail code: {0}
Webevent_event_process_information=Process information:
Webevent_event_application_information=Application information:
Webevent_event_process_statistics=Process statistics:
Webevent_event_request_information=Request information:
Webevent_event_exception_information=Exception information:
Webevent_event_inner_exception_information=Inner exception information (level {0}):
Webevent_event_exception_type=Exception type: {0}
Webevent_event_exception_message=Exception message: {0}
Webevent_event_thread_information=Thread information:
Webevent_event_process_id=Process ID: {0}
Webevent_event_process_name=Process name: {0}
Webevent_event_account_name=Account name: {0}
Webevent_event_machine_name=Machine name: {0}
Webevent_event_application_domain=Application domain: {0}
Webevent_event_trust_level=Trust level: {0}
Webevent_event_application_virtual_path=Application Virtual Path: {0}
Webevent_event_application_path=Application Path: {0}
Webevent_event_request_url=Request URL: {0}
Webevent_event_request_path=Request path: {0}
Webevent_event_user=User: {0}
Webevent_event_is_authenticated=Is authenticated: True
Webevent_event_is_not_authenticated=Is authenticated: False
Webevent_event_authentication_type=Authentication Type: {0}
Webevent_event_process_start_time=Process start time: {0}
Webevent_event_thread_count=Thread count: {0}
Webevent_event_working_set=Working set: {0} bytes
Webevent_event_peak_working_set=Peak working set: {0} bytes
Webevent_event_managed_heap_size=Managed heap size: {0} bytes
Webevent_event_application_domain_count=Application domain count: {0}
Webevent_event_requests_executing=Requests executing: {0}
Webevent_event_request_queued=Requests queued: {0}
Webevent_event_request_rejected=Requests rejected: {0}
Webevent_event_thread_id=Thread ID: {0}
Webevent_event_thread_account_name=Thread account name: {0}
Webevent_event_is_impersonating=Is impersonating: True
Webevent_event_is_not_impersonating=Is impersonating: False
Webevent_event_stack_trace=Stack trace: {0}
Webevent_event_user_host_address=User host address: {0}
Webevent_event_name_to_authenticate=Name to authenticate: {0}
Webevent_event_custom_event_details=Custom event details: 
Webevent_event_ViewStateException_information=ViewStateException information:

;ETW Events
Etw_Batch_Compilation=Batch compilation: {0} files.
Etw_Success=success
Etw_Failure=failure

;Error strings used by the ResX code we pull from fx\src\WinForms\Managed\System\Resources
;These error strings are copied from fx\src\WinForms\Managed\system.windows.forms.txt
;See DevDiv 9030 for a reference to this issue.
;InvalidResXFile=Parse error parsing ResX file: {0}
;InvalidResXFileReaderWriterTypes=Invalid ResX input.  Could not find valid "resheader" tags for the ResX reader and writer type names.
;InvalidResXResourceNoName=Could not find a name for a resource.  The resource value was '{0}'.
;InvocationException=The type {0} in the data at line {1}, position {2} could not be loaded because it threw the following exception during construction: {3}
;NotSerializableType=An item named '{0}' of type '{1}' cannot be added to the resource file because it is not serializable.
;NotSupported=The type {0} on line {1}, position {2} threw the following exception while being converted: {3}
;ResXResourceWriterSaved=Resource writer has been saved.  You may not edit it.
;SerializationException=The type {0} could not be read from the data in line {1}, position {2}.  The type's internal structure may have changed.  Either implement ISerializable on the type or provide a type converter that can provide a more reliable conversion format, such as text or an array of bytes.  The conversion exception was: {3}
;TypeLoadException=The type {0} in the data at line {1}, position {2} could not be located.
;TypeLoadExceptionShort=The type {0} could not be located.

;IIS sections related
Config_collection_add_element_without_key=The element cannot be added to the collection because it has an empty key.

; Integrated Pipeline strings

Failed_Pipeline_Subscription=Event subscription failed for {0}
Cant_Init_Native_Config=Unable to initialize the native configuration support external to the web worker process (HRESULT=0x{0}).\r\nnativerd.dll must be in %windir%\\system32\\inetsrv.
Cant_Enumerate_NativeDirs=Unable to enumerate the application directories (HRESULT=0x{0}).
Cant_Read_Native_Modules=An error occurred reading the integrated module list from system.webServer/modules. The error is 0x{0}.
Cant_Create_Process_Host=An error occurred while initializing the default application domain.
Invalid_AppDomain_Prot_Type=An occurred while trying to read and instantiate the configured AppDomainHandlerType.
Invalid_Process_Prot_Type=An error occurred while trying to read and instantiate the configured ProcessHandlerType.
Invalid_Application_Preload_Provider_Type=Preload provider '{0}' does not implement IProcessHostPreloadClient interface.
Invalid_Enabled_Preload_Parameter=Application preload cannot be enabled when ApplicationPreloadUtil is not set.
Failure_ApplicationPreloadUtil_Already_Set=ApplicationPreloadUtil has already been set.
Failure_Create_Application_Preload_Provider_Type=An error occurred while trying to create preload provider '{0}'.
Failure_Preload_Application_Initialization=An initialization error occurred while trying to preload an application.
Failure_Calling_Preload_Provider=An error occurred while executing Preload method.
Failure_Stop_Listener_Channel=An error occurred while trying to stop the process protocol listener channel.
Failure_Stop_Process_Prot=An error occurred while trying to stop the process protocol handler.
Failure_Start_AppDomain_Listener=An error occurred while trying to start an app domain protocol listener channel.
Failure_Stop_AppDomain_Listener=An error occurred while trying to stop an app domain protocol listener channel.
Failure_Stop_AppDomain_Protocol=An error occurred while trying to stop an app domain protocol handler.
Failure_Start_Integrated_App=An error occurred while trying to start an integrated application instance.
Failure_Stop_Integrated_App=An error occurred while trying to stop an integrated application instance.
Failure_Shutdown_ProcessHost=An error occurred while trying to shutdown the process host.
Failure_AppDomain_Enum=An error occurred while enumerating application domains.
Failure_PMH_Ping=An error occurred during a process host ping.
Failure_PMH_Idle=An error occurred during a process host idle check.
Failure_Create_Listener_Shim=An error occurred while creating a dispatch shim in the target app domain.
Event_Binding_Disallowed=Event handlers can only be bound to HttpApplication events during IHttpModule initialization.
Requires_Iis_Integrated_Mode=This operation requires IIS integrated pipeline mode.
Method_Not_Supported_By_Iis_Integrated_Mode=The {0} method is not supported by IIS integrated pipeline mode.
Requires_Iis_7=This operation requires IIS version 7 or higher.
Requires_Iis_75_Integrated=This operation requires IIS version 7.5 or higher running in integrated pipeline mode.
Invalid_before_authentication=This method can only be called after the authentication event.
Application_instance_cannot_be_changed=The application instance cannot be changed.
Invalid_http_data_chunk=Output caching and response filtering are only compatible with memory and file based response buffers.  A native module in the pipeline has added an HTTP_DATA_CHUNK to the response that is not of type HttpDataChunkFromMemory or HttpDataChunkFromFileHandle.
Substitution_blocks_cannot_be_modified=Post cache substitution is not compatible with modules in the IIS integrated pipeline that modify the response buffers.  Either a native module in the pipeline has modified an HTTP_DATA_CHUNK structure associated with a managed post cache substitution callback, or a managed filter has modified the response.
TransferRequest_cannot_be_invoked_more_than_once=TransferRequest cannot be invoked more than once.
Invoke_before_pipeline_event='{0}' can only be invoked before '{1}' event is raised.
Invalid_queue_limit=The value must be greater than zero.  A value of zero would disable the feature, but this can only be done via configuration.
Queue_limit_is_zero=The value of '{0}' is currently zero, which means the feature is disabled.  To enable the feature, set the value to a positive integer in configuration.

; Routing strings
HttpMethodConstraint_ParameterValueMustBeString=The constraint for route parameter '{0}' on the route with URL '{1}' must have a string value in order to use an HttpMethodConstraint.
Route_CannotHaveCatchAllInMultiSegment=A path segment that contains more than one section, such as a literal section or a parameter, cannot contain a catch-all parameter.
Route_CannotHaveConsecutiveParameters=A path segment cannot contain two consecutive parameters. They must be separated by a '/' or by a literal string.
Route_CannotHaveConsecutiveSeparators=The route URL separator character '/' cannot appear consecutively. It must be separated by either a parameter or a literal value.
Route_CatchAllMustBeLast=A catch-all parameter can only appear as the last segment of the route URL.
Route_InvalidParameterName=The route parameter name '{0}' is invalid. Route parameter names must be non-empty and cannot contain these characters: "{{", "}}", "/", "?"
Route_InvalidRouteUrl=The route URL cannot start with a '/' or '~' character and it cannot contain a '?' character.
Route_MismatchedParameter=There is an incomplete parameter in this path segment: '{0}'. Check that each '{{' character has a matching '}}' character.
Route_RepeatedParameter=The route parameter name '{0}' appears more than one time in the URL.
Route_ValidationMustBeStringOrCustomConstraint=The constraint entry '{0}' on the route with URL '{1}' must have a string value or be of a type which implements IRouteConstraint.
RouteCollection_DuplicateEntry=The route provided already exists in the route collection. The collection may not contain duplicate routes.
RouteCollection_DuplicateName=A route named '{0}' is already in the route collection. Route names must be unique.
RouteCollection_NameNotFound=A route named '{0}' could not be found in the route collection.
RouteCollection_RequiresContext=HttpContext.Current must be non-null when a RequestContext is not provided.
RouteData_RequiredValue=The RouteData must contain an item named '{0}' with a non-empty string value.
RouteTable_ContextMissingRequest=The context does not contain any request data.
UrlRoutingHandler_NoRouteMatches=The incoming request does not match any route.
UrlRoutingModule_NoHttpHandler=The route handler '{0}' did not return an IHttpHandler from its GetHttpHandler() method.
UrlRoutingModule_NoRouteHandler=A RouteHandler must be specified for the selected route.
RouteUrlExpression_InvalidExpression=Invalid expression, RouteUrlExpressionBuilder expects a string with format: RouteName=route,Key1=Value1,Key2=Value2.
PageRouteHandler_InvalidVirtualPath=VirtualPath must be a non-empty string starting with ~/.
RouteParameter_RouteKey=The key to use from the route's values.

Control_NotADescendentOfNamingContainer=This control is not a descendent of the NamingContainer of '{0}'.

DynamicModuleRegistry_ModulesAlreadyInitialized=Cannot register a module after the application has been initialized.
DynamicModuleRegistry_TypeIsNotIHttpModule=The type '{0}' is not an IHttpModule.

StateApplication_FullTrustOnly=This type can only be used in a fully trusted application.

HttpTaskAsyncHandler_CannotExecuteSynchronously=The handler '{0}' cannot be executed synchronously.
SynchronizationContextUtil_AspCompatModeNotCompatible=<%@ Page AspCompat=\"true\" %> and <httpRuntime apartmentThreading=\"true\" /> are unsupported in the current application configuration.
SynchronizationContextUtil_PageAsyncVoidMethodsNotCompatible=\"async void\" Page events are unsupported in the current application configuration.
SynchronizationContextUtil_TaskReturningPageAsyncMethodsNotCompatible=Task-returning Page methods are unsupported in the current application configuration.
SynchronizationContextUtil_PageAsyncTaskTimeoutHandlerParallelNotCompatible=Providing a non-null 'timeoutHandler' or a true 'executeInParallel' parameter value to the PageAsyncTask constructor is unsupported in the current application configuration.
SynchronizationContextUtil_WebSocketsNotCompatible=WebSockets is unsupported in the current application configuration.
SynchronizationContextUtil_UpgradeToTargetFramework45Instructions=To enable this, set the following configuration switch in Web.config:\r\n<system.web>\r\n  <httpRuntime targetFramework=\"4.5\" />\r\n</system.web>
SynchronizationContextUtil_AddDowngradeAppSettingsSwitch=To work around this, add the following configuration switch in Web.config:\r\n<appSettings>\r\n  <add key="aspnet:UseTaskFriendlySynchronizationContext" value="false" />\r\n</appSettings>
SynchronizationContextUtil_RemoveAppSettingsSwitch=To work around this, remove the following configuration switch in Web.config:\r\n<appSettings>\r\n  <add key="aspnet:UseTaskFriendlySynchronizationContext" />\r\n</appSettings>
SynchronizationContextUtil_ForMoreInformation=For more information, see http://go.microsoft.com/fwlink/?LinkId=252465.
PageAsyncManager_CannotEnqueue=An asynchronous task cannot be queued at this time.
TaskAsyncHelper_ParameterInvalid=The provided IAsyncResult is invalid.

WebSockets_WebSocketModuleNotEnabled=The IIS WebSocket module is not enabled. For more information on enabling this module, please see http://go.microsoft.com/fwlink/?LinkId=231398.
WebSockets_NotAWebSocketRequest=The incoming request is not a WebSocket request.
WebSockets_OriginCheckFailed=This resource can only be accessed when requested by a page originating from the same authority.
WebSockets_SubProtocolCannotBeNegotiated=The sub-protocol '{0}' cannot be negotiated for this request. See the WebSocketRequestedProtocols property for the list of sub-protocols that the client has indicated it can understand.
WebSockets_AcceptWebSocketRequestCanOnlyBeCalledOnce=This method can only be called once per request.
WebSockets_CannotBeCalledDuringBeginRequest=This method cannot be called during or before BeginRequest.
WebSockets_CannotBeCalledAfterHandlerExecute=This method cannot be called after HttpContext.CurrentNotification has passed the ExecuteRequestHandler step.
WebSockets_CannotBeCalledDuringChildExecute=This method cannot be called during a child request or from within the target of a TransferRequest.
WebSockets_UnknownErrorWhileAccepting=Cannot accept the WebSocket request. An unknown error occurred.
WebSockets_MethodNotAvailableDuringWebSocketProcessing=This method cannot be called once the request has fully transitioned to a WebSocket request.
AspNetWebSocket_SendInProgress=A send operation is already in progress.
AspNetWebSocket_SendMessageTypeInvalid=The outgoing message type must be WebSocketMessageType.Text or WebSocketMessageType.Binary.
AspNetWebSocket_CloseAlreadySent=A close frame has already been sent to the remote endpoint.
AspNetWebSocket_ReceiveInProgress=A receive operation is already in progress.
AspNetWebSocket_CloseAlreadyReceived=A close frame has already been received from the remote endpoint.
AspNetWebSocket_CloseStatusEmptyButCloseDescriptionNonNull=If a close status of WebSocketCloseStatus.Empty is specified, the provided status description must be null or empty.
AspNetWebSocket_CloseDescriptionTooLong=The close status description is too long. Its UTF8-encoded representation must be {0} bytes or fewer.
AspNetWebSocket_DisposeNotSupported=WebSocket instances cannot be disposed because applications do not control the lifetime of these objects.

;ModelBinding Resources
Common_NullOrEmpty=Value cannot be null or empty.
Common_PropertyCannotBeNullOrEmpty=The property '{0}' cannot be null or empty.
ValueProviderResult_ConversionThrew=The parameter conversion from type '{0}' to type '{1}' failed. See the inner exception for more information.
ValueProviderResult_NoConverterExists=The parameter conversion from type '{0}' to type '{1}' failed because no type converter can convert between these types.
Common_PropertyNotFound=The property {0}.{1} could not be found.
DataAnnotationsModelMetadataProvider_UnknownProperty={0} has a DisplayColumn attribute for {1}, but property {1} does not exist.
DataAnnotationsModelMetadataProvider_UnreadableProperty={0} has a DisplayColumn attribute for {1}, but property {1} does not have a public getter.
Common_TypeMustDriveFromType=The type {0} must derive from {1}
DataAnnotationsModelValidatorProvider_ConstructorRequirements=The type {0} must have a public constructor that accepts three parameters of types {1}, {2}, and {3}
ClientDataTypeModelValidatorProvider_FieldMustBeNumeric=The field {0} must be a number.
DataAnnotationsModelValidatorProvider_ValidatableConstructorRequirements=The type {0} must have a public constructor that accepts two parameters of types {1} and {2}
ValidatableObjectAdapter_IncompatibleType=The model object inside the metadata claimed to be compatible with {0}, but was actually {1}.
BindingBehavior_ValueNotFound=A value for '{0}' is required but is not present in the request.
Common_TypeMustImplementInterface=The type '{0}' does not implement the interface '{1}'.
GenericModelBinderProvider_ParameterMustSpecifyOpenGenericType=The type '{0}' is not an open generic type.
GenericModelBinderProvider_TypeArgumentCountMismatch=The open model type '{0}' has {1} generic type argument(s), but the open binder type '{2}' has {3} generic type argument(s). The binder type must not be an open generic type or must have the same number of generic arguments as the open model type.
ModelBinderConfig_ValueInvalid=The value '{0}' is not valid for {1}.
ModelBinderConfig_ValueRequired=A value is required.
ModelBinderProviderCollection_BinderForTypeNotFound=A binder for type {0} could not be located.
ModelBinderProviderCollection_InvalidBinderType=The type '{0}' does not subclass {1} or implement the interface {2}.
ModelBinderUtil_ModelCannotBeNull=The binding context has a null Model, but this binder requires a non-null model of type '{0}'.
ModelBinderUtil_ModelInstanceIsWrong=The binding context has a Model of type '{0}', but this binder can only operate on models of type '{1}'.
ModelBinderUtil_ModelMetadataCannotBeNull=The binding context cannot have a null ModelMetadata.
ModelBinderUtil_ModelTypeIsWrong=The binding context has a ModelType of '{0}', but this binder can only operate on models of type '{1}'.
ModelBindingContext_ModelMetadataMustBeSet=The ModelMetadata property must be set before accessing this property.

;AppVerifier Resources
AppVerifier_Title=ASP.NET Runtime Verification Assertion Failure
AppVerifier_Subtitle=ASP.NET detected an error while invoking an asynchronous method. Details of the error are provided below to help diagnose the problem.
AppVerifier_BasicInfo_URL=Current URL: {0}
AppVerifier_BasicInfo_ErrorCode=Error code: {0}
AppVerifier_BasicInfo_Description=Description: {0}
AppVerifier_BasicInfo_NotificationInfo=The assertion was triggered after processing notification {0}, isPostNotification = {1}, isReentry = {2}
AppVerifier_BasicInfo_ThreadInfo=The assertion was triggered on thread {0} at {1} with the following stack trace:
AppVerifier_BeginMethodInfo_EntryMethod=Entry point which triggered failure: {0}
AppVerifier_BeginMethodInfo_RequestNotification_Integrated=Request notification at time of entry: {0} [IsPostNotification = {1}]
AppVerifier_BeginMethodInfo_RequestNotification_NotIntegrated=Request notification at time of entry: n/a (not running in integrated mode)
AppVerifier_BeginMethodInfo_CurrentHandler=Request handler at time of entry: {0}
AppVerifier_BeginMethodInfo_ThreadInfo=The entry point was invoked on thread {0} at {1} with the following stack trace:
AppVerifier_AsyncCallbackInfo_InvocationCount=AsyncCallback was invoked a total of {0} time(s).
AppVerifier_AsyncCallbackInfo_FirstInvocation_ThreadInfo=It was first invoked on thread {0} at {1} with the following stack trace:
AppVerifier_Errors_HttpApplicationInstanceWasNull=The provided HttpApplication instance was null. The HttpApplication instance must be non-null.
AppVerifier_Errors_BeginHandlerDelegateWasNull=The provided entry point (BeginHandler) was null. The entry point must be non-null.
AppVerifier_Errors_AsyncCallbackInvokedMultipleTimes=AsyncCallback has already been invoked. The callback must never be invoked multiple times.
AppVerifier_Errors_AsyncCallbackInvokedWithNullParameter=AsyncCallback was invoked with a null IAsyncResult argument. The callback must be given a non-null argument.
AppVerifier_Errors_AsyncCallbackGivenAsyncResultWhichWasNotCompleted=AsyncCallback was invoked with an IAsyncResult which was marked 'IsCompleted = false'. The callback must not be invoked until the asynchronous operation has completed.
AppVerifier_Errors_AsyncCallbackInvokedAsynchronouslyButAsyncResultWasMarkedCompletedSynchronously=AsyncCallback was invoked asynchronously, but the provided IAsyncResult argument was marked 'CompletedSynchronously = true'. The argument's CompletedSynchronously property must match the manner in which the asynchronous operation completed.
AppVerifier_Errors_AsyncCallbackInvokedSynchronouslyButAsyncResultWasNotMarkedCompletedSynchronously=AsyncCallback was invoked synchronously, but the provided IAsyncResult argument was marked 'CompletedSynchronously = false'. The argument's CompletedSynchronously property must match the manner in which the asynchronous operation completed.
AppVerifier_Errors_AsyncCallbackInvokedWithUnexpectedAsyncResultInstance=The entry point returned an IAsyncResult instance other than the IAsyncResult argument provided to AsyncCallback. The entry point's return value must match the argument provided to AsyncCallback.
AppVerifier_Errors_AsyncCallbackInvokedEvenThoughBeginHandlerThrew=AsyncCallback was invoked even though the entry point threw an exception. AsyncCallback should not be invoked if the entry point throws an exception.
AppVerifier_Errors_AsyncCallbackInvokedWithUnexpectedAsyncResultAsyncState=The IAsyncResult argument passed to AsyncCallback had an invalid AsyncState property. The IAsyncResult's AsyncState property must match the state object parameter provided to the entry point.
AppVerifier_Errors_AsyncCallbackCalledAfterHttpApplicationReassigned=The underlying HTTP request had already completed by the time AsyncCallback was invoked asynchronously.
AppVerifier_Errors_BeginHandlerReturnedNull=The entry point returned a null value. The return value must be a non-null IAsyncResult instance.
AppVerifier_Errors_BeginHandlerReturnedAsyncResultMarkedCompletedSynchronouslyButWhichWasNotCompleted=The entry point returned an IAsyncResult instance that was marked 'CompletedSynchronously = true' and 'IsCompleted = false'. If the operation is completed, it must be marked 'IsCompleted = true'.
AppVerifier_Errors_BeginHandlerReturnedAsyncResultMarkedCompletedSynchronouslyButAsyncCallbackNeverCalled=The entry point returned an IAsyncResult instance that was marked 'CompletedSynchronously = true', but AsyncCallback was never invoked synchronously. If an operation completes synchronously and AsyncCallback is non-null, the callback must be invoked synchronously before the entry point returns to its caller.
AppVerifier_Errors_BeginHandlerReturnedUnexpectedAsyncResultAsyncState=The entry point returned an IAsyncResult instance with an invalid AsyncState property. The IAsyncResult's AsyncState property must match the state object parameter provided to the entry point.
AppVerifier_Errors_SyncContextSendOrPostCalledAfterRequestCompleted=A thread attempted to call SynchronizationContext.Send or SynchronizationContext.Post after the request associated with the SynchronizationContext had already completed.
AppVerifier_Errors_SyncContextSendOrPostCalledBetweenNotifications=A thread attempted to call SynchronizationContext.Send or SynchronizationContext.Post while ASP.NET is not processing any request pipeline notification.
AppVerifier_Errors_SyncContextPostCalledInNestedNotification=A thread attempted to call SynchronizationContext.Post while processing a nested request notification. This may result in undefined behavior.
AppVerifier_Errors_RequestNotificationCompletedSynchronouslyWithNotificationContextPending=An inconsistency was found after processing an integrated IIS request pipeline notification. Even though the notification completed synchronously it had left pending async completions.
AppVerifier_Errors_NotificationContextHasChangedAfterSynchronouslyProcessingNotification=An inconsistency was found after processing an integrated IIS request pipeline notification. The NotificationContext has unexpectedly changed while synchronously processing a notification.
AppVerifier_Errors_PendingProcessRequestNotificationStatusAfterCompletingNestedNotification=An inconsistency was found after processing an integrated IIS request pipeline notification. Nested notifications such as RQ_SEND_RESPONSE have to be processed synchronously and can not leave pending async work.

Request_Queue_Limit_Per_Session_Exceeded=The request queue limit of the session is exceeded.

MembershipPasswordFormat_Obsoleted=Unsecured Passwords Format Detected. The Membership Provider that contains the unsecure passwords format is: {0}. The obsoleted password format is: {1}. For more information, see https://go.microsoft.com/fwlink/?linkid=834784.

Unhandled_Monitor_Exception=An unhandled exception occurred while executing '{0}' in '{1}'.

OnExecuteRequestStep_Cannot_Be_Called=Method OnExecuteRequestStep can only be called during HttpApplication initialization or IHttpModule initialization.