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
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="PasswordRecovery" FullName="System.Web.UI.WebControls.PasswordRecovery">
<TypeSignature Language="C#" Value="public class PasswordRecovery : System.Web.UI.WebControls.CompositeControl" />
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Web.UI.WebControls.CompositeControl</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="#views">Views</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_groupings">Validation Groupings</a>
</format>
</para>
</item>
<item>
<para>
<format type="text/html">
<a href="#applying_styles">Applying CSS Styles</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="#declarative_syntax">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.PasswordRecovery" /> control assists users who have forgotten their passwords. It enables a user to request an e-mail message containing either a new password or the password already associated with his or her user name.</para>
<block subset="none" type="note">
<para>The <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> Web control uses Internet e-mail services to send recovered or new passwords 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>
<block subset="none" type="note">
<para>If you are not familiar with the set of login controls available in ASP.NET, see <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>Users can recover passwords only when the membership provider defined in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.MembershipProvider" /> property supports clear text or encrypted passwords. Because hashed passwords cannot be recovered, users at sites that use hashed passwords can only reset their passwords.</para>
<block subset="none" type="note">
<para>Accepting user input is a potential security threat. Malicious users can send data that is intended to expose vulnerabilities or run programs that try generated passwords. To improve security when working with user input, you should use the validation features of your control and secure any data providers that are configured for your control. For more information, see <format type="text/html"><a href="d85075bc-9c1a-4453-8a0c-539b10853c9c">Securing Login Controls</a></format>, <format type="text/html"><a href="3eeeee9e-b09f-4c7f-8ce5-d9ca1f9322ad">Basic Security Practices for Web Applications</a></format>, and <format type="text/html"><a href="2dab2012-c278-426a-bb0d-93b260c428a7">Securing Membership</a></format>.</para>
</block>
<block subset="none" type="note">
<para>The <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control can be used when a membership user has not been approved (<see cref="P:System.Web.Security.MembershipUser.IsApproved" /> is set to false), but it cannot be used when a membership user has been locked out (<see cref="P:System.Web.Security.MembershipUser.IsLockedOut" /> is set to true).</para>
</block>
<para>The e-mail message is sent using the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> class. To be able to send e-mail to users, you must configure a mail server in your application's Web.config file. You can change the content of the e-mail sent to users by setting a custom message in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.MailDefinition" /> property.</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 message, allowing the user to confirm that the notification was received.</para>
</block>
<format type="text/html">
<a href="#views" />
</format>
<format type="text/html">
<h2>Views</h2>
</format>
<para>The <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control has three states, or views: </para>
<list type="bullet">
<item>
<para>UserName view -- Asks the user for his or her registered user name.</para>
</item>
<item>
<para>Question view -- Requires the user to provide the answer to a stored question to reset the password.</para>
</item>
<item>
<para>Success view -- Tells the user whether the password recovery or reset was successful.</para>
</item>
</list>
<para>The <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control displays the Question view only when the membership provider defined in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.MembershipProvider" /> property supports password question and answer.</para>
<para>The following table lists each style property of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control and indicates which view it affects.</para>
<list type="table">
<listheader>
<item>
<term>
<para>Property</para>
</term>
<description>
<para>UserName view </para>
</description>
<description>
<para>Question view </para>
</description>
<description>
<para>Success view </para>
</description>
</item>
</listheader>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonStyle" /> </para>
</term>
<description>
<para>Yes </para>
</description>
<description>
<para>Yes </para>
</description>
<description>
<para>Yes </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.FailureTextStyle" /> </para>
</term>
<description>
<para>Yes </para>
</description>
<description>
<para>Yes </para>
</description>
<description>
<para>No </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.HyperLinkStyle" /> </para>
</term>
<description>
<para>Yes </para>
</description>
<description>
<para>Yes </para>
</description>
<description>
<para>No </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.InstructionTextStyle" /> </para>
</term>
<description>
<para>Yes </para>
</description>
<description>
<para>Yes </para>
</description>
<description>
<para>No </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.LabelStyle" /> </para>
</term>
<description>
<para>Yes </para>
</description>
<description>
<para>Yes </para>
</description>
<description>
<para>No </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessTextStyle" /> </para>
</term>
<description>
<para>No </para>
</description>
<description>
<para>No </para>
</description>
<description>
<para>Yes </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.TextBoxStyle" /> </para>
</term>
<description>
<para>Yes </para>
</description>
<description>
<para>Yes </para>
</description>
<description>
<para>No </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.TitleTextStyle" /> </para>
</term>
<description>
<para>Yes </para>
</description>
<description>
<para>Yes </para>
</description>
<description>
<para>Yes </para>
</description>
</item>
</list>
<format type="text/html">
<a href="#styles_and_templates" />
</format>
<format type="text/html">
<h2>Styles and Templates</h2>
</format>
<para>You can use an extensive set of style properties to customize the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. Alternatively, you can apply custom templates to the three views if you need complete control over the appearance of the control. You can use the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionTemplate" />, <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessTemplate" /> and <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameTemplate" /> properties to create templates for these views. If you define a template for a view, the style properties of <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> have no effect.</para>
<para>The following table lists the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> 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.PasswordRecovery.SubmitButtonStyle" /> </para>
</term>
<description>
<para>Submit buttons on all views. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.FailureTextStyle" /> </para>
</term>
<description>
<para>Error text displayed to the user. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.HyperLinkStyle" />
</para>
</term>
<description>
<para>Links to other pages. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.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.PasswordRecovery.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.PasswordRecovery.TextBoxStyle" /> </para>
</term>
<description>
<para>Text entry input fields. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.TitleTextStyle" /> </para>
</term>
<description>
<para>Title text for each view. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessTextStyle" /> </para>
</term>
<description>
<para>Text displayed to the user when the password recovery or reset attempt is successful. </para>
</description>
</item>
</list>
<para>The following table lists which template properties apply to each view in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. For a list of the controls that you must set in each template, see the documentation for the individual template properties.</para>
<list type="table">
<listheader>
<item>
<term>
<para>View </para>
</term>
<description>
<para>Template property </para>
</description>
</item>
</listheader>
<item>
<term>
<para>UserName </para>
</term>
<description>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameTemplate" /> </para>
</description>
</item>
<item>
<term>
<para>Question </para>
</term>
<description>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionTemplate" /> </para>
</description>
</item>
<item>
<term>
<para>Success </para>
</term>
<description>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessTemplate" /> </para>
</description>
</item>
</list>
<para>When the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> 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.PasswordRecovery" /> 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.PasswordRecovery" /> 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, 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 directly.</para>
<para>
<see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control properties represented by text boxes, such as <see cref="P:System.Web.UI.WebControls.PasswordRecovery.Answer" /> and <see cref="P:System.Web.UI.WebControls.PasswordRecovery.Question" />, 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 triggered by the textboxes.</para>
<format type="text/html">
<a href="#validation_groupings" />
</format>
<format type="text/html">
<h2>Validation Groupings</h2>
</format>
<para>The <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control creates a validation group for all required field validators in the control so that other input controls on the page are not affected by validating the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. By default, the <see cref="P:System.Web.UI.Control.ID" /> property of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control is used as the name of the validation group. For example, a <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control with the ID "PasswordRecovery1" will use a validation group name of "PasswordRecovery1". If you want the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control to participate in another validation group, you must template the control.</para>
<format type="text/html">
<a href="#applying_styles" />
</format>
<format type="text/html">
<h2>Applying CSS Styles</h2>
</format>
<para>The <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control lets you specify CSS style rules in markup. If you use templates to customize the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control, you can specify CSS styles in the markup in the templates. In that case, no extra outer table is required. You can prevent the table from being rendered by setting the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.RenderOuterTable" /> property to false.</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="#declarative_syntax" />
</format>
<format type="text/html">
<h2>Declarative Syntax</h2>
</format>
<code><asp:PasswordRecovery
    AccessKey="string"
    AnswerLabelText="string"
    AnswerRequiredErrorMessage="string"
    BackColor="color name|#dddddd"
    BorderColor="color name|#dddddd"
    BorderPadding="integer"
    BorderStyle="<codeFeaturedElement>NotSet</codeFeaturedElement>|None|Dotted|Dashed|Solid|Double|Groove|Ridge|
Inset|Outset"
    BorderWidth="size"
    CssClass="string"
    Enabled="<codeFeaturedElement>True</codeFeaturedElement>|False"
    EnableTheming="<codeFeaturedElement>True</codeFeaturedElement>|False"
    EnableViewState="<codeFeaturedElement>True</codeFeaturedElement>|False"
    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"
    GeneralFailureText="string"
    Height="size"
    HelpPageIconUrl="uri"
    HelpPageText="string"
    HelpPageUrl="uri"
    ID="string"
    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"
    OnAnswerLookupError="AnswerLookupError event handler"
    OnDataBinding="DataBinding event handler"
    OnDisposed="Disposed event handler"
    OnInit="Init event handler"
    OnLoad="Load event handler"
    OnPreRender="PreRender event handler"
    OnSendingMail="SendingMail event handler"
    OnSendMailError="SendMailError event handler"
    OnUnload="Unload event handler"
    OnUserLookupError="UserLookupError event handler"
    OnVerifyingAnswer="VerifyingAnswer event handler"
    OnVerifyingUser="VerifyingUser event handler"
    QuestionFailureText="string"
    QuestionInstructionText="string"
    QuestionLabelText="string"
    QuestionTitleText="string"
    runat="server"
    SkinID="string"
    Style="string"
    SubmitButtonImageUrl="uri"
    SubmitButtonText="string"
    SubmitButtonType="<codeFeaturedElement>Button</codeFeaturedElement>|Image|Link"
    SuccessPageUrl="uri"
    SuccessText="string"
    TabIndex="integer"
    TextLayout="<codeFeaturedElement>TextOnLeft</codeFeaturedElement>|TextOnTop"
    ToolTip="string"
    UserName="string"
    UserNameFailureText="string"
    UserNameInstructionText="string"
    UserNameLabelText="string"
    UserNameRequiredErrorMessage="string"
    UserNameTitleText="string"
    Visible="<codeFeaturedElement>True</codeFeaturedElement>|False"
    Width="size"
>
        <FailureTextStyle />
        <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>
        <QuestionTemplate>
<!-- child controls -->
        </QuestionTemplate>
        <SubmitButtonStyle />
        <SuccessTemplate>
<!-- child controls -->
        </SuccessTemplate>
        <SuccessTextStyle />
        <TextBoxStyle />
        <TitleTextStyle />
        <UserNameTemplate>
<!-- child controls -->
        </UserNameTemplate>
        <ValidatorTextStyle />
</asp:PasswordRecovery></code>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Provides user interface (UI) elements that enable a user to recover or reset a lost password and receive it in e-mail.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public PasswordRecovery ();" />
<MemberType>Constructor</MemberType>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use this constructor to create and initialize a new instance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> class.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Answer">
<MemberSignature Language="C#" Value="public virtual string Answer { 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.PasswordRecovery.Answer" /> property contains the answer to the confirmation question entered by the user. The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.Answer" /> property is valid only after the page has been posted back to the server.</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 the answer to the password recovery confirmation question entered by the user.</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 <see cref="P:System.Web.UI.WebControls.PasswordRecovery.AnswerLabelText" /> property contains the label text for the password recovery confirmation answer text box.</para>
<para>The style settings in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.LabelStyle" /> property define the appearance of the text specified in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.AnswerLabelText" /> property.</para>
<para>If you assign a template in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionTemplate" /> property, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.AnswerLabelText" /> property has no effect.</para>
<para>The default text for the property is localized based on the server's locale setting.</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 label text for the password confirmation answer text box.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="AnswerLookupError">
<MemberSignature Language="C#" Value="public event EventHandler AnswerLookupError;" />
<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.PasswordRecovery.AnswerLookupError" /> event is raised when the answer to the password recovery question is not validated by the membership provider defined in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.MembershipProvider" /> property.</para>
<para>If the membership provider does not support password recovery question and answer, the <see cref="E:System.Web.UI.WebControls.PasswordRecovery.AnswerLookupError" /> event is never raised.</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 enters an incorrect answer to the password recovery confirmation question.</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 <see cref="P:System.Web.UI.WebControls.PasswordRecovery.AnswerRequiredErrorMessage" /> contains the error message to display in any <see cref="T:System.Web.UI.WebControls.ValidationSummary" /> control on the same page as the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>The default text for the property is localized based on the server's locale setting.</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 error message displayed to the user when the Answer text box is blank.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="BorderPadding">
<MemberSignature Language="C#" Value="public virtual int BorderPadding { 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 value of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.BorderPadding" /> property is stored in view state.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the amount of padding inside the borders of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</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>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Web.UI.WebControls.PasswordRecovery.CreateChildControls" /> method creates instances of the controls that make up the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control and creates default event handlers for their events.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Creates the individual controls that make up the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</summary>
</Docs>
</Member>
<Member MemberName="FailureTextStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.TableItemStyle FailureTextStyle { 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.PasswordRecovery.FailureTextStyle" /> property defines the appearance of error messages in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> 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 <paramref name="Property-Subproperty" />, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, FailureTextStyle-ForeColor). You can set the property programmatically in the form <paramref name="Property.Subproperty" /> (for example, FailureTextStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties. The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.FailureTextStyle" /> property defines the appearance of the following properties: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.GeneralFailureText" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionFailureText" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameFailureText" /> </para>
</item>
</list>
<para>The style settings for the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.FailureTextStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. Any settings made in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.FailureTextStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> style properties are overridden by <see cref="P:System.Web.UI.WebControls.PasswordRecovery.FailureTextStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BackColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderStyle" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderWidth" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Enabled" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Font" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ForeColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Height" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ToolTip" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.Control.Visible" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Width" /> </para>
</item>
</list>
<para>When you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.FailureTextStyle" /> 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 error text in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="GeneralFailureText">
<MemberSignature Language="C#" Value="public virtual string GeneralFailureText { 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.PasswordRecovery.GeneralFailureText" /> property is displayed to the user when there is a problem with the membership provider that manages user information for the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. Typically, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.GeneralFailureText" /> property is displayed when the membership provider cannot connect to the data store containing user information.</para>
<para>The text specified in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameFailureText" /> property is displayed in the UserName view when the provider cannot find the specified user name in the database. The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionFailureText" /> property is displayed in the Question view when the answer entered by the user does not match the stored answer. The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.GeneralFailureText" /> property is displayed for all other errors.</para>
<para>The appearance of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.GeneralFailureText" /> property is defined by the style settings in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.FailureTextStyle" /> property.</para>
<para>When you set templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.GeneralFailureText" /> property is displayed in an optional <see cref="T:System.Web.UI.WebControls.Literal" /> control with the control ID set to "FailureText".</para>
<para>The default text for the property is localized based on the server's locale setting.</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 error message to display when there is a problem with the membership provider for the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</summary>
</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 <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HelpPageText" /> property contains the link text for the password recovery Help page. If a URL is specified in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HelpPageText" /> property, the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control displays a link to information about password recovery in the UserName view and the Question view, but not in the Success view.</para>
<para>If the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HelpPageUrl" /> property is set to <see cref="F:System.String.Empty" />, no link is displayed.</para>
<para>The appearance of the Help page link is defined by the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HyperLinkStyle" /> property.</para>
<para>When you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HelpPageText" /> and <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HelpPageUrl" /> properties have no effect.</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 of the link to the password recovery 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>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HelpPageUrl" /> property contains the URL of the password recovery Help page. The <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control displays a link to the password recovery Help page in the UserName view and the Question view but not in the Success view.</para>
<para>If the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HelpPageText" /> property is set to <see cref="F:System.String.Empty" />, no link is displayed.</para>
<para>The appearance of the Help page link is defined by the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HyperLinkStyle" /> property.</para>
<para>When you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HelpPageText" /> and <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HelpPageUrl" /> properties have no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of the password recovery 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.PasswordRecovery.HyperLinkStyle" /> property defines the appearance of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HelpPageText" /> 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. The properties can be set declaratively in the form <paramref name="Property-Subproperty" />, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, HyperLinkStyle-ForeColor). You can also set the properties programmatically in the form <paramref name="Property.Subproperty" /> (for example, HyperLinkStyle.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.PasswordRecovery.HyperLinkStyle" /> property are merged with <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control style settings. Any settings made in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HyperLinkStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>The following properties are overridden by <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HyperLinkStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BackColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderStyle" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderWidth" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Enabled" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Font" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ForeColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Height" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ToolTip" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Width" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.Control.Visible" /> </para>
</item>
</list>
<para>When you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control's UserName view or Question view, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.HyperLinkStyle" /> 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 hyperlinks on the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</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.PasswordRecovery.InstructionTextStyle" /> property defines the appearance of explanatory text in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> 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 the properties declaratively in the form <paramref name="Property-Subproperty" />, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, InstructionTextStyle-ForeColor). You can also set the properties programmatically in the form <paramref name="Property.Subproperty" /> (for example, InstructionTextStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties. The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.InstructionTextStyle" /> property defines the appearance of the following properties: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionInstructionText" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameInstructionText" /> </para>
</item>
</list>
<para>Style settings made to the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.InstructionTextStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. Any settings made in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.InstructionTextStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control properties are overridden by <see cref="P:System.Web.UI.WebControls.PasswordRecovery.InstructionTextStyle" /> properties: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BackColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderStyle" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderWidth" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Enabled" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Font" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ForeColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Height" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ToolTip" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.Control.Visible" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Width" /> </para>
</item>
</list>
<para>When you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control's UserName view or Question view, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.InstructionTextStyle" /> 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 explanatory text in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</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.PasswordRecovery.LabelStyle" /> property defines the appearance of text box labels in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> 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 cans set these properties declaratively in the form <paramref name="Property-Subproperty" />, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, LabelStyle-ForeColor). You can also set the properties programmatically in the form <paramref name="Property.Subproperty" /> (for example, LabelStyle.ForeColor).</para>
<para>Common settings include custom background color, text color, and font properties.</para>
<para>The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.LabelStyle" /> property defines the appearance of the following properties: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.AnswerLabelText" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionLabelText" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameLabelText" /> </para>
</item>
</list>
<para>Style settings made to the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.LabelStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. Any settings made in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.LabelStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> properties are overridden by <see cref="P:System.Web.UI.WebControls.PasswordRecovery.LabelStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BackColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderStyle" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderWidth" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Enabled" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Font" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ForeColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Height" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ToolTip" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.Control.Visible" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Width" /> </para>
</item>
</list>
<para>When you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control's UserName view and Question view, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.LabelStyle" /> 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 text box labels in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="LoadControlState">
<MemberSignature Language="C#" Value="protected override void LoadControlState (object savedState);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="savedState" Type="System.Object" />
</Parameters>
<Docs>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Implements the base <see cref="M:System.Web.UI.Control.LoadControlState(System.Object)" /> method.</para>
</summary>
<param name="savedState">
<attribution license="cc4" from="Microsoft" modified="false" />An object that represents the control state to be restored.</param>
</Docs>
</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>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Implements the base <see cref="M:System.Web.UI.Control.LoadViewState(System.Object)" /> method.</para>
</summary>
<param name="savedState">
<attribution license="cc4" from="Microsoft" modified="false" />An object that represents the control state to restore.</param>
</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>
<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>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.MailDefinition" /> property returns a reference to a group of properties that you use to define format and content of the password e-mail message sent to 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>This 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 these properties declaratively in the form <paramref name="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 <paramref name="Property.Subproperty" /> (for example, MailDefinition.Subject).</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>When the e-mail message is created from the <see cref="T:System.Web.UI.WebControls.MailDefinition" /> object, it will make the substitutions shown in the following table. The substitution text is case-insensitive.</para>
<list type="table">
<listheader>
<item>
<term>
<para>Substitution text</para>
</term>
<description>
<para>Replaced with</para>
</description>
</item>
</listheader>
<item>
<term>
<para>
<system><%</system>
<paramref name="UserName" />
<system>%></system>
</para>
</term>
<description>
<para>The Web site user name of the user.</para>
</description>
</item>
<item>
<term>
<para>
<system><%</system>Password<system>%></system></para>
</term>
<description>
<para>The recovered password for the user.</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>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection of properties that define the characteristics of e-mail messages used to send new or recovered passwords to users.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</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.PasswordRecovery.MembershipProvider" /> property identifies the membership provider used to verify user information entered in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. </para>
<para>Membership providers are defined in the Web.config file in the <membership> section.</para>
<para>Setting the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.MembershipProvider" /> property will change the provider used. If you do not set the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.MembershipProvider" /> property, it will always return <see cref="F:System.String.Empty" />.</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 used to look up user information.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnAnswerLookupError">
<MemberSignature Language="C#" Value="protected virtual void OnAnswerLookupError (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.PasswordRecovery.OnAnswerLookupError(System.EventArgs)" /> method is called when the user's answer to the password recovery confirmation question does not match the answer stored in the Web site data store. The default implementation raises the <see cref="E:System.Web.UI.WebControls.PasswordRecovery.AnswerLookupError" /> event.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="d98fd58b-fa4f-4598-8378-addf4355a115">Events and Delegates</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.PasswordRecovery.OnAnswerLookupError(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.PasswordRecovery.AnswerLookupError" /> event.</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="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>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Implements the base <see cref="M:System.Web.UI.Control.OnBubbleEvent(System.Object,System.EventArgs)" /> method.</para>
</summary>
<param name="source">
<attribution license="cc4" from="Microsoft" modified="false" />The source of the event. </param>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />The event data. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnInit">
<MemberSignature Language="C#" Value="protected override void OnInit (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>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Implements the base <see cref="M:System.Web.UI.Control.OnInit(System.EventArgs)" /> method.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />The event data.</param>
</Docs>
</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>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Implements the base <see cref="M:System.Web.UI.Control.OnPreRender(System.EventArgs)" /> method.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />The event data.</param>
</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>The <see cref="M:System.Web.UI.WebControls.PasswordRecovery.OnSendingMail(System.Web.UI.WebControls.MailMessageEventArgs)" /> method is called after the membership provider has verified that the user is a valid member of the Web site and before the recovered or new password is e-mailed to the user. The default implementation raises the <see cref="E:System.Web.UI.WebControls.PasswordRecovery.SendingMail" /> event.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="d98fd58b-fa4f-4598-8378-addf4355a115">Events and Delegates</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.PasswordRecovery.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.PasswordRecovery.SendingMail" /> event.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.MailMessageEventArgs" /> that contains 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.PasswordRecovery.OnSendMailError(System.Web.UI.WebControls.SendMailErrorEventArgs)" /> method is called when the SMTP Mail service throws an exception. The default implementation raises the <see cref="E:System.Web.UI.WebControls.PasswordRecovery.SendMailError" /> error and, if the exception is not handled, rethrows the exception while maintaining the call stack.</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. During development, the most common reason that the <see cref="E:System.Web.UI.WebControls.PasswordRecovery.SendMailError" /> event is raised is that the <smtpMail> section of the Web.config file is incorrect. After deployment, this event can occur for a variety of reasons, most having to do with errors in an email address.</para>
<para>You must set the <see cref="P:System.Web.UI.WebControls.SendMailErrorEventArgs.Handled" /> property of the object passed as the <paramref name="e" /> parameter to true to signal that the exception has been handled; otherwise, the exception is thrown again.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="765bfc89-33ee-4d0d-bbe6-3b172c06def9">Server Event Handling in ASP.NET Web Pages</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.PasswordRecovery.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.PasswordRecovery.SendMailError" /> event when an e-mail message cannot be sent to the user.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.UI.WebControls.SendMailErrorEventArgs" /> that contains the event data.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnUserLookupError">
<MemberSignature Language="C#" Value="protected virtual void OnUserLookupError (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.PasswordRecovery.OnUserLookupError(System.EventArgs)" /> method is called when the membership provider is unable to find the user name entered on the initial screen. The default implementation raises the <see cref="E:System.Web.UI.WebControls.PasswordRecovery.UserLookupError" /> event.</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">Providing Event Functionality</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.PasswordRecovery.OnUserLookupError(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.PasswordRecovery.UserLookupError" /> event.</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="OnVerifyingAnswer">
<MemberSignature Language="C#" Value="protected virtual void OnVerifyingAnswer (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>The <see cref="M:System.Web.UI.WebControls.PasswordRecovery.OnVerifyingAnswer(System.Web.UI.WebControls.LoginCancelEventArgs)" /> method is called before the user's answer to the password recovery confirmation question is sent to the membership provider to be verified. The default implementation raises the <see cref="E:System.Web.UI.WebControls.PasswordRecovery.VerifyingAnswer" /> event.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="d98fd58b-fa4f-4598-8378-addf4355a115">Events and Delegates</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.PasswordRecovery.OnVerifyingAnswer(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.PasswordRecovery.VerifyingAnswer" /> event.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="OnVerifyingUser">
<MemberSignature Language="C#" Value="protected virtual void OnVerifyingUser (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>The <see cref="M:System.Web.UI.WebControls.PasswordRecovery.OnVerifyingUser(System.Web.UI.WebControls.LoginCancelEventArgs)" /> method is called after the user submits a user name on the initial screen and before the user name is validated by the membership provider. The default implementation raises the <see cref="E:System.Web.UI.WebControls.PasswordRecovery.VerifyingUser" /> event.</para>
<para>Raising an event invokes the event handler through a delegate. For more information, see <format type="text/html"><a href="d98fd58b-fa4f-4598-8378-addf4355a115">Events and Delegates</a></format>.</para>
<para>The <see cref="M:System.Web.UI.WebControls.PasswordRecovery.OnVerifyingUser(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.PasswordRecovery.VerifyingUser" /> event.</para>
</summary>
<param name="e">
<attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.ComponentModel.CancelEventArgs" /> that contains the event data. </param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Question">
<MemberSignature Language="C#" Value="public virtual string Question { 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.PasswordRecovery.Question" /> property contains the password recovery confirmation question that the user previously established on the Web site. The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.Question" /> property is displayed only in the Question view. If the membership provider specified in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.MembershipProvider" /> property does not support password question and answer, the Question view is not displayed and the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.Question" /> property is not used.</para>
<para>The membership provider returns the question only after the user enters a valid user name. Until the user enters a valid user name, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.Question" /> property is <see cref="F:System.String.Empty" />.</para>
<para>The style settings in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.TextBoxStyle" /> property define the appearance of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.Question" /> property.</para>
<para>When you use the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionTemplate" /> property to define the appearance of the Question view, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.Question" /> property is displayed in an optional <see cref="T:System.Web.UI.WebControls.Literal" /> control with the <see cref="P:System.Web.UI.Control.ID" /> property set to "Question".</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 the password recovery confirmation question established by the user on the Web site.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="QuestionFailureText">
<MemberSignature Language="C#" Value="public virtual string QuestionFailureText { 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.PasswordRecovery.QuestionFailureText" /> property contains the error message that is displayed when the answer to the password recovery confirmation question does not match the answer stored in the Web site data store.</para>
<para>The style settings in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.FailureTextStyle" /> property define the appearance of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionFailureText" /> property.</para>
<para>When you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionFailureText" /> property is displayed in an optional <see cref="T:System.Web.UI.WebControls.Literal" /> control with the <see cref="P:System.Web.UI.Control.ID" /> property set to "FailureText".</para>
<para>The default text for the property is localized based on the server's locale setting.</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 to display when the user's answer to the password recovery confirmation question does not match the answer stored in the Web site data store.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="QuestionInstructionText">
<MemberSignature Language="C#" Value="public virtual string QuestionInstructionText { 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.PasswordRecovery.QuestionInstructionText" /> property is displayed in Question view to instruct the user to answer the password recovery confirmation question.</para>
<para>The style settings in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.InstructionTextStyle" /> property define the appearance of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionInstructionText" /> property.</para>
<para>When you use the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionTemplate" /> property to define the appearance of the Question view, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionInstructionText" /> property has no effect.</para>
<para>The default text for the property is localized based on the server's locale setting.</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 to display in the Question view to instruct the user to answer the password recovery confirmation question.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</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 <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionLabelText" /> property contains the label text for the password recovery confirmation question text box.</para>
<para>The style settings contained in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.LabelStyle" /> property define the appearance of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionLabelText" /> property.</para>
<para>When you use the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionTemplate" /> property to define the appearance of the Question view, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionLabelText" /> property has no effect.</para>
<para>The default text for the property is localized based on the server's locale setting.</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 of the label for the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.Question" /> text box.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="QuestionTemplate">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.ITemplate QuestionTemplate { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.PasswordRecovery))</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.ITemplate</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.PasswordRecovery.QuestionTemplate" /> property contains the template that defines the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control in Question view.</para>
<para>The following table lists the required and optional controls used in the Question view template.</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>Answer </para>
</term>
<description>
<para>Any control that implements <see cref="T:System.Web.UI.IEditableTextControl" />. </para>
</description>
<description>
<para>Required </para>
</description>
</item>
<item>
<term>
<para>Submit </para>
</term>
<description>
<para>Any control that causes event bubbling. </para>
</description>
<description>
<para>Optional </para>
</description>
</item>
</list>
<para>The Submit control can be any control that causes event bubbling, such as <see cref="T:System.Web.UI.WebControls.Button" />, <see cref="T:System.Web.UI.WebControls.LinkButton" />, or <see cref="T:System.Web.UI.WebControls.ImageButton" />. The control's command name property must be set to "Submit".</para>
<para>The <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control throws an <see cref="T:System.Web.HttpException" /> exception if the Question view does not contain the required controls. No exception is thrown if you give an optional control ID to a control of the wrong type; however, the control is subsequently ignored by the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>When you use a template to define the appearance of the Question view, only the following properties affect the behavior of the control: </para>
<list type="bullet">
<item>
<para>All properties inherited from <see cref="T:System.Web.UI.WebControls.WebControl" /> (for details, see the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control members table).</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.Answer" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.GeneralFailureText" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.MailDefinition" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.MembershipProvider" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.Question" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionFailureText" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessPageUrl" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessTemplate" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserName" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameFailureText" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameTemplate" />. </para>
</item>
</list>
<para>All other properties are inactive when you use a template for the Question view.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the template used to display the Question view of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="QuestionTemplateContainer">
<MemberSignature Language="C#" Value="public System.Web.UI.Control QuestionTemplateContainer { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.Control</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 the container that a <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control used to create an instance of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionTemplate" /> template. This property provides programmatic access to child controls.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="QuestionTitleText">
<MemberSignature Language="C#" Value="public virtual string QuestionTitleText { 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.PasswordRecovery.QuestionTitleText" /> property contains the text to display as the title of the Question view, which asks the user to answer the password confirmation question.</para>
<para>The style settings in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.TitleTextStyle" /> property define the appearance of the text in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionTitleText" /> property.</para>
<para>When you use the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionTemplate" /> property to define the appearance of the Question view, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionTitleText" /> property has no effect.</para>
<para>The default text for the property is localized based on the server's locale setting.</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 title for the Question view of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="Render">
<MemberSignature Language="C#" Value="protected override void Render (System.Web.UI.HtmlTextWriter writer);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="writer" Type="System.Web.UI.HtmlTextWriter" />
</Parameters>
<Docs>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
<param name="writer">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Web.UI.HtmlTextWriter" /> that receives the rendered output.</param>
</Docs>
</Member>
<Member MemberName="SaveControlState">
<MemberSignature Language="C#" Value="protected override object SaveControlState ();" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Object</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Implements the base <see cref="M:System.Web.UI.Control.SaveControlState" /> method.</para>
</summary>
</Docs>
</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>Implements the base <see cref="M:System.Web.UI.Control.SaveViewState" /> method.</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="E:System.Web.UI.WebControls.PasswordRecovery.SendingMail" /> event occurs on the server after the user requests a new or recovered password and submits a correct answer to the password confirmation question (if your membership provider supports password question and answer), but before the password is sent to the user in e-mail. Use this event to do any special processing required before sending the e-mail message, such as setting <see cref="T:System.Web.Mail.MailMessage" /> properties.</para>
<para>After the user enters a valid user name and, if relevant, a valid answer, the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control raises the <see cref="E:System.Web.UI.WebControls.PasswordRecovery.SendingMail" /> event, and then sends the password information to the user in e-mail. The e-mail uses the settings defined in the <smtpMail> configuration file element.</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 a password in e-mail.</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.PasswordRecovery.SendMailError" /> event is raised when the SMTP mail server throws an exception when trying to send an e-mail message. </para>
<para>The default <see cref="E:System.Web.UI.WebControls.PasswordRecovery.SendMailError" /> event does not handle the SMTP error from the mail system. The method that handles the <see cref="E:System.Web.UI.WebControls.PasswordRecovery.SendMailError" /> event 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 to handle the error and prevent it from being displayed to the user.</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 when the SMTP Mail system throws an error while attempting to send an e-mail message.</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>
<remarks>To be added.</remarks>
<since version=".NET 2.0" />
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Implements the base <see cref="M:System.Web.UI.Control.System#Web#UI#IControlDesignerAccessor#SetDesignModeState(System.Collections.IDictionary)" /> method.</para>
</summary>
<param name="data">
<attribution license="cc4" from="Microsoft" modified="false" />The design-time data for the control.</param>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SubmitButtonCommandName">
<MemberSignature Language="C#" Value="public static readonly string SubmitButtonCommandName;" />
<MemberType>Field</MemberType>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This field is a string that represents the command to perform when the Submit button is clicked. The default is "Submit". This field is read-only. If you use a template with the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control, you must use this command name for the action performed to submit the form or the control will not function properly.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the command to perform when the Submit button is clicked.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SubmitButtonImageUrl">
<MemberSignature Language="C#" Value="public virtual string SubmitButtonImageUrl { 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>The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonImageUrl" /> property contains the URL of the image to use for the Submit button when the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonType" /> property is set to <see cref="F:System.Web.UI.WebControls.ButtonType.Image" />.</para>
<para>The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonText" /> property is used as the alternative text for the image in browsers that do not display images.</para>
<para>When you use the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameTemplate" /> or the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionTemplate" /> property, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonImageUrl" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the URL of an image to use as the Submit button.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SubmitButtonStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.Style SubmitButtonStyle { 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.PasswordRecovery.SubmitButtonStyle" /> property defines the appearance of Submit buttons in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> 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 <paramref name="Property-Subproperty" />, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, SubmitButtonStyle-ForeColor). You can also set the properties programmatically in the form <paramref name="Property.Subproperty" /> (for example, SubmitButtonStyle.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.PasswordRecovery.SubmitButtonStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. Any settings made in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> properties are overridden by <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BackColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderStyle" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderWidth" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Enabled" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Font" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ForeColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Height" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ToolTip" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.Control.Visible" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Width" /> </para>
</item>
</list>
<para>When you use templates to define the appearance of the initial or Question view of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonStyle" /> 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 Submit buttons in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SubmitButtonText">
<MemberSignature Language="C#" Value="public virtual string SubmitButtonText { 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.PasswordRecovery.SubmitButtonText" /> property contains the text displayed for the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control's Submit button.</para>
<para>How the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonText" /> property is used depends on the setting of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonType" /> property. For details, see <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonType" />.</para>
<para>When you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonText" /> property has no effect.</para>
<para>The default text for the property is localized based on the server's locale setting.</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 of the button that submits the form.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SubmitButtonType">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.ButtonType SubmitButtonType { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.ButtonType</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.PasswordRecovery.SubmitButtonType" /> property determines what kind of button is used to submit entries to the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>The following table lists the button type used for each value of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonType" /> property.</para>
<list type="table">
<listheader>
<item>
<term>
<para>SubmitButtonType value </para>
</term>
<description>
<para>Button used </para>
</description>
</item>
</listheader>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.ButtonType.Button" /> </para>
</term>
<description>
<para>A standard HTML button. The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonText" /> property provides the text for the button. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.ButtonType.Image" /> </para>
</term>
<description>
<para>The image at the location stored in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonImageUrl" /> property. The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonText" /> property provides the alternate text for the image. </para>
</description>
</item>
<item>
<term>
<para>
<see cref="F:System.Web.UI.WebControls.ButtonType.Link" /> </para>
</term>
<description>
<para>An HTML link. The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonText" /> property provides the link text. </para>
</description>
</item>
</list>
<para>When you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SubmitButtonType" /> property has no effect.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the type of Submit button to use when rendering the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SuccessPageUrl">
<MemberSignature Language="C#" Value="public virtual string SuccessPageUrl { 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.PasswordRecovery.SuccessPageUrl" /> property contains the URL of the page that is displayed after a password has successfully been sent to a user.</para>
<para>If the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessPageUrl" /> property is not null, the user is directed to the page defined in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessPageUrl" /> property; otherwise, the page containing the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control is refreshed.</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 to display after sending a password successfully.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SuccessTemplate">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.ITemplate SuccessTemplate { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.PasswordRecovery))</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.ITemplate</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.PasswordRecovery.SuccessTemplate" /> property contains the template that defines the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control in Success view.</para>
<para>There are no required or optional fields for the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> Success view template.</para>
<para>When you use a template to define the appearance of the Success view, only the following properties affect the behavior of the control: </para>
<list type="bullet">
<item>
<para>All properties inherited from <see cref="T:System.Web.UI.WebControls.WebControl" /> (see the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control members table).</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.Answer" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.GeneralFailureText" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.MailDefinition" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.MembershipProvider" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.Question" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionFailureText" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionTemplate" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessPageUrl" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserName" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameFailureText" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameTemplate" />. </para>
</item>
</list>
<para>All other properties are inactive when you use a template for the Success view of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the template used to display the Success view of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SuccessTemplateContainer">
<MemberSignature Language="C#" Value="public System.Web.UI.Control SuccessTemplateContainer { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.Control</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This property can be used to programmatically access child controls when using a template. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the container that a <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control used to create an instance of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessTemplate" /> template. This property provides programmatic access to child controls.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SuccessText">
<MemberSignature Language="C#" Value="public virtual string SuccessText { 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.PasswordRecovery.SuccessText" /> property is displayed in the Success view when a password has been successfully sent to a user.</para>
<para>The style settings in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessTextStyle" /> property define the appearance of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessText" /> property.</para>
<para>When you use a template assigned to the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessTemplate" /> property, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessText" /> property has no effect.</para>
<para>If the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessPageUrl" /> property is not null, the user is redirected to the page defined in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessPageUrl" /> property, and the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control's Success view is not shown to the user.</para>
<para>The default text for the property is localized based on the server's locale setting.</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 to display after sending a password successfully.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="SuccessTextStyle">
<MemberSignature Language="C#" Value="public System.Web.UI.WebControls.TableItemStyle SuccessTextStyle { 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.PasswordRecovery.SuccessTextStyle" /> property defines the appearance of text in the Success view of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> 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 <paramref name="Property-Subproperty" />, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, SuccessTextStyle-ForeColor). You can also set the properties programmatically in the form <paramref name="Property.Subproperty" /> (for example, SuccessTextStyle.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.PasswordRecovery.SuccessTextStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. Any settings made in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessTextStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> properties are overridden by <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessTextStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BackColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderStyle" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderWidth" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Enabled" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Font" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ForeColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Height" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ToolTip" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.Control.Visible" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Width" /> </para>
</item>
</list>
<para>When you use templates to define the appearance of the Success view of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessTextStyle" /> 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 text displayed in the Success view of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="TagKey">
<MemberSignature Language="C#" Value="protected override System.Web.UI.HtmlTextWriterTag TagKey { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.HtmlTextWriterTag</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.PasswordRecovery.TagKey" /> property to determine the <see cref="T:System.Web.UI.HtmlTextWriterTag" /> value that is associated with a <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. </para>
<para>The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.TagKey" /> property allows the output stream to write the appropriate HTML markup for the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>This property is used primarily by control developers.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the <see cref="T:System.Web.UI.HtmlTextWriterTag" /> value that corresponds to a <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. </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.PasswordRecovery.TextBoxStyle" /> property defines the appearance of text boxes in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> 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 <paramref name="Property-Subproperty" />, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, TextBoxStyle-ForeColor). You can also set the properties programmatically in the form <paramref name="Property.Subproperty" /> (for example, TextBoxStyle.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.PasswordRecovery.TextBoxStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. Any settings made in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.TextBoxStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> properties are overridden by <see cref="P:System.Web.UI.WebControls.PasswordRecovery.TextBoxStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BackColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderStyle" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderWidth" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Enabled" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Font" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ForeColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Height" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ToolTip" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.Control.Visible" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Width" /> </para>
</item>
</list>
<para>When you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.TextBoxStyle" /> 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 text boxes in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="TextLayout">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.WebControls.LoginTextLayout TextLayout { set; get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.WebControls.LoginTextLayout</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.PasswordRecovery.TextLayout" /> property specifies where the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control displays the field labels for the Answer, Question, and User Name text boxes. When the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.TextLayout" /> property is set to <see cref="F:System.Web.UI.WebControls.LoginTextLayout.TextOnLeft" /> (the default), the field labels appear to the left of the text boxes. When <see cref="P:System.Web.UI.WebControls.PasswordRecovery.TextLayout" /> is set to <see cref="F:System.Web.UI.WebControls.LoginTextLayout.TextOnTop" />, the field labels appear above the text boxes.</para>
<para>The text of the labels is specified in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.AnswerLabelText" />, <see cref="P:System.Web.UI.WebControls.PasswordRecovery.QuestionLabelText" />, and <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameLabelText" /> properties, respectively. The style settings for the field labels are specified in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.LabelStyle" /> property.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets a value that specifies whether to display the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control in a horizontal or vertical layout.</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.PasswordRecovery.TitleTextStyle" /> property defines the appearance of view title text in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> 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 <paramref name="Property-Subproperty" />, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, TitleTextStyle-ForeColor). You can also set the properties programmatically in the form <paramref name="Property.Subproperty" /> (for example, TitleTextStyle.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.PasswordRecovery.TitleTextStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. Any settings made in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.TitleTextStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>The following <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> properties are overridden by <see cref="P:System.Web.UI.WebControls.PasswordRecovery.TitleTextStyle" /> settings: </para>
<list type="bullet">
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BackColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderStyle" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.BorderWidth" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Enabled" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Font" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ForeColor" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Height" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.ToolTip" /> </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.Control.Visible" />
</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.WebControl.Width" /> </para>
</item>
</list>
<para>When you use templates to define the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.TitleTextStyle" /> 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 title text that appears in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</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>Implements the base <see cref="M:System.Web.UI.Control.TrackViewState" /> method.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="UserLookupError">
<MemberSignature Language="C#" Value="public event EventHandler UserLookupError;" />
<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.PasswordRecovery.UserLookupError" /> event is raised when the membership provider cannot find the user name entered by the user.</para>
<para>For more information about handling events, see <format type="text/html"><a href="d98fd58b-fa4f-4598-8378-addf4355a115">Events and Delegates</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs when the membership provider cannot find the user name entered by the user.</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>
<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.PasswordRecovery.UserName" /> property contains the user name entered by the user, or <see cref="F:System.String.Empty" /> if the user has not entered a name. The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserName" /> property is used only in the UserName view.</para>
<para>The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserName" /> property is saved in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control's control state to preserve the values between round trips to the server even when view state is turned off for the page. <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control properties represented by text boxes, such as <see cref="P:System.Web.UI.WebControls.PasswordRecovery.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 triggered by the textboxes. </para>
<para>The style settings in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.TextBoxStyle" /> property define the appearance of the text in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserName" /> property.</para>
<para>When you assign a template to the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserName" /> property to display the UserName view, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserName" /> property is assigned the value entered in a required <see cref="T:System.Web.UI.WebControls.TextBox" /> control with the <see cref="P:System.Web.UI.Control.ID" /> property set to "UserName".</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 appears in the User Name text box.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="UserNameFailureText">
<MemberSignature Language="C#" Value="public virtual string UserNameFailureText { 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.PasswordRecovery.UserNameFailureText" /> property contains the error message that is displayed when the user enters a user name that is not recognized by the membership provider defined in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.MembershipProvider" /> property.</para>
<para>The style settings in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.FailureTextStyle" /> property define the appearance of the text in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameFailureText" /> property.</para>
<para>When you assign a template to the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameTemplate" /> property, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameFailureText" /> property is displayed in an optional <see cref="T:System.Web.UI.WebControls.Literal" /> control with the <see cref="P:System.Web.UI.Control.ID" /> property set to "FailureText".</para>
<para>The default text for the property is localized based on the server's locale setting.</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 the user name entered by the user is not a valid user name for the Web site.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="UserNameInstructionText">
<MemberSignature Language="C#" Value="public virtual string UserNameInstructionText { 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.PasswordRecovery.UserNameInstructionText" /> property is displayed in the UserName view to explain to the user how to use the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>The style settings in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.InstructionTextStyle" /> property define the appearance of the text in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameInstructionText" /> property.</para>
<para>When using a template assigned to the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameTemplate" /> property, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameInstructionText" /> property is not displayed.</para>
<para>The default text for the property is localized based on the server's locale setting.</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 to display in the UserName view of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control to instruct the user to enter a user name.</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 <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameLabelText" /> property contains the label text for the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserName" /> text box.</para>
<para>The style settings in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.LabelStyle" /> property define the appearance of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameLabelText" /> property.</para>
<para>When you assign a template to the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameTemplate" /> property, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameLabelText" /> property has no effect.</para>
<para>The default text for the property is localized based on the server's locale setting.</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 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 <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameRequiredErrorMessage" /> property contains the error message to display in any <see cref="T:System.Web.UI.WebControls.ValidationSummary" /> control on the same page as the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>The default text for the property is localized based on the server's locale setting.</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 error message displayed when a user leaves the User Name text box empty.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="UserNameTemplate">
<MemberSignature Language="C#" Value="public virtual System.Web.UI.ITemplate UserNameTemplate { set; get; }" />
<MemberType>Property</MemberType>
<Attributes>
<Attribute>
<AttributeName>System.Web.UI.TemplateContainer(typeof(System.Web.UI.WebControls.PasswordRecovery))</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Web.UI.ITemplate</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.PasswordRecovery.UserNameTemplate" /> property contains the template that defines the appearance of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control in UserName view.</para>
<para>The following table lists the required and optional controls used in the UserName view template.</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" />. </para>
</description>
<description>
<para>Optional </para>
</description>
</item>
<item>
<term>
<para>Submit </para>
</term>
<description>
<para>Any control that causes event bubbling. </para>
</description>
<description>
<para>Optional </para>
</description>
</item>
</list>
<para>The Submit control can be any control that causes event bubbling, such as <see cref="T:System.Web.UI.WebControls.Button" />, <see cref="T:System.Web.UI.WebControls.LinkButton" />, or <see cref="T:System.Web.UI.WebControls.ImageButton" />. The control's CommandName property must be set to "Submit".</para>
<para>The <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control throws an <see cref="T:System.Web.HttpException" /> exception if the UserName view does not contain the required controls. No exception is thrown if you give an optional control ID to a control of the wrong type; however, the control is subsequently ignored by the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
<para>When you use a template to define the appearance of the UserName view, only the following properties affect the behavior of the control: </para>
<list type="bullet">
<item>
<para>All properties inherited from <see cref="T:System.Web.UI.WebControls.WebControl" /> (see the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control members table).</para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.GeneralFailureText" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.MailDefinition" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.MembershipProvider" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessPageUrl" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.SuccessTemplate" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserName" />. </para>
</item>
<item>
<para>
<see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameFailureText" />. </para>
</item>
</list>
<para>All other properties are inactive when you use a template for the UserName view of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the template used to display the UserName view of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="UserNameTemplateContainer">
<MemberSignature Language="C#" Value="public System.Web.UI.Control UserNameTemplateContainer { get; }" />
<MemberType>Property</MemberType>
<ReturnValue>
<ReturnType>System.Web.UI.Control</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This property can be used to programmatically access child controls when using a template. </para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets the container that a <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control used to create an instance of the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameTemplate" /> template. This property provides programmatic access to child controls.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="UserNameTitleText">
<MemberSignature Language="C#" Value="public virtual string UserNameTitleText { 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.PasswordRecovery.UserNameTitleText" /> property contains the text to display as the title of the UserName view, which asks the user to enter his or her user name.</para>
<para>The style settings in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.TitleTextStyle" /> property define the appearance of the text in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameTitleText" /> property.</para>
<para>When you use the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameTemplate" /> property to define the appearance of the UserName view, the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.UserNameTitleText" /> property has no effect.</para>
<para>The default text for the property is localized based on the server's locale setting.</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 title for the UserName view of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</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>The <see cref="P:System.Web.UI.WebControls.PasswordRecovery.ValidatorTextStyle" /> property defines the appearance of validation error messages in the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> 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 <paramref name="Property-Subproperty" />, where <paramref name="Subproperty" /> represents a property of the <see cref="T:System.Web.UI.WebControls.Style" /> class (for example, FailureTextStyle-ForeColor). You can set the property programmatically in the form <paramref name="Property.Subproperty" /> (for example, FailureTextStyle.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.PasswordRecovery.ValidatorTextStyle" /> property are merged with the style settings for the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control. Any settings made in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.ValidatorTextStyle" /> property override the corresponding settings in properties of the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets a reference to a collection of <see cref="T:System.Web.UI.WebControls.Style" /> properties that define the appearance of error messages that are associated with any input validation used by the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="VerifyingAnswer">
<MemberSignature Language="C#" Value="public event System.Web.UI.WebControls.LoginCancelEventHandler VerifyingAnswer;" />
<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.PasswordRecovery.VerifyingAnswer" /> event occurs on the server after the user submits the answer to the password confirmation question. You can use this event to prepare the answer submitted by the user for the membership provider, for example by converting it to all uppercase or lowercase letters.</para>
<para>The <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control first raises the <see cref="E:System.Web.UI.WebControls.PasswordRecovery.VerifyingAnswer" /> event, and then uses the membership provider specified in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.MembershipProvider" /> property to compare the answer entered by the user with the password stored in the Web site.</para>
<para>For more information about handling events, see <format type="text/html"><a href="d98fd58b-fa4f-4598-8378-addf4355a115">Events and Delegates</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs when the user has submitted an answer to the password recovery confirmation question.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
<Member MemberName="VerifyingUser">
<MemberSignature Language="C#" Value="public event System.Web.UI.WebControls.LoginCancelEventHandler VerifyingUser;" />
<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.PasswordRecovery.VerifyingUser" /> event is raised on the server before the user name is submitted to the membership provider to determine whether the user name is valid. Use this event to perform any preprocessing needed on the user name, such as converting it to all uppercase or lowercase letters, or verifying that the user name is in a particular format, such as an e-mail address.</para>
<para>The <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control first raises the <see cref="E:System.Web.UI.WebControls.PasswordRecovery.VerifyingUser" /> event, and then uses the membership provider specified in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.MembershipProvider" /> property to determine whether the user name entered is a valid user name for the Web site. If it is valid, and the membership provider supports password question and answer, the password verification question is returned from the Web site and the <see cref="T:System.Web.UI.WebControls.PasswordRecovery" /> control displays the Question view. If the user name is not valid, the text in the <see cref="P:System.Web.UI.WebControls.PasswordRecovery.GeneralFailureText" /> property is displayed in the UserName view so that the user can enter a different user name.</para>
<para>If the membership provider does not support password question and answer, the <see cref="E:System.Web.UI.WebControls.PasswordRecovery.SendingMail" /> event is raised and e-mail is sent to the user with the new or recovered password.</para>
<para>For more information about handling events, see <format type="text/html"><a href="d98fd58b-fa4f-4598-8378-addf4355a115">Events and Delegates</a></format>.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Occurs before the user name is validated by the membership provider.</para>
</summary>
</Docs>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
</AssemblyInfo>
</Member>
</Members>
</Type>
|