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
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="CreateUserWizard" FullName="System.Web.UI.WebControls.CreateUserWizard">
<TypeSignature Language="C#" Value="public class CreateUserWizard : System.Web.UI.WebControls.Wizard" />
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Web.UI.WebControls.Wizard</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Bindable(false)</AttributeName>
</Attribute>
</Attributes>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>In this topic:</para>
<list type="bullet">
<item>
<para>
<format type="text/html">
<a href="#Introduction">Introduction</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#creating_a_user">Creating a User</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#styles_and_templates">Styles and Templates</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#validation_grouping">Validation Grouping</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#formatting_using_layout_templates">Formatting Using Layout Templates</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#Accessibility">Accessibility</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#DeclarativeSyntax">Declarative Syntax</a>
</format>
</para>
</item>
</list>
<format type="text/html">
<a href="#Introduction" />
</format>
<format type="text/html">
<h2>Introduction</h2>
</format>
<para>The <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control provides the user interface for the <see cref="T:System.Web.Security.MembershipProvider" /> object that communicates with your Web site's user data store to create new user accounts in the data store. The <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> relies on the <see cref="T:System.Web.Security.MembershipProvider" /> to create the user and disable them if necessary.</para>
<block subset="none" type="note">
<para>If you are not familiar with ASP.NET login controls, you might find it helpful to read <format type="text/html"><a href="ac032230-6469-4b03-b68d-03ef2643a24d">ASP.NET Login Controls Overview</a></format> before continuing. For a list of other topics related to login controls and membership, see <format type="text/html"><a href="824c3a24-f0af-427c-a652-0d2d1e9397cd">Managing Users By Using Membership</a></format>.</para>
</block>
<para>By default, the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control will accept a user name and password from the Web site visitor. Based on the requirements of the site's <see cref="T:System.Web.Security.MembershipProvider" /> object, the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control will optionally accept an e-mail address, represented by the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Email" /> property, and a password recovery confirmation question and answer, represented by <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Question" /> and <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Answer" />. For a table showing all required and optional controls for <see cref="T:System.Web.UI.WebControls.CreateUserWizard" />, see <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserStep" />.</para>
<block subset="none" type="note">
<para>If <see cref="P:System.Web.UI.WebControls.CreateUserWizard.AutoGeneratePassword" /> is set to true and the <see cref="P:System.Web.Security.Membership.PasswordStrengthRegularExpression" /> property is set in the application's Web.config file, you could potentially generate a password that does not pass the regular expression strength test. In this case, creating a user raises an error that indicates an invalid password.</para>
</block>
<format type="text/html">
<a href="#creating_a_user" />
</format>
<format type="text/html">
<h2>Creating a User</h2>
</format>
<para>When a user is created with the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" />, the control interacts with the current <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> to accomplish the following tasks in order.</para>
<list type="ordered">
<item>
<para>Create a password if <see cref="P:System.Web.UI.WebControls.CreateUserWizard.AutoGeneratePassword" /> is set to true.</para>
</item>
<item>
<para>Create the user in the data store that the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> represents.</para>
</item>
<item>
<para>Disable the user in the store if the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.DisableCreatedUser" /> property is set to true.</para>
</item>
</list>
<para>You can extend the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control to accept additional information by adding additional fields, or by adding additional steps before or after the provided templates in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserStep" /> and <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CompleteStep" /> properties.</para>
<block subset="none" type="note">
<para>The <see cref="T:System.Web.UI.WebControls.CreateUserWizardStep" /> step is the first step within the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, and is a required step. By default, the <see cref="P:System.Web.UI.WebControls.CreateUserWizardStep.AllowReturn" /> property is set to false to keep the user from returning to the <see cref="T:System.Web.UI.WebControls.CreateUserWizardStep" /> step and accidentally attempting to create another user account with the same credentials. If <see cref="P:System.Web.UI.Control.EnableViewState" /> is set to false, the <see cref="P:System.Web.UI.WebControls.CreateUserWizardStep.AllowReturn" /> property is not maintained in view state and you must include logic in your application to maintain the <see cref="P:System.Web.UI.WebControls.CreateUserWizardStep.AllowReturn" /> value.</para>
</block>
<para>
<see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control properties represented by text boxes, such as <see cref="P:System.Web.UI.WebControls.CreateUserWizard.UserName" />, are accessible during all phases of the page life cycle. The control will pick up any changes made by the end user by means of the <see cref="E:System.Web.UI.WebControls.TextBox.TextChanged" /> event raised by the text boxes. </para>
<para>The <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control can optionally send e-mail messages to new users if you have configured an SMTP mail server to send e-mail. For more information, see the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MailDefinition" /> property.</para>
<block subset="none" type="note">
<para>The <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control uses Internet e-mail services to send login information to users. There are inherent security risks with sending passwords in e-mail. You should determine whether these security risks are acceptable to your site.</para>
</block>
<format type="text/html">
<a href="#styles_and_templates" />
</format>
<format type="text/html">
<h2>Styles and Templates</h2>
</format>
<para>When the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control is not customized with templates, the <see cref="P:System.Web.UI.WebControls.WebControl.AccessKey" /> property of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control applies to the first text box in the control and the <see cref="P:System.Web.UI.WebControls.WebControl.TabIndex" /> property, which is applied to all text boxes of the control. If the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control is customized with templates, then the <see cref="P:System.Web.UI.WebControls.WebControl.AccessKey" /> property and the <see cref="P:System.Web.UI.WebControls.WebControl.TabIndex" /> property are ignored. In this case, directly set the <see cref="P:System.Web.UI.WebControls.WebControl.AccessKey" /> property and the <see cref="P:System.Web.UI.WebControls.WebControl.TabIndex" /> property of each template child control.</para>
<para>
<see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control properties represented by text boxes, such as <see cref="P:System.Web.UI.WebControls.CreateUserWizard.UserName" /> and <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Password" />, are accessible during all phases of the page life cycle. The control will pick up any changes made by the end user by means of the <see cref="E:System.Web.UI.WebControls.TextBox.TextChanged" /> event raised by the text boxes.</para>
<block subset="none" type="note">
<para>Setting the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.AutoGeneratePassword" />, <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" />, or <see cref="P:System.Web.UI.WebControls.CreateUserWizard.RequireEmail" /> property recreates the child controls of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, and their control state is lost in the process. To avoid this situation, explicitly maintain the control state of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control's child controls, or avoid putting controls inside of templates.</para>
</block>
<para>The following table lists the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control style properties and explains which UI element each style property affects. For a list of which properties each style applies to, see the documentation for the individual style properties.</para>
<list type="table">
<listheader>
<item>
<term>
<para>Style property </para>
</term>
<description>
<para>UI element affected </para>
</description>
</item>
</listheader>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonStyle" /> </para>
</term>
<description>
<para>
<ui>Continue</ui> button. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserButtonStyle" /> </para>
</term>
<description>
<para>
<ui>Create User</ui> button. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.HyperLinkStyle" />
</para>
</term>
<description>
<para>Links to other pages. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.InstructionTextStyle" /> </para>
</term>
<description>
<para>Instructional text on the page that tells users how to use the control. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.LabelStyle" /> </para>
</term>
<description>
<para>Labels for all input fields, such as text boxes. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.TextBoxStyle" /> </para>
</term>
<description>
<para>Text entry input fields. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.TitleTextStyle" /> </para>
</term>
<description>
<para>Title text for each view. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.CompleteSuccessTextStyle" /> </para>
</term>
<description>
<para>Text displayed to the user when the password recovery or reset attempt is successful. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.ErrorMessageStyle" />
</para>
</term>
<description>
<para>Error messages when the membership provider fails to create a new user account.</para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordHintStyle" />
</para>
</term>
<description>
<para>The text that describes password requirements.</para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.ValidatorTextStyle" />
</para>
</term>
<description>
<para>Error messages associated with validation.</para>
</description>
</item>
</list>
<format type="text/html">
<a href="#validation_grouping" />
</format>
<format type="text/html">
<h2>Validation Grouping</h2>
</format>
<para>The <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control uses a validation group so that other fields on the same page as the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control can be validated separately. By default, the <see cref="P:System.Web.UI.Control.ID" /> property of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control is used as the name of the validation group. For example, a <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control with the ID "CreateUserWizard1" will use a validation group name of "CreateUserWizard1". If you want to set the validation group that the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control is part of, you must template the control and change the validation group name.</para>
<para>Note that the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> class inherits from the <see cref="T:System.Web.UI.WebControls.Wizard" /> class, which does not support special Microsoft Internet Explorer rendering for non-standard or quirks mode. The <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> does not attempt to optimize rendering for non-standard Internet Explorer mode. To get the best Internet Explorer rendering using the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, use the XHTML doc type, which is added by default in Visual Web Developer and Visual Studio.</para>
<format type="text/html">
<a href="#formatting_using_layout_templates" />
</format>
<format type="text/html">
<h2>Formatting Using Layout Templates</h2>
</format>
<para>The <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control lets you specify the layout of the control without requiring you to use an HTML table element. Instead, you can use a LayoutTemplate element to specify the layout. In the layout template, you create placeholder controls to indicate where items should be dynamically inserted into the control. (This is similar to how the template model for the <see cref="T:System.Web.UI.WebControls.ListView" /> control works.) For more information, see the <see cref="P:System.Web.UI.WebControls.Wizard.LayoutTemplate" /> property.</para>
<format type="text/html">
<a href="#Accessibility" />
</format>
<format type="text/html">
<h2>Accessibility</h2>
</format>
<para>For information about how to configure this control so that it generates markup that conforms to accessibility standards, see <format type="text/html"><a href="7e3ce9c4-6b7d-4fb1-94b5-72cf2a44fe13">Accessibility in Visual Studio 2010 and ASP.NET 4</a></format> and <format type="text/html"><a href="847a37e3-ce20-41da-b0d3-7dfb0fdae9a0">ASP.NET Controls and Accessibility</a></format>.</para>
<format type="text/html">
<a href="#DeclarativeSyntax" />
</format>
<format type="text/html">
<h2>Declarative Syntax</h2>
</format>
<code><asp:CreateUserWizard
    AccessKey="string"
    ActiveStepIndex="integer"
    Answer="string"
    AnswerLabelText="string"
    AnswerRequiredErrorMessage="string"
    AutoGeneratePassword="True|<codeFeaturedElement>False</codeFeaturedElement>"
    BackColor="color name|#dddddd"
    BorderColor="color name|#dddddd"
    BorderStyle="<codeFeaturedElement>NotSet</codeFeaturedElement>|None|Dotted|Dashed|Solid|Double|Groove|Ridge|
Inset|Outset"
    BorderWidth="size"
    CancelButtonImageUrl="uri"
    CancelButtonText="string"
    CancelButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    CancelDestinationPageUrl="uri"
    CellPadding="integer"
    CellSpacing="integer"
    CompleteSuccessText="string"
    ConfirmPasswordCompareErrorMessage="string"
    ConfirmPasswordLabelText="string"
    ConfirmPasswordRequiredErrorMessage="string"
    ContinueButtonImageUrl="uri"
    ContinueButtonText="string"
    ContinueButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    ContinueDestinationPageUrl="uri"
    CreateUserButtonImageUrl="uri"
    CreateUserButtonText="string"
    CreateUserButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    CssClass="string"
    DisableCreatedUser="True|<codeFeaturedElement>False</codeFeaturedElement>"
    DisplayCancelButton="True|<codeFeaturedElement>False</codeFeaturedElement>"
    DisplaySideBar="True|<codeFeaturedElement>False</codeFeaturedElement>"
    DuplicateEmailErrorMessage="string"
    DuplicateUserNameErrorMessage="string"
    EditProfileIconUrl="uri"
    EditProfileText="string"
    EditProfileUrl="uri"
    Email="string"
    EmailLabelText="string"
    EmailRegularExpression="string"
    EmailRegularExpressionErrorMessage="string"
    EmailRequiredErrorMessage="string"
    Enabled="<codeFeaturedElement>True</codeFeaturedElement>|False"
    EnableTheming="<codeFeaturedElement>True</codeFeaturedElement>|False"
    EnableViewState="<codeFeaturedElement>True</codeFeaturedElement>|False"
    FinishCompleteButtonImageUrl="uri"
    FinishCompleteButtonText="string"
    FinishCompleteButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    FinishDestinationPageUrl="uri"
    FinishPreviousButtonImageUrl="uri"
    FinishPreviousButtonText="string"
    FinishPreviousButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    Font-Bold="True|<codeFeaturedElement>False</codeFeaturedElement>"
    Font-Italic="True|<codeFeaturedElement>False</codeFeaturedElement>"
    Font-Names="string"
    Font-Overline="True|<codeFeaturedElement>False</codeFeaturedElement>"
    Font-Size="string|Smaller|Larger|XX-Small|X-Small|Small|Medium|
Large|X-Large|XX-Large"
    Font-Strikeout="True|<codeFeaturedElement>False</codeFeaturedElement>"
    Font-Underline="True|<codeFeaturedElement>False</codeFeaturedElement>"
    ForeColor="color name|#dddddd"
    HeaderText="string"
    Height="size"
    HelpPageIconUrl="uri"
    HelpPageText="string"
    HelpPageUrl="uri"
    ID="string"
    InstructionText="string"
    InvalidAnswerErrorMessage="string"
    InvalidEmailErrorMessage="string"
    InvalidPasswordErrorMessage="string"
    InvalidQuestionErrorMessage="string"
    LoginCreatedUser="<codeFeaturedElement>True</codeFeaturedElement>|False"
    MailDefinition-BodyFileName="uri"
    MailDefinition-CC="string"
    MailDefinition-From="string"
    MailDefinition-IsBodyHtml="True|<codeFeaturedElement>False</codeFeaturedElement>"
    MailDefinition-Priority="<codeFeaturedElement>Normal</codeFeaturedElement>|Low|High"
    MailDefinition-Subject="string"
    MembershipProvider="string"
    OnActiveStepChanged="ActiveStepChanged event handler"
    OnCancelButtonClick="CancelButtonClick event handler"
    OnContinueButtonClick="ContinueButtonClick event handler"
    OnCreatedUser="CreatedUser event handler"
    OnCreateUserError="CreateUserError event handler"
    OnCreatingUser="CreatingUser event handler"
    OnDataBinding="DataBinding event handler"
    OnDisposed="Disposed event handler"
    OnFinishButtonClick="FinishButtonClick event handler"
    OnInit="Init event handler"
    OnLoad="Load event handler"
    OnNextButtonClick="NextButtonClick event handler"
    OnPreRender="PreRender event handler"
    OnPreviousButtonClick="PreviousButtonClick event handler"
    OnSendingMail="SendingMail event handler"
    OnSendMailError="SendMailError event handler"
    OnSideBarButtonClick="SideBarButtonClick event handler"
    OnUnload="Unload event handler"
    PasswordHintText="string"
    PasswordLabelText="string"
    PasswordRegularExpression="string"
    PasswordRegularExpressionErrorMessage="string"
    PasswordRequiredErrorMessage="string"
    Question="string"
    QuestionLabelText="string"
    QuestionRequiredErrorMessage="string"
    RequireEmail="<codeFeaturedElement>True</codeFeaturedElement>|False"
    runat="server"
    SkinID="string"
    SkipLinkText="string"
    StartNextButtonImageUrl="uri"
    StartNextButtonText="string"
    StartNextButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    StepNextButtonImageUrl="uri"
    StepNextButtonText="string"
    StepNextButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    StepPreviousButtonImageUrl="uri"
    StepPreviousButtonText="string"
    StepPreviousButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    Style="string"
    TabIndex="integer"
    ToolTip="string"
    UnknownErrorMessage="string"
    UserName="string"
    UserNameLabelText="string"
    UserNameRequiredErrorMessage="string"
    Visible="<codeFeaturedElement>True</codeFeaturedElement>|False"
    Width="size"
>
        <CancelButtonStyle/>
        <CompleteSuccessTextStyle/>
        <ContinueButtonStyle/>
        <CreateUserButtonStyle/>
        <ErrorMessageStyle/>
        <FinishCompleteButtonStyle/>
        <FinishNavigationTemplate>
<!-- child controls -->
        </FinishNavigationTemplate>
        <FinishPreviousButtonStyle/>
        <HeaderStyle/>
        <HeaderTemplate>
<!-- child controls -->
        </HeaderTemplate>
        <HyperLinkStyle/>
        <InstructionTextStyle/>
        <LabelStyle/>
        <MailDefinition
            BodyFileName="uri"
            CC="string"
            From="string"
            IsBodyHtml="True|<codeFeaturedElement>False</codeFeaturedElement>"
            Priority="<codeFeaturedElement>Normal</codeFeaturedElement>|Low|High"
            Subject="string"
>
                <EmbeddedObjects>
                        <asp:EmbeddedMailObject
                            Name="string"
                            Path="uri"
                        />
                </EmbeddedObjects>
        </MailDefinition>
        <NavigationButtonStyle/>
        <NavigationStyle/>
        <PasswordHintStyle/>
        <SideBarButtonStyle/>
        <SideBarStyle/>
        <SideBarTemplate>
<!-- child controls -->
        </SideBarTemplate>
        <StartNavigationTemplate>
<!-- child controls -->
        </StartNavigationTemplate>
        <StartNextButtonStyle/>
        <StepNavigationTemplate>
<!-- child controls -->
        </StepNavigationTemplate>
        <StepNextButtonStyle/>
        <StepPreviousButtonStyle/>
        <StepStyle/>
        <TextBoxStyle/>
        <TitleTextStyle/>
        <ValidatorTextStyle/>
        <WizardSteps>
                <asp:TemplatedWizardStep
                    AllowReturn="<codeFeaturedElement>True</codeFeaturedElement>|False"
                    ContentTemplateContainer="string"
                    EnableTheming="<codeFeaturedElement>True</codeFeaturedElement>|False"
                    EnableViewState="<codeFeaturedElement>True</codeFeaturedElement>|False"
                    ID="string"
                    OnActivate="Activate event handler"
                    OnDataBinding="DataBinding event handler"
                    OnDeactivate="Deactivate event handler"
                    OnDisposed="Disposed event handler"
                    OnInit="Init event handler"
                    OnLoad="Load event handler"
                    OnPreRender="PreRender event handler"
                    OnUnload="Unload event handler"
                    runat="server"
                    SkinID="string"
                    StepType="<codeFeaturedElement>Auto</codeFeaturedElement>|Complete|Finish|Start|Step"
                    Title="string"
                    Visible="<codeFeaturedElement>True</codeFeaturedElement>|False"
>
                        <ContentTemplate>
<!-- child controls -->
                        </ContentTemplate>
                        <CustomNavigationTemplate>
<!-- child controls -->
                        </CustomNavigationTemplate>
                </asp:TemplatedWizardStep>
                <asp:WizardStep
                    AllowReturn="<codeFeaturedElement>True</codeFeaturedElement>|False"
                    EnableTheming="<codeFeaturedElement>True</codeFeaturedElement>|False"
                    EnableViewState="<codeFeaturedElement>True</codeFeaturedElement>|False"
                    ID="string"
                    OnActivate="Activate event handler"
                    OnDataBinding="DataBinding event handler"
                    OnDeactivate="Deactivate event handler"
                    OnDisposed="Disposed event handler"
                    OnInit="Init event handler"
                    OnLoad="Load event handler"
                    OnPreRender="PreRender event handler"
                    OnUnload="Unload event handler"
                    runat="server"
                    SkinID="string"
                    StepType="<codeFeaturedElement>Auto</codeFeaturedElement>|Complete|Finish|Start|Step"
                    Title="string"
                    Visible="<codeFeaturedElement>True</codeFeaturedElement>|False"
                />
        </WizardSteps>
</asp:CreateUserWizard></code><![CDATA[SuppressMessage("Microsoft.Security", "CS001:SecretInline", Justification="Not a secret.")]]>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Provides a user interface for creating new Web site user accounts.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public CreateUserWizard ();" />
<MemberType>Constructor</MemberType>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> class.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ActiveStepIndex">
<MemberSignature Language="C#" Value="public override int ActiveStepIndex { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ActiveStepIndex" /> property provides the zero-based index of the step that is currently displayed in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. You can programmatically set the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ActiveStepIndex" /> property to dynamically display a step to the user.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the step that is currently displayed to the user.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Answer">
<MemberSignature Language="C#" Value="public virtual string Answer { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property will determine whether the question and answer text boxes are displayed at run time.</para>
<para>If an answer is required by the membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property, then the answer text box will appear on the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Each text box displayed on the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control has a <see cref="T:System.Web.UI.WebControls.RequiredFieldValidator" /> object associated with it. </para>
<para>This property cannot be set by themes or style sheet themes. For more information, see <see cref="T:System.Web.UI.ThemeableAttribute" /> and <format type="text/html"><a href="5df3ebbd-d46c-4502-9406-02f9df4ef2c3">ASP.NET Themes Overview</a></format>.</para>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the end user's answer to the password recovery confirmation question.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="AnswerLabelText">
<MemberSignature Language="C#" Value="public virtual string AnswerLabelText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text of the label that identifies the password confirmation answer text box.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="AnswerRequiredErrorMessage">
<MemberSignature Language="C#" Value="public virtual string AnswerRequiredErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the error message shown when the user does not enter an answer to the password confirmation question.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="AutoGeneratePassword">
<MemberSignature Language="C#" Value="public virtual bool AutoGeneratePassword { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.AutoGeneratePassword" /> property makes it possible to create user accounts without entering a password for them. For example, this functionality is useful when an administrator creates a new user's account and then gives a password to the user.</para>
<block subset="none" type="note">
<para>You cannot create users using the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> if <see cref="P:System.Web.UI.WebControls.CreateUserWizard.AutoGeneratePassword" /> is set to true and the <see cref="P:System.Web.Security.Membership.PasswordStrengthRegularExpression" /> property is set in the application's Web.config. An error message indicating an invalid password will result.</para>
</block>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a value indicating whether or not to automatically generate a password for the new user account.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CompleteStep">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.CompleteWizardStep CompleteStep { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.CompleteWizardStep</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CompleteStep" /> property defines the final step for creating a user account. This property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.CompleteWizardStep" /> object that <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CompleteStep" /> returns. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to the final user account creation step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CompleteSuccessText">
<MemberSignature Language="C#" Value="public virtual string CompleteSuccessText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CompleteSuccessText" /> property to change the message that is displayed when a user account is successfully created.</para>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text displayed when a Web site user account is created successfully.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CompleteSuccessTextStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.TableItemStyle CompleteSuccessTextStyle { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TableItemStyle</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CompleteSuccessTextStyle" /> defines the appearance of the text displayed when a Web site user account is created successfully in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. This property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class (for example, CompleteSuccessTextStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, CompleteSuccessTextStyle.ForeColor).</para>
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CompleteSuccessTextStyle" /> property defines the appearance of the text displayed when a Web site user account is created successfully, after the user has clicked the <ui>Continue</ui> button on the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserStep" /> step.</para>
<para>The style settings for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CompleteSuccessTextStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Any settings applied in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CompleteSuccessTextStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CompleteSuccessTextStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" />
</para>
</item>
</list>
<para>However, when you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CompleteSuccessTextStyle" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection of properties that define the appearance of the text displayed when a Web site user account is created successfully. </para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ConfirmPassword">
<MemberSignature Language="C#" Value="public virtual string ConfirmPassword { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ConfirmPassword" /> property contains the second password (the confirmation password) entered by the user. By default, a <see cref="T:System.Web.UI.WebControls.CompareValidator" /> object is provided for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Password" /> and <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ConfirmPassword" /> text box values. Each text box displayed on the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control also has a <see cref="T:System.Web.UI.WebControls.RequiredFieldValidator" /> associated with it. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the second password entered by the user.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ConfirmPasswordCompareErrorMessage">
<MemberSignature Language="C#" Value="public virtual string ConfirmPasswordCompareErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the error message shown when the user enters two different passwords in the password and confirm password text boxes.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ConfirmPasswordLabelText">
<MemberSignature Language="C#" Value="public virtual string ConfirmPasswordLabelText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets text of the label for the second password text box.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ConfirmPasswordRequiredErrorMessage">
<MemberSignature Language="C#" Value="public virtual string ConfirmPasswordRequiredErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the error message displayed when the user leaves the confirm password text box empty.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ContinueButtonClick">
<MemberSignature Language="C#" Value="public event EventHandler ContinueButtonClick;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>System.EventHandler</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonClick" /> event is raised when the <ui>Continue</ui> button on the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control is clicked. Use the <see cref="E:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonClick" /> event to provide additional processing when the <ui>Continue</ui> button is clicked.</para>
<para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs when the user clicks the <ui>Continue</ui> button in the final user account creation step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ContinueButtonCommandName">
<MemberSignature Language="C#" Value="public static readonly string ContinueButtonCommandName;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="F:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonCommandName" /> field represents the <see cref="P:System.Web.UI.WebControls.Button.CommandName" /> value of the <ui>Continue</ui> button on the final step for creating a user account. </para>
<para>To assign continue functionality to any <see cref="T:System.Web.UI.WebControls.Button" /> control contained in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, set the <see cref="P:System.Web.UI.WebControls.Button.CommandName" /> property of the button to the string that is contained in the <see cref="F:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonCommandName" /> field. </para>
<para>The <ui>Continue</ui> button appears on the template for the final step for creating a user account, which is represented by the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CompleteStep" /> property. Clicking the <ui>Continue</ui> button redirects the user to the URL that is stored in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueDestinationPageUrl" /> property. To add custom functionality to the <ui>Continue</ui> button, create an event handler for the <see cref="E:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonClick" /> event.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the <see cref="P:System.Web.UI.WebControls.Button.CommandName" /> value of the <ui>Continue</ui> button on the final step for creating a user account. The <see cref="F:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonCommandName" /> field is read-only. </para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ContinueButtonImageUrl">
<MemberSignature Language="C#" Value="public virtual string ContinueButtonImageUrl { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonType" /> property is set to <see cref="F:System.Web.UI.WebControls.ButtonType.Image" />, use the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonImageUrl" /> property to specify the image to display for the <ui>Continue</ui> button.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of an image used for the <ui>Continue</ui> button on the final user account creation step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ContinueButtonStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.Style ContinueButtonStyle { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.Wizard.NavigationButtonStyle" /> property determines the appearance of the <ui>Continue</ui> button in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, but you can override these settings using the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonStyle" /> property. This property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, ContinueButtonStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, ContinueButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties.</para>
<para>The style settings for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Any settings applied in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonStyle" /> property override the corresponding settings in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" />
</para>
</item>
</list>
<para>However, when you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonStyle" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection of properties that define the appearance of the <ui>Continue</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ContinueButtonText">
<MemberSignature Language="C#" Value="public virtual string ContinueButtonText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonText" /> property contains the text displayed for the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control's <ui>Continue</ui> button. Depending on the value of the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonType" /> property, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonText" /> property can appear as text on a button, as text displayed as an alternative to an image, or as the text of a link. The following table lists <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonType" /> property values and their respective effects on the <ui>Continue</ui> button's text caption.</para>
<list type="table">
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Button" />
</term>
<description>
<para>Text appears on the button.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Image" />
</term>
<description>
<para>Text appears as alternative text for the image.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Link" />
</term>
<description>
<para>Text appears as a link.</para>
</description>
</item>
</list>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text caption displayed on the <ui>Continue</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ContinueButtonType">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.ButtonType ContinueButtonType { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.ButtonType</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the type of button rendered as the <ui>Continue</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ContinueDestinationPageUrl">
<MemberSignature Language="C#" Value="public virtual string ContinueDestinationPageUrl { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueDestinationPageUrl" /> property contains the URL of the Web page that the user will see after successfully completing registration on your site. By setting the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueDestinationPageUrl" /> property, you can control the first page that newly registered users see.</para>
<para>When the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ContinueDestinationPageUrl" /> property is <see cref="F:System.String.Empty" /> and the user clicks the <ui>Continue</ui> button, the page is refreshed and any values on the form are cleared.</para>
<para>This property cannot be set by themes or style sheet themes. For more information, see <see cref="T:System.Web.UI.ThemeableAttribute" /> and <format type="text/html"><a href="5df3ebbd-d46c-4502-9406-02f9df4ef2c3">ASP.NET Themes Overview</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of the page that the user will see after clicking the <ui>Continue</ui> button on the success page.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreateChildControls">
<MemberSignature Language="C#" Value="protected override void CreateChildControls ();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Called by the ASP.NET page framework to notify this control to create any child controls that it contains in preparation for posting back or rendering.</para>
</summary>
</Docs>
</Member>
<Member MemberName="CreateControlHierarchy">
<MemberSignature Language="C#" Value="protected override void CreateControlHierarchy ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreatedUser">
<MemberSignature Language="C#" Value="public event EventHandler CreatedUser;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>System.EventHandler</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.CreateUserWizard.CreatedUser" /> event is raised after the membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property creates the new Web site user account. If the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.LoginCreatedUser" /> property is true, the user is logged on to the Web site after the <see cref="E:System.Web.UI.WebControls.CreateUserWizard.CreatedUser" /> event.</para>
<para>Use the <see cref="E:System.Web.UI.WebControls.CreateUserWizard.CreatedUser" /> event to set Web site values, such as personalization values, before the user is logged on to the site for the first time.</para>
<para>For more information about handling events, see <format type="text/html"><a href="b6f65241-e0ad-4590-a99f-200ce741bb1f">Handling and Raising Events</a></format>. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs after the membership provider has created the new Web site user account.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreateUserButtonImageUrl">
<MemberSignature Language="C#" Value="public virtual string CreateUserButtonImageUrl { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserButtonType" /> property is set to <see cref="F:System.Web.UI.WebControls.ButtonType.Image" />, use the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserButtonImageUrl" /> property to specify the image to display for the <ui>Create User</ui> button.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of an image displayed for the <ui>Create User</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreateUserButtonStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.Style CreateUserButtonStyle { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserButtonStyle" /> property defines the appearance of the <ui>Create User</ui> button in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. This property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, CreateUserButtonStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, CreateUserButtonStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties.</para>
<para>The style settings for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserButtonStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Any settings applied in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserButtonStyle" /> property override the corresponding settings in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserButtonStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" />
</para>
</item>
</list>
<para>However, when you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserButtonStyle" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection of properties that define the appearance of the <ui>Create User</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreateUserButtonText">
<MemberSignature Language="C#" Value="public virtual string CreateUserButtonText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserButtonText" /> property contains the text displayed for the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control's <ui>Create User</ui> button. Depending on the value of the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserButtonType" /> property, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserButtonText" /> property can appear as text on a button, as text displayed as an alternative to an image, or as the text of a link. The following table lists <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserButtonType" /> property values and their respective effects on the <ui>Create User</ui> button's text caption.</para>
<list type="table">
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Button" />
</term>
<description>
<para>Text appears on the button.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Image" />
</term>
<description>
<para>Text appears as alternative text for the image.</para>
</description>
</item>
<item>
<term>
<see cref="F:System.Web.UI.WebControls.ButtonType.Link" />
</term>
<description>
<para>Text appears as a link.</para>
</description>
</item>
</list>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text caption displayed on the <ui>Create User</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreateUserButtonType">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.ButtonType CreateUserButtonType { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.ButtonType</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the type of button rendered as the <ui>Create User</ui> button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreateUserError">
<MemberSignature Language="C#" Value="public event System.Web.UI.WebControls.CreateUserErrorEventHandler CreateUserError;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.CreateUserErrorEventHandler</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.CreateUserWizard.CreateUserError" /> event is raised on the server when the membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property fails to create the specified user account. </para>
<para>The error handler is passed a <see cref="T:System.Web.Security.MembershipCreateStatus" /> object that contains the details of the failure from the membership provider. For a list of the possible error conditions, see <see cref="T:System.Web.Security.MembershipCreateStatus" />.</para>
<para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs when the membership provider cannot create the specified user account.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreateUserStep">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.CreateUserWizardStep CreateUserStep { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.CreateUserWizardStep</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserStep" /> property defines the account creation step of a <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. This property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.CreateUserWizardStep" /> object that <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserStep" /> returns.</para>
<para>The following table lists the required and optional controls that are supported when using templated content for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserStep" />.</para>
<list type="table">
<listheader>
<item>
<term>
<para>ID or command name </para>
</term>
<description>
<para>Control type </para>
</description>
<description>
<para>Required/optional </para>
</description>
</item>
</listheader>
<item>
<term>
<para>UserName </para>
</term>
<description>
<para>Any control that implements <see cref="T:System.Web.UI.IEditableTextControl" />, including <see cref="T:System.Web.UI.WebControls.TextBox" />, or a custom or third-party control.</para>
</description>
<description>
<para>Required </para>
</description>
</item>
<item>
<term>
<para>Password </para>
</term>
<description>
<para>Any control that implements <see cref="T:System.Web.UI.IEditableTextControl" />, including <see cref="T:System.Web.UI.WebControls.TextBox" />, or a custom or third-party control.</para>
</description>
<description>
<para>Required if <see cref="P:System.Web.UI.WebControls.CreateUserWizard.AutoGeneratePassword" /> is set to false.</para>
</description>
</item>
<item>
<term>
<para>Email </para>
</term>
<description>
<para>Any control that implements <see cref="T:System.Web.UI.IEditableTextControl" />, including <see cref="T:System.Web.UI.WebControls.TextBox" />, or a custom or third-party control.</para>
</description>
<description>
<para>Required if <see cref="P:System.Web.UI.WebControls.CreateUserWizard.RequireEmail" /> is true. </para>
</description>
</item>
<item>
<term>
<para>ConfirmPassword </para>
</term>
<description>
<para>Any control that implements <see cref="T:System.Web.UI.IEditableTextControl" />, including <see cref="T:System.Web.UI.WebControls.TextBox" />, or a custom or third-party control. </para>
</description>
<description>
<para>No requirements </para>
</description>
</item>
<item>
<term>
<para>Question </para>
</term>
<description>
<para>Any control that implements <see cref="T:System.Web.UI.IEditableTextControl" />, including <see cref="T:System.Web.UI.WebControls.TextBox" />, or a custom or third-party control. </para>
</description>
<description>
<para>Optional unless required by membership. </para>
</description>
</item>
<item>
<term>
<para>Answer </para>
</term>
<description>
<para>Any control that implements <see cref="T:System.Web.UI.IEditableTextControl" />, including <see cref="T:System.Web.UI.WebControls.TextBox" />, or a custom or third-party control. </para>
</description>
<description>
<para>Optional unless required by membership. </para>
</description>
</item>
<item>
<term>
<para>ErrorMessage </para>
</term>
<description>
<para>Any control that implements <see cref="T:System.Web.UI.ITextControl" />. </para>
</description>
<description>
<para>Optional </para>
</description>
</item>
<item>
<term>
<para>CreateUser </para>
</term>
<description>
<para>Any control that causes event bubbling </para>
</description>
<description>
<para>Optional </para>
</description>
</item>
<item>
<term>
<para>Cancel </para>
</term>
<description>
<para>Any </para>
</description>
<description>
<para>Optional </para>
</description>
</item>
</list>
<para>If the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.RequireEmail" /> property is set to true and you are using templated content, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Email" /> control is required; the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control throws an exception if the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Email" /> control is not found or is of the wrong type. If <see cref="P:System.Web.UI.WebControls.CreateUserWizard.RequireEmail" /> is set to false, no exception is thrown if the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Email" /> control is not found. If the control is of the wrong type, it is ignored. </para>
<para>Similarly, if a membership provider requires a question and answer (determined by the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.QuestionAndAnswerRequired" /> property), the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Question" /> and <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Answer" /> controls are required and the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> throws an exception if they are not found or are of the wrong type. If they are not required by the membership provider, no exception is thrown if they are not found, and if they are of the wrong type they are ignored.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to the template for the user account creation step.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="CreatingUser">
<MemberSignature Language="C#" Value="public event System.Web.UI.WebControls.LoginCancelEventHandler CreatingUser;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.LoginCancelEventHandler</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.CreateUserWizard.CreatingUser" /> event is raised prior to calling the <see cref="M:System.Web.Security.MembershipProvider.CreateUser(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Object,System.Web.Security.MembershipCreateStatus@)" /> method on the membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property.</para>
<para>Use the <see cref="E:System.Web.UI.WebControls.CreateUserWizard.CreatingUser" /> event to establish defaults or modify the information entered by the user before passing the information to the membership provider.</para>
<para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs before the membership provider is called to create the new Web site user account.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="DisableCreatedUser">
<MemberSignature Language="C#" Value="public virtual bool DisableCreatedUser { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.DisableCreatedUser" /> property determines if the newly created user account will be marked as disabled in the membership data store. When user accounts are marked as disabled, the accounts are not allowed to log on to the Web site. For example, if your Web site allows new users to request an account, but requires administrative approval before allowing access, set the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.DisableCreatedUser" /> property to true to disable newly created accounts until an administrator approves the account.</para>
<para>When <see cref="P:System.Web.UI.WebControls.CreateUserWizard.DisableCreatedUser" /> is true, you should set the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.LoginCreatedUser" /> property to false so that the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> does not attempt to log on the new user.</para>
<para>This property cannot be set by themes or style sheet themes. For more information, see <see cref="T:System.Web.UI.ThemeableAttribute" /> and <format type="text/html"><a href="5df3ebbd-d46c-4502-9406-02f9df4ef2c3">ASP.NET Themes Overview</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a value indicating whether the new user should be allowed to log on to the Web site.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="DisplaySideBar">
<MemberSignature Language="C#" Value="public override bool DisplaySideBar { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a value indicating whether to display the sidebar area of the control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="DuplicateEmailErrorMessage">
<MemberSignature Language="C#" Value="public virtual string DuplicateEmailErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the error message displayed when the user enters an e-mail address that is already in use in the membership provider.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="DuplicateUserNameErrorMessage">
<MemberSignature Language="C#" Value="public virtual string DuplicateUserNameErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the error message displayed when the user enters a user name that is already in use in the membership provider.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="EditProfileIconUrl">
<MemberSignature Language="C#" Value="public virtual string EditProfileIconUrl { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of an image to display next to the link to the user profile editing page.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="EditProfileText">
<MemberSignature Language="C#" Value="public virtual string EditProfileText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text caption for the link to the user profile editing page.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="EditProfileUrl">
<MemberSignature Language="C#" Value="public virtual string EditProfileUrl { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of the user profile editing page.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Email">
<MemberSignature Language="C#" Value="public virtual string Email { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>If an e-mail address is required by the membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property, then the e-mail address text box appears on the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Each text box displayed on the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control has a <see cref="T:System.Web.UI.WebControls.RequiredFieldValidator" /> object associated with it. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the e-mail address entered by the user.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="EmailLabelText">
<MemberSignature Language="C#" Value="public virtual string EmailLabelText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text of the label for the e-mail text box.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="EmailRegularExpression">
<MemberSignature Language="C#" Value="public virtual string EmailRegularExpression { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.EmailRegularExpression" /> property to specify a regular expression that validates the e-mail address entered by the user to confirm that it matches a specific pattern. A common use is to make sure that the user has entered a complete e-mail address, such as <userInputLocalizable>user@contoso.com</userInputLocalizable>. The regular expression is used in addition to any restrictions placed on the e-mail address by the membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property. If the membership provider rejects the e-mail address for any reason, the text contained in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InvalidEmailErrorMessage" /> property is displayed.</para>
<para>The address is only compared to the regular expression if the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.RequireEmail" /> property is set to true.</para>
<para>If the e-mail address does not pass the regular expression, the text contained in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.EmailRegularExpressionErrorMessage" /> property is displayed to the user.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a regular expression used to validate the provided e-mail address.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="EmailRegularExpressionErrorMessage">
<MemberSignature Language="C#" Value="public virtual string EmailRegularExpressionErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.EmailRegularExpressionErrorMessage" /> property to inform the user that the e-mail address entered did not pass the site's criteria for e-mail addresses. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the error message displayed when the entered e-mail address does not pass the site's criteria for e-mail addresses.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="EmailRequiredErrorMessage">
<MemberSignature Language="C#" Value="public virtual string EmailRequiredErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the error message shown to the user when an e-mail address is not entered in the e-mail text box.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ErrorMessageStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.TableItemStyle ErrorMessageStyle { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TableItemStyle</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ErrorMessageStyle" /> property to change the appearance of error messages that are displayed when the membership provider fails to create a new user account. By default, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ErrorMessageStyle" /> is set to display the following messages in red:</para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.DuplicateEmailErrorMessage" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.DuplicateUserNameErrorMessage" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.InvalidAnswerErrorMessage" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.InvalidEmailErrorMessage" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.InvalidQuestionErrorMessage" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.InvalidPasswordErrorMessage" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.UnknownErrorMessage" />
</para>
</item>
</list>
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ErrorMessageStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> object it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class (for example, ErrorMessageStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, ErrorMessageStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties. The style settings for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ErrorMessageStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Any settings that are applied in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ErrorMessageStyle" /> property override the corresponding settings in the properties of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ErrorMessageStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" />
</para>
</item>
</list>
<para>However, when you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ErrorMessageStyle" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection of style properties that define the appearance of error messages.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GetDesignModeState">
<MemberSignature Language="C#" Value="protected override System.Collections.IDictionary GetDesignModeState ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Collections.IDictionary</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets design-time data for a control.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>None</para>
</returns>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="HelpPageIconUrl">
<MemberSignature Language="C#" Value="public virtual string HelpPageIconUrl { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of an image to display next to the link to the Help page.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="HelpPageText">
<MemberSignature Language="C#" Value="public virtual string HelpPageText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text caption for the link to the Help page.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="HelpPageUrl">
<MemberSignature Language="C#" Value="public virtual string HelpPageUrl { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of the Help page.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="HyperLinkStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.TableItemStyle HyperLinkStyle { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TableItemStyle</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.HyperLinkStyle" /> property gets a reference to a <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> object that you use to change the appearance of hyperlinks in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control.</para>
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.HyperLinkStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> object it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class (for example, HyperLinkStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, HyperLinkStyle.ForeColor).</para>
<para>The style settings for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.HyperLinkStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Any settings applied in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.HyperLinkStyle" /> property override the corresponding settings in the properties of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.CreateUserWizard.HyperLinkStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" />
</para>
</item>
</list>
<para>However, when you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.HyperLinkStyle" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a collection of properties that define the appearance of hyperlinks.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="InstructionText">
<MemberSignature Language="C#" Value="public virtual string InstructionText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InstructionText" /> property contains instructions for users creating a new user account. This text is displayed in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, following the title.</para>
<para>If the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InstructionText" /> property is set to an empty string (""), no instruction text is displayed to the user.</para>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets instructions for creating a new user account.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="InstructionTextStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.TableItemStyle InstructionTextStyle { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TableItemStyle</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InstructionTextStyle" /> property defines the appearance of instruction text in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. This property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class (for example, InstructionTextStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, InstructionTextStyle.ForeColor).</para>
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InstructionTextStyle" /> property defines the appearance of the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InstructionText" /> property.</para>
<para>The style settings for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InstructionTextStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Any settings applied in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InstructionTextStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InstructionTextStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" />
</para>
</item>
</list>
<para>However, when you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InstructionTextStyle" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection of properties that define the appearance of instruction text.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="InvalidAnswerErrorMessage">
<MemberSignature Language="C#" Value="public virtual string InvalidAnswerErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Web.Security.Membership" /> class membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property can support a question and answer for retrieving or resetting the user's password. The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InvalidAnswerErrorMessage" /> property is displayed when the answer entered by the user does not meet the requirements for the answer set by the membership provider. The actual requirements for the answer are determined by the membership provider, and might be different for different providers.</para>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the message displayed when the password retrieval answer is not valid.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="InvalidEmailErrorMessage">
<MemberSignature Language="C#" Value="public virtual string InvalidEmailErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Web.Security.Membership" /> class membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property can restrict the e-mail addresses that it will accept. The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InvalidEmailErrorMessage" /> property is displayed when the e-mail address entered by the user does not meet the requirements for the e-mail address set by the membership provider. The actual requirements for the e-mail address are determined by the membership provider, and might be different for different providers.</para>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the message displayed when the entered e-mail address is not valid.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="InvalidPasswordErrorMessage">
<MemberSignature Language="C#" Value="public virtual string InvalidPasswordErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Web.Security.Membership" /> class membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property can restrict the passwords that it will accept. The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InvalidPasswordErrorMessage" /> property is displayed when the password entered by the user does not meet the requirements for a password set by the membership provider. The actual requirements for the password are determined by the membership provider, and might be different for different providers.</para>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the message displayed when the password entered is not valid.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="InvalidQuestionErrorMessage">
<MemberSignature Language="C#" Value="public virtual string InvalidQuestionErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Web.Security.Membership" /> class membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property can restrict the password retrieval questions that it will accept. The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InvalidQuestionErrorMessage" /> property is displayed when the question entered by the user does not meet the requirements for the question set by the membership provider. The actual requirements for the question are determined by the membership provider, and might be different for different providers.</para>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the message displayed when the password retrieval question entered is not valid.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="LabelStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.TableItemStyle LabelStyle { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TableItemStyle</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.LabelStyle" /> property defines the appearance of labels in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. This property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class (for example, LabelStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, LabelStyle.ForeColor).</para>
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.LabelStyle" /> property defines the appearance of the following properties:</para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.EmailLabelText" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.UserNameLabelText" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordLabelText" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.ConfirmPasswordLabelText" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.QuestionLabelText" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.AnswerLabelText" />
</para>
</item>
</list>
<para>The style settings for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.LabelStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Any settings applied in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.LabelStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.CreateUserWizard.LabelStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" />
</para>
</item>
</list>
<para>However, when you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.LabelStyle" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection of properties that define the appearance of labels.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="LoadViewState">
<MemberSignature Language="C#" Value="protected override void LoadViewState (object savedState);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="savedState" Type="System.Object" />
</Parameters>
<Docs>
<param name="savedState">To be added.</param>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Restores view-state information from a previous page request that was saved by the SaveViewState method.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="LoginCreatedUser">
<MemberSignature Language="C#" Value="public virtual bool LoginCreatedUser { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.LoginCreatedUser" /> property can be set to false if you want to create a user account but not authenticate the account after it is created. This might be useful if you are an administrator creating user accounts, for example, or if there is a waiting period before users can access the Web site.</para>
<block subset="none" type="note">
<para>When the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.LoginCreatedUser" /> property is set to true, the user will be created and logged in at the end of the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserStep" /> step. If you want the user to be logged in after all the steps have been completed, you can set the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.DisableCreatedUser" /> property to false until all of the steps of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control are completed.</para>
</block>
<para>This property cannot be set by themes or style sheet themes. For more information, see <see cref="T:System.Web.UI.ThemeableAttribute" /> and <format type="text/html"><a href="5df3ebbd-d46c-4502-9406-02f9df4ef2c3">ASP.NET Themes Overview</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a value indicating whether to log in the new user after creating the user account.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="MailDefinition">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.MailDefinition MailDefinition { get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.MailDefinition</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MailDefinition" /> property returns a reference to a group of properties that you use to define the format and content of the e-mail message that is sent to new users. Common settings include the subject line and the sender's return address. For a complete list of properties, see the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> class. </para>
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MailDefinition" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> object it returns. You can set the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MailDefinition" /> properties declaratively in the form Property-Subproperty, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> class (for example, MailDefinition-Subject). You can also set the properties programmatically in the form Property.SubProperty (for example, MailDefinition.Subject).</para>
<para>An e-mail message is sent to new users only if <see cref="T:System.Web.UI.WebControls.MailDefinition" /> is not null and if <see cref="P:System.Web.Mail.MailMessage.Body" /> is not empty or null. In that case, the <see cref="E:System.Web.UI.WebControls.CreateUserWizard.SendingMail" /> event is raised and an attempt is made to send the e-mail message. The <see cref="P:System.Web.UI.WebControls.MailDefinition.From" /> property must be set to an e-mail address. Otherwise, an <see cref="T:System.Web.HttpException" /> exception is thrown.</para>
<para>When the e-mail message is created from the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> object, it will make the substitutions listed in the following table.</para>
<list type="table">
<listheader>
<item>
<term>
<para>Substitution text</para>
</term>
<description>
<para>Replaced with</para>
</description>
</item>
</listheader>
<item>
<term>
<para><%UserName%></para>
</term>
<description>
<para>The user name of the newly created user account.</para>
</description>
</item>
<item>
<term>
<para><%Password%></para>
</term>
<description>
<para>The password for the newly created user account.</para>
</description>
</item>
</list>
<para>If the <see cref="P:System.Web.UI.WebControls.MailDefinition.IsBodyHtml" /> property of the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> object is true, the contents of the mail message will be HTML encoded to guard against cross-site scripting security vulnerabilities for the message recipient.</para>
<para>You can use the <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnSendingMail(System.Web.UI.WebControls.MailMessageEventArgs)" /> method to modify the <see cref="T:System.Web.Mail.MailMessage" /> created by the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> object.</para>
<para>This property cannot be set by themes or style sheet themes. For more information, see <see cref="T:System.Web.UI.ThemeableAttribute" /> and <format type="text/html"><a href="5df3ebbd-d46c-4502-9406-02f9df4ef2c3">ASP.NET Themes Overview</a></format>.</para>
<block subset="none" type="note">
<para>It is not possible to guarantee that a user will receive or view an e-mail message. To verify that a user has received a notification by e-mail, consider providing a confirmation link in the e-mail message that enables the user to confirm that the notification was received.</para>
</block>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection of properties that define the characteristics of the e-mail message sent to new users.</para>
</summary>
</Docs>
</Member>
<Member MemberName="MembershipProvider">
<MemberSignature Language="C#" Value="public virtual string MembershipProvider { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property contains the name of the defined <see cref="T:System.Web.Security.MembershipProvider" /> class membership provider that is used to store the user information. You can store membership information for users in different data stores by changing the value of the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property. When the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property is set to <see cref="F:System.String.Empty" />, the default membership provider defined in the Web.config file is used.</para>
<para>Membership providers are defined in the Web.config file in the <membership> section.</para>
<para>This property cannot be set by themes or style sheet themes. For more information, see <see cref="T:System.Web.UI.ThemeableAttribute" /> and <format type="text/html"><a href="5df3ebbd-d46c-4502-9406-02f9df4ef2c3">ASP.NET Themes Overview</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the membership provider called to create user accounts.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnBubbleEvent">
<MemberSignature Language="C#" Value="protected override bool OnBubbleEvent (object source, EventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="System.Object" />
<Parameter Name="e" Type="System.EventArgs" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Determines whether the event for the server control is passed up the page's UI server control hierarchy.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A Boolean value.</para>
</returns>
<param name="source">
<attribution license="cc4" from="Microsoft" modified="false" /> None</param>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" /> None</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnContinueButtonClick">
<MemberSignature Language="C#" Value="protected virtual void OnContinueButtonClick (EventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.EventArgs" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonClick" /> event is raised when the user clicks the <ui>Continue</ui> button on the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. </para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnContinueButtonClick(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.CreateUserWizard.ContinueButtonClick" /> event when the user clicks the <ui>Continue</ui> button on the final user account creation step.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnCreatedUser">
<MemberSignature Language="C#" Value="protected virtual void OnCreatedUser (EventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.EventArgs" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnCreatedUser(System.EventArgs)" /> method is called after the Web site user account is created by the membership provider. If the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.LoginCreatedUser" /> property is true, the user is logged in after the <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnCreatedUser(System.EventArgs)" /> method is called.</para>
<para>Use the <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnCreatedUser(System.EventArgs)" /> method to set Web site values, such as personalization properties, before the user is logged in for the first time.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="f2adaf01-1ed1-42e1-8c31-8d467e7e0ee2">Raising an Event</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnCreatedUser(System.EventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.CreateUserWizard.CreatedUser" /> event after the membership provider creates the user account.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.EventArgs" /> that contains the event data. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnCreateUserError">
<MemberSignature Language="C#" Value="protected virtual void OnCreateUserError (System.Web.UI.WebControls.CreateUserErrorEventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.Web.UI.WebControls.CreateUserErrorEventArgs" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnCreateUserError(System.Web.UI.WebControls.CreateUserErrorEventArgs)" /> method is called when the membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property returns an error message from creating the specified user account. The <see cref="P:System.Web.UI.WebControls.CreateUserErrorEventArgs.CreateUserError" /> property of the <see cref="T:System.Web.UI.WebControls.CreateUserErrorEventArgs" /> object passed as the <paramref name="e" /> parameter contains a <see cref="T:System.Web.Security.MembershipCreateStatus" /> object that contains the details of the error.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="b6f65241-e0ad-4590-a99f-200ce741bb1f">Handling and Raising Events</a></format>. </para>
<para>The <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnCreateUserError(System.Web.UI.WebControls.CreateUserErrorEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.CreateUserWizard.CreateUserError" /> event when there is a problem creating the specified user account.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.CreateUserErrorEventArgs" /> with the data for the event.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnCreatingUser">
<MemberSignature Language="C#" Value="protected virtual void OnCreatingUser (System.Web.UI.WebControls.LoginCancelEventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.Web.UI.WebControls.LoginCancelEventArgs" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnCreatingUser(System.Web.UI.WebControls.LoginCancelEventArgs)" /> method to do any processing required before sending the new user information to the <see cref="M:System.Web.Security.MembershipProvider.CreateUser(System.String,System.String,System.String,System.String,System.String,System.Boolean,System.Object,System.Web.Security.MembershipCreateStatus@)" /> method of the membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property. For example, you might set the user name field to all lowercase letters, or compare the e-mail address to a list of restricted addresses before allowing creation of the user account.</para>
<para>If you need to cancel the request to create the new user account, set the <see cref="P:System.Web.UI.WebControls.LoginCancelEventArgs.Cancel" /> property of the <see cref="T:System.Web.UI.WebControls.LoginCancelEventArgs" /> object passed as the <paramref name="e" /> parameter to true.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="b6f65241-e0ad-4590-a99f-200ce741bb1f">Handling and Raising Events</a></format>. </para>
<para>The <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnCreatingUser(System.Web.UI.WebControls.LoginCancelEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.CreateUserWizard.CreatingUser" /> event prior to calling the membership provider to create the new user account.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.LoginCancelEventArgs" /> containing the event data.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnNextButtonClick">
<MemberSignature Language="C#" Value="protected override void OnNextButtonClick (System.Web.UI.WebControls.WizardNavigationEventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.Web.UI.WebControls.WizardNavigationEventArgs" />
</Parameters>
<Docs>
<param name="e">To be added.</param>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.Wizard.NextButtonClick" /> event when the user clicks the <ui>Next</ui> button in one of the Create User wizard steps.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnPreRender">
<MemberSignature Language="C#" Value="protected override void OnPreRender (EventArgs e);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.EventArgs" />
</Parameters>
<Docs>
<param name="e">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="OnSendingMail">
<MemberSignature Language="C#" Value="protected virtual void OnSendingMail (System.Web.UI.WebControls.MailMessageEventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.Web.UI.WebControls.MailMessageEventArgs" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnSendingMail(System.Web.UI.WebControls.MailMessageEventArgs)" /> method to modify the e-mail message sent to new users. The <see cref="P:System.Web.UI.WebControls.MailMessageEventArgs.Message" /> property of the <see cref="T:System.Web.UI.WebControls.MailMessageEventArgs" /> object passed as the <paramref name="e" /> parameter contains the <see cref="T:System.Web.Mail.MailMessage" /> object that will be sent to the new user. Modify the properties of the <see cref="T:System.Web.Mail.MailMessage" /> object to modify the e-mail message.</para>
<para>E-mail messages are only created when the <see cref="P:System.Web.UI.WebControls.MailDefinition.BodyFileName" /> property of the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MailDefinition" /> object specified by the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MailDefinition" /> property points to a valid file name.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="b6f65241-e0ad-4590-a99f-200ce741bb1f">Handling and Raising Events</a></format>. </para>
<para>The <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnSendingMail(System.Web.UI.WebControls.MailMessageEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.CreateUserWizard.SendingMail" /> event before an e-mail message is sent to a new user.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.MailMessageEventArgs" /> containing the event data.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnSendMailError">
<MemberSignature Language="C#" Value="protected virtual void OnSendMailError (System.Web.UI.WebControls.SendMailErrorEventArgs e);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="System.Web.UI.WebControls.SendMailErrorEventArgs" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnSendMailError(System.Web.UI.WebControls.SendMailErrorEventArgs)" /> method is called when the SMTP mail system raises an exception while attempting to send e-mail to the new user. </para>
<para>Examine the <see cref="P:System.Web.UI.WebControls.SendMailErrorEventArgs.Exception" /> property of the <see cref="T:System.Web.UI.WebControls.SendMailErrorEventArgs" /> object passed as the <paramref name="e" /> parameter to determine the actual cause of the exception. The most common problem is a configuration error in the <smtpMail> section of the Web.config file.</para>
<para>You must set the <see cref="P:System.Web.UI.WebControls.SendMailErrorEventArgs.Handled" /> property of the <see cref="T:System.Web.UI.WebControls.SendMailErrorEventArgs" /> object passed as the <paramref name="e" /> parameter to signal that the exception that caused the <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnSendMailError(System.Web.UI.WebControls.SendMailErrorEventArgs)" /> method to be called has been taken care of, otherwise the exception is re-thrown.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="b6f65241-e0ad-4590-a99f-200ce741bb1f">Handling and Raising Events</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.CreateUserWizard.OnSendMailError(System.Web.UI.WebControls.SendMailErrorEventArgs)" /> method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Raises the <see cref="E:System.Web.UI.WebControls.CreateUserWizard.SendMailError" /> event when e-mail cannot be sent to the new user.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.SendMailErrorEventArgs" /> containing the event data.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Password">
<MemberSignature Language="C#" Value="public virtual string Password { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Password" /> property contains the password entered by the user. By default, a <see cref="T:System.Web.UI.WebControls.CompareValidator" /> object is provided for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Password" /> and <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ConfirmPassword" /> text box values. Each text box displayed on the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control also has a <see cref="T:System.Web.UI.MobileControls.RequiredFieldValidator" /> object associated with it. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the password entered by the user.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="PasswordHintStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.TableItemStyle PasswordHintStyle { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TableItemStyle</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordHintStyle" /> property defines the appearance of the text that describes password requirements in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. This property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class (for example, PasswordHintStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, PasswordHintStyle.ForeColor).</para>
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordHintStyle" /> property defines the appearance of the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordHintText" /> property.</para>
<para>The style settings for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordHintStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Any settings applied in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordHintStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordHintStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" />
</para>
</item>
</list>
<para>However, when you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordHintStyle" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection of properties that define the appearance of the text that describes password requirements.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="PasswordHintText">
<MemberSignature Language="C#" Value="public virtual string PasswordHintText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>You can use the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordHintText" /> property to provide guidelines and requirements for the user on how to create a password. For example, you could set the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordHintText" /> property to "Your password must be at least six characters long." You can then use the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordRegularExpression" /> property to validate that the user entered a password that conforms to the guidelines.</para>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text that describes password requirements.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="PasswordLabelText">
<MemberSignature Language="C#" Value="public virtual string PasswordLabelText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text of the label for the password text box.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="PasswordRegularExpression">
<MemberSignature Language="C#" Value="public virtual string PasswordRegularExpression { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordRegularExpression" /> property to define the requirements for passwords used to validate users on your Web site. A common use is to make sure that a user has included symbols other than letters in a password to make it harder for attackers to guess a password. The regular expression is used in addition to any restrictions placed on the password by the membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property. If the membership provider rejects the password for any reason, the text contained in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.InvalidPasswordErrorMessage" /> property is displayed.</para>
<para>If the password entered does not pass the regular expression, the error message contained in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordRegularExpressionErrorMessage" /> property is displayed to the user.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a regular expression used to validate the provided password.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="PasswordRegularExpressionErrorMessage">
<MemberSignature Language="C#" Value="public virtual string PasswordRegularExpressionErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordRegularExpressionErrorMessage" /> property to inform the user that the password entered did not conform to the site's password requirements.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the error message shown when the password entered does not conform to the site's password requirements.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="PasswordRequiredErrorMessage">
<MemberSignature Language="C#" Value="public virtual string PasswordRequiredErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text of the error message shown when the user does not enter a password.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Question">
<MemberSignature Language="C#" Value="public virtual string Question { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property will determine whether the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Question" /> and <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Answer" /> text boxes are displayed at run time. Each text box displayed on the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control has a <see cref="T:System.Web.UI.WebControls.RequiredFieldValidator" /> associated with it. </para>
<para>This property cannot be set by themes or style sheet themes. For more information, see <see cref="T:System.Web.UI.ThemeableAttribute" /> and <format type="text/html"><a href="5df3ebbd-d46c-4502-9406-02f9df4ef2c3">ASP.NET Themes Overview</a></format>.</para>
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the password recovery confirmation question entered by the user.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="QuestionAndAnswerRequired">
<MemberSignature Language="C#" Value="protected bool QuestionAndAnswerRequired { get; }" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.QuestionAndAnswerRequired" /> property returns a value from the membership provider set in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property specifying whether the user is required to enter a password confirmation question and answer.</para>
<para>If a Membership provider requires a question and answer, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Question" /> and <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Answer" /> controls are required and the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> throws an exception if they are not found or of the wrong type. If they are not required by the Membership provider, no exception is thrown if they are not found, and if they are of the wrong type they are ignored.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a value indicating whether the user is required to enter a password confirmation question and answer.</para>
</summary>
</Docs>
</Member>
<Member MemberName="QuestionLabelText">
<MemberSignature Language="C#" Value="public virtual string QuestionLabelText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text of the label for the question text box.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="QuestionRequiredErrorMessage">
<MemberSignature Language="C#" Value="public virtual string QuestionRequiredErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the error message that is displayed when the user does not enter a password confirmation question.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="RequireEmail">
<MemberSignature Language="C#" Value="public virtual bool RequireEmail { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>When the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.RequireEmail" /> property is true, the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> will display a text box and an associated label for the user to enter an e-mail address. If the user does not enter an e-mail address, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.EmailRequiredErrorMessage" /> property will display an error message.</para>
<para>If the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.RequireEmail" /> property is set to true and you are using templated content, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Email" /> control is required and the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> throws an exception if the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Email" /> control is not found or is of the wrong type. If <see cref="P:System.Web.UI.WebControls.CreateUserWizard.RequireEmail" /> is set to false, no exception is thrown if the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.Email" /> is not found. If it is of the wrong type, it is ignored. </para>
<block subset="none" type="note">
<para>If the membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property requires a unique e-mail address for new users, you must set the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.RequireEmail" /> property to true so that the UI for entering an e-mail address is displayed. Otherwise, the user will see the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.EmailRequiredErrorMessage" /> but have no way to enter an e-mail address.</para>
</block>
<para>This property cannot be set by themes or style sheet themes. For more information, see <see cref="T:System.Web.UI.ThemeableAttribute" /> and <format type="text/html"><a href="5df3ebbd-d46c-4502-9406-02f9df4ef2c3">ASP.NET Themes Overview</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a value indicating whether an e-mail address is required for the Web site user.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SaveViewState">
<MemberSignature Language="C#" Value="protected override object SaveViewState ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Saves the state of the control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SendingMail">
<MemberSignature Language="C#" Value="public event System.Web.UI.WebControls.MailMessageEventHandler SendingMail;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.MailMessageEventHandler</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> class will send an e-mail message confirming that a new Web site account has been created when the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MailDefinition" /> property defines an e-mail message to send. </para>
<para>Because the e-mail message only has automatic replacement fields for the user name and password fields, you can use the <see cref="E:System.Web.UI.WebControls.CreateUserWizard.SendingMail" /> event to modify the e-mail message before it is sent to the new user.</para>
<para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs before the user is sent an e-mail confirmation that an account has been created.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SendMailError">
<MemberSignature Language="C#" Value="public event System.Web.UI.WebControls.SendMailErrorEventHandler SendMailError;" />
<MemberType>Event</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.SendMailErrorEventHandler</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="E:System.Web.UI.WebControls.CreateUserWizard.SendMailError" /> event is raised when there is a problem using the SMTP mail provider to send e-mail to the e-mail address provided by the new user. The most common reason to raise this event is when the <smtpMail> section of the Web.config file is incorrect.</para>
<para>The default <see cref="E:System.Web.UI.WebControls.CreateUserWizard.SendMailError" /> event handler does not catch or handle the SMTP error from the e-mail system. Your <see cref="E:System.Web.UI.WebControls.CreateUserWizard.SendMailError" /> event handler must set the <see cref="P:System.Web.UI.WebControls.SendMailErrorEventArgs.Handled" /> property of the <see cref="T:System.Web.UI.WebControls.SendMailErrorEventArgs" /> object to true in order to stop the error from appearing to the Web site user.</para>
<para>For more information about handling events, see <format type="text/html"><a href="01e4f1bc-e55e-413f-98c7-6588493e5f67">Consuming Events</a></format>. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs when there is an SMTP error sending e-mail to the new user.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SetDesignModeState">
<MemberSignature Language="C#" Value="protected override void SetDesignModeState (System.Collections.IDictionary data);" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="data" Type="System.Collections.IDictionary" />
</Parameters>
<Docs>
<param name="data">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SkipLinkText">
<MemberSignature Language="C#" Value="public override string SkipLinkText { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.SkipLinkText" /> property to specify the alternate text for a hidden-image read by screen readers that will provide the ability to skip the sidebar area's content. The text that you specify provides assistive technology devices with a description of the hidden image that can be used to make the control more accessible.</para>
<block subset="none" type="note">
<para>If the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.DisplaySideBar" /> property is set to false (the default), the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.SkipLinkText" /> property does not create a hidden image with alternate text. The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.SkipLinkText" /> property works only when the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.DisplaySideBar" /> property is true.</para>
</block>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a value that is used to render alternate text that notifies screen readers to skip the sidebar area's content.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="TextBoxStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.Style TextBoxStyle { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.TextBoxStyle" /> property defines the appearance of text box controls in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. This property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, TextBoxStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, TextBoxStyle.ForeColor).</para>
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.TextBoxStyle" /> property defines the appearance of the following text box controls:</para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.UserName" /> text box field</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.Password" /> text box field</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.ConfirmPassword" /> text box field</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.Question" /> text box field</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.Answer" /> text box field</para>
</item>
</list>
<para>The style settings for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.TextBoxStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Any settings applied in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.TextBoxStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.CreateUserWizard.TextBoxStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" />
</para>
</item>
</list>
<para>However, when you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.TextBoxStyle" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection of properties that define the appearance of text box controls.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="TitleTextStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.TableItemStyle TitleTextStyle { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.TableItemStyle</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.TitleTextStyle" /> property defines the appearance of titles in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. This property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> object that it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the <see cref="T:System.Web.UI.WebControls.TableItemStyle" /> class (for example, TitleTextStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, TitleTextStyle.ForeColor).</para>
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.TitleTextStyle" /> property defines the appearance of the title on the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CreateUserStep" /> step and the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.CompleteStep" /> step.</para>
<para>The style settings for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.TitleTextStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Any settings applied in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.TitleTextStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.CreateUserWizard.TitleTextStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" />
</para>
</item>
</list>
<para>However, when you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.TitleTextStyle" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection of properties that define the appearance of titles.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="TrackViewState">
<MemberSignature Language="C#" Value="protected override void TrackViewState ();" />
<MemberType>Method</MemberType>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Marks the starting point to begin tracking changes to the control as part of the control viewstate.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="UnknownErrorMessage">
<MemberSignature Language="C#" Value="public virtual string UnknownErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the error message displayed when an error returned by the membership provider is not defined.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="UserName">
<MemberSignature Language="C#" Value="public virtual string UserName { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>If a user name is required by the membership provider specified in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.MembershipProvider" /> property, then the user name text box will appear on the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Each text box displayed on the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control has a <see cref="T:System.Web.UI.WebControls.RequiredFieldValidator" /> object associated with it. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the user name entered by the user.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="UserNameLabelText">
<MemberSignature Language="C#" Value="public virtual string UserNameLabelText { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the text of the label for the user name text box.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="UserNameRequiredErrorMessage">
<MemberSignature Language="C#" Value="public virtual string UserNameRequiredErrorMessage { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.ComponentModel.Localizable(true)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see <see cref="T:System.ComponentModel.LocalizableAttribute" /> and <format type="text/html"><a href="8ef3838e-9d05-4236-9dd0-ceecff9df80d">ASP.NET Globalization and Localization</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the error message displayed when the user name text box is left blank.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="ValidatorTextStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.Style ValidatorTextStyle { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.Style</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ValidatorTextStyle" /> property to change the appearance of messages that are displayed for input validation errors. By default, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ValidatorTextStyle" /> is set to display the following messages in red:</para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.EmailRequiredErrorMessage" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.QuestionRequiredErrorMessage" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.AnswerRequiredErrorMessage" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordRequiredErrorMessage" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.ConfirmPasswordRequiredErrorMessage" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.PasswordRegularExpressionErrorMessage" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.UserNameRequiredErrorMessage" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.CreateUserWizard.EmailRegularExpressionErrorMessage" />
</para>
</item>
</list>
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ValidatorTextStyle" /> property is read-only; however, you can set the properties of the <see cref="T:System.Web.UI.WebControls.Style" /> object it returns. You can set these properties declaratively in the form Property-Subproperty, where Subproperty represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, ValidatorTextStyle-ForeColor). You can set the property programmatically in the form Property.Subproperty (for example, ValidatorTextStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties. The style settings for the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ValidatorTextStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Any settings applied in the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ValidatorTextStyle" /> property override the corresponding settings in the properties of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ValidatorTextStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BackColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderStyle" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.BorderWidth" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Font" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.ForeColor" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Height" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.Style.Width" />
</para>
</item>
</list>
<para>However, when you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control, the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.ValidatorTextStyle" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to the <see cref="T:System.Web.UI.WebControls.Style" /> object that allows you to set the appearance of the validation error messages.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="WizardSteps">
<MemberSignature Language="C#" Value="public override System.Web.UI.WebControls.WizardStepCollection WizardSteps { get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.Themeable(false)</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.WizardStepCollection</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.CreateUserWizard.WizardSteps" /> property returns a collection of <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects that make up the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. You can use the <see cref="P:System.Web.UI.WebControls.CreateUserWizard.WizardSteps" /> collection to programmatically access the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects contained in the <see cref="T:System.Web.UI.WebControls.CreateUserWizard" /> control. Use the <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Add(System.Web.UI.WebControls.WizardStepBase)" />, <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Remove(System.Web.UI.WebControls.WizardStepBase)" />, <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Clear" />, and <see cref="M:System.Web.UI.WebControls.WizardStepCollection.Insert(System.Int32,System.Web.UI.WebControls.WizardStepBase)" /> methods to programmatically manipulate the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects in the collection.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection containing all the <see cref="T:System.Web.UI.WebControls.WizardStepBase" /> objects defined for the control. </para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
</Members>
</Type>
|