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
|
//------------------------------------------------------------------------------
// <copyright file="ClientScriptManager.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI {
using System;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Collections;
using System.Collections.Specialized;
using System.Globalization;
using System.Text;
using System.Web.Compilation;
using System.Web.Handlers;
using System.Web.UI.WebControls;
using System.Web.Util;
using ExceptionUtil=System.Web.Util.ExceptionUtil;
using WebUtil = System.Web.Util;
using System.Security.Permissions;
using System.Reflection;
using System.Runtime.Serialization;
using System.Collections.Generic;
using System.Web.Security.Cryptography;
// The various types of client API's that can be registered
internal enum ClientAPIRegisterType {
WebFormsScript,
PostBackScript,
FocusScript,
ClientScriptBlocks,
ClientScriptBlocksWithoutTags,
ClientStartupScripts,
ClientStartupScriptsWithoutTags,
OnSubmitStatement,
ArrayDeclaration,
HiddenField,
ExpandoAttribute,
EventValidation,
}
public sealed class ClientScriptManager {
private const string IncludeScriptBegin = @"
<script src=""";
private const string IncludeScriptEnd = @""" type=""text/javascript""></script>";
internal const string ClientScriptStart = "\r\n<script type=\"text/javascript\">\r\n//<![CDATA[\r\n";
internal const string ClientScriptStartLegacy = "\r\n<script type=\"text/javascript\">\r\n<!--\r\n";
internal const string ClientScriptEnd = "//]]>\r\n</script>\r\n";
internal const string ClientScriptEndLegacy = "// -->\r\n</script>\r\n";
internal const string JscriptPrefix = "javascript:";
private const string _callbackFunctionName = "WebForm_DoCallback";
private const string _postbackOptionsFunctionName = "WebForm_DoPostBackWithOptions";
private const string _postBackFunctionName = "__doPostBack";
private const string PageCallbackScriptKey = "PageCallbackScript";
internal static IScriptResourceMapping _scriptResourceMapping;
private ListDictionary _registeredClientScriptBlocks;
private ArrayList _clientScriptBlocks;
private ListDictionary _registeredClientStartupScripts;
private ArrayList _clientStartupScripts;
private Dictionary<Assembly, Dictionary<String, Object>> _registeredResourcesToSuppress;
private bool _eventValidationFieldLoaded;
private ListDictionary _registeredOnSubmitStatements;
private IDictionary _registeredArrayDeclares;
private ListDictionary _registeredHiddenFields;
private ListDictionary _registeredControlsWithExpandoAttributes;
private IEventValidationProvider _eventValidationProvider;
private Page _owner;
internal ClientScriptManager(Page owner) {
_owner = owner;
}
internal bool HasRegisteredHiddenFields {
get {
return (_registeredHiddenFields != null && _registeredHiddenFields.Count > 0);
}
}
internal bool HasSubmitStatements {
get {
return (_registeredOnSubmitStatements != null && _registeredOnSubmitStatements.Count > 0);
}
}
internal Dictionary<Assembly, Dictionary<String, Object>> RegisteredResourcesToSuppress {
get {
if (_registeredResourcesToSuppress == null) {
_registeredResourcesToSuppress = new Dictionary<Assembly, Dictionary<String, Object>>();
}
return _registeredResourcesToSuppress;
}
}
private IEventValidationProvider EventValidationProvider {
get {
if (_eventValidationProvider == null) {
if (AppSettings.UseLegacyEventValidationCompatibility) {
_eventValidationProvider = new LegacyEventValidationProvider(this);
}
else {
_eventValidationProvider = new DefaultEventValidationProvider(this);
}
}
return _eventValidationProvider;
}
}
internal string GetEventValidationFieldValue() {
// Access the _eventValidationProvider field instead of the EventValidationProvider property so that we
// don't end up instantiating objects if not necessary.
if (_eventValidationProvider != null) {
object eventValidationStoreObject = _eventValidationProvider.GetEventValidationStoreObject();
if (eventValidationStoreObject != null) {
// Make cryptographically secure
IStateFormatter2 formatter = _owner.CreateStateFormatter();
return formatter.Serialize(eventValidationStoreObject, Purpose.WebForms_ClientScriptManager_EventValidation);
}
}
// If we got here, there was no store data.
return String.Empty;
}
public void RegisterForEventValidation(PostBackOptions options) {
RegisterForEventValidation(options.TargetControl.UniqueID, options.Argument);
}
public void RegisterForEventValidation(string uniqueId) {
RegisterForEventValidation(uniqueId, String.Empty);
}
public void RegisterForEventValidation(string uniqueId, string argument) {
// Step 1: argument and precondition checks
if (!_owner.EnableEventValidation || _owner.DesignMode) {
return;
}
// VSWhidbey 497632. Ignore if uniqueID is empty since the postback won't be valid anyway.
if (String.IsNullOrEmpty(uniqueId)) {
return;
}
if ((_owner.ControlState < ControlState.PreRendered) && (!_owner.IsCallback)) {
throw new InvalidOperationException(
SR.GetString(SR.ClientScriptManager_RegisterForEventValidation_Too_Early));
}
// Step 2: Add this tuple to the list
EventValidationProvider.RegisterForEventValidation(uniqueId, argument);
// Step 3: If there are any partial caching controls on the stack, forward the call to them
if (_owner.PartialCachingControlStack != null) {
foreach (BasePartialCachingControl c in _owner.PartialCachingControlStack) {
c.RegisterForEventValidation(uniqueId, argument);
}
}
}
internal void SaveEventValidationField() {
string fieldValue = GetEventValidationFieldValue();
if (!String.IsNullOrEmpty(fieldValue)) {
RegisterHiddenField(Page.EventValidationPrefixID, fieldValue);
}
}
// Used by unobtrusive javascript validators to verify that a scriptresource mapping for jquery is registered
internal static void EnsureJqueryRegistered() {
if (_scriptResourceMapping != null) {
if (_scriptResourceMapping.GetDefinition("jquery", typeof(Page).Assembly) == null &&
_scriptResourceMapping.GetDefinition("jquery") == null) {
throw new InvalidOperationException(SR.GetString(SR.ClientScriptManager_JqueryNotRegistered));
}
}
}
private void EnsureEventValidationFieldLoaded() {
if (_eventValidationFieldLoaded) {
return;
}
_eventValidationFieldLoaded = true;
// Step 1: Read the event validation field
string unsafeField = null;
if (_owner.RequestValueCollection != null) {
unsafeField = _owner.RequestValueCollection[Page.EventValidationPrefixID];
}
if (String.IsNullOrEmpty(unsafeField)) {
return;
}
// Step 2: Decrypt the event validation field
IStateFormatter2 formatter = _owner.CreateStateFormatter();
object eventValidationField = null;
try {
eventValidationField = formatter.Deserialize(unsafeField, Purpose.WebForms_ClientScriptManager_EventValidation);
}
catch (Exception ex) {
// DevDiv #461378: Ignore validation errors for cross-page postbacks. Since the ValidateEvent method
// is most likely on the call stack right now, this will result in an event validation failure rather
// than a MAC validation failure.
if (!_owner.ShouldSuppressMacValidationException(ex)) {
ViewStateException.ThrowViewStateError(ex, unsafeField);
}
}
// Step 3: Load the event validation field into the appropriate provider
if (!EventValidationProvider.TryLoadEventValidationField(eventValidationField)) {
// Something went wrong while loading the incoming event validation object; the
// most likely cause is that it wasn't submitted with the correct ViewState.
ViewStateException.ThrowViewStateError(null, unsafeField);
}
}
public void ValidateEvent(string uniqueId) {
ValidateEvent(uniqueId, String.Empty);
}
public void ValidateEvent(string uniqueId, string argument) {
if (!_owner.EnableEventValidation) {
return;
}
if (String.IsNullOrEmpty(uniqueId)) {
throw new ArgumentException(SR.GetString(SR.Parameter_NullOrEmpty, "uniqueId"), "uniqueId");
}
EnsureEventValidationFieldLoaded();
// Go against the _eventValidationProvider field instead of the EventValidationProvider
// property to avoid the lazy instantiation code if not necessary.
if (_eventValidationProvider == null || !_eventValidationProvider.IsValid(uniqueId, argument)) {
throw new ArgumentException(SR.GetString(SR.ClientScriptManager_InvalidPostBackArgument));
}
}
internal void ClearHiddenFields() {
_registeredHiddenFields = null;
}
internal static ScriptKey CreateScriptKey(Type type, string key) {
return new ScriptKey(type, key);
}
internal static ScriptKey CreateScriptIncludeKey(Type type, string key, bool isResource) {
return new ScriptKey(type, key, true, isResource);
}
/// <devdoc>
/// Enables controls to obtain client-side script function that will cause
/// (when invoked) an out-of-band callback to the server
/// </devdoc>
public string GetCallbackEventReference(Control control, string argument, string clientCallback, string context) {
return GetCallbackEventReference(control, argument, clientCallback, context, false);
}
public string GetCallbackEventReference(Control control, string argument, string clientCallback, string context, bool useAsync) {
return GetCallbackEventReference(control, argument, clientCallback, context, null, useAsync);
}
/// <devdoc>
/// Enables controls to obtain client-side script function that will cause
/// (when invoked) an out-of-band callback to the server and allows the user to specify a client-side error callback
/// </devdoc>
public string GetCallbackEventReference(Control control, string argument, string clientCallback, string context, string clientErrorCallback, bool useAsync) {
if (control == null) {
throw new ArgumentNullException("control");
}
if (!(control is ICallbackEventHandler)) {
throw new InvalidOperationException(SR.GetString(SR.Page_CallBackTargetInvalid, control.UniqueID));
}
return GetCallbackEventReference("'" + control.UniqueID + "'", argument, clientCallback, context, clientErrorCallback, useAsync);
}
/// <devdoc>
/// Enables controls to obtain client-side script function that will cause
/// (when invoked) an out-of-band callback to the server and allows the user to specify a client-side error callback
/// </devdoc>
public string GetCallbackEventReference(string target, string argument, string clientCallback, string context, string clientErrorCallback, bool useAsync) {
_owner.RegisterWebFormsScript();
if (_owner.ClientSupportsJavaScript && (_owner.RequestInternal != null) && _owner.RequestInternal.Browser.SupportsCallback) {
RegisterStartupScript(typeof(Page), PageCallbackScriptKey, (((_owner.RequestInternal != null) &&
(String.Equals(_owner.RequestInternal.Url.Scheme, "https", StringComparison.OrdinalIgnoreCase))) ?
@"
var callBackFrameUrl='" + Util.QuoteJScriptString(GetWebResourceUrl(typeof(Page), "SmartNav.htm"), false) + @"';
WebForm_InitCallback();" :
@"
WebForm_InitCallback();"), true);
}
if (argument == null) {
argument = "null";
}
else if (argument.Length == 0) {
argument = "\"\"";
}
if (context == null) {
context = "null";
}
else if (context.Length == 0) {
context = "\"\"";
}
return _callbackFunctionName +
"(" +
target +
"," +
argument +
"," +
clientCallback +
"," +
context +
"," +
((clientErrorCallback == null) ? "null" : clientErrorCallback) +
"," +
(useAsync ? "true" : "false") +
")";
}
public string GetPostBackClientHyperlink(Control control, string argument) {
// We're using escapePercent=true here and false in Page
// because true in Page would be a breaking change:
// People may already be encoding percent characters before calling this,
// and we may double encode it.
// Our own classes and new code should almost always use the override with escapePercent=true.
return GetPostBackClientHyperlink(control, argument, true, false);
}
public string GetPostBackClientHyperlink(Control control, string argument, bool registerForEventValidation) {
// We're using escapePercent=true here and false in Page
// because true in Page would be a breaking change:
// People may already be encoding percent characters before calling this,
// and we may double encode it.
// Our own classes and new code should almost always use the override with escapePercent=true.
return GetPostBackClientHyperlink(control, argument, true, registerForEventValidation);
}
/// <devdoc>
/// <para>This returs a string that can be put in client event to post back to the named control</para>
/// </devdoc>
internal string GetPostBackClientHyperlink(Control control, string argument, bool escapePercent, bool registerForEventValidation) {
// Hyperlinks always need the language prefix
// If used in a hyperlink, the event argument needs to be escaped for % characters
// which will otherwise be interpreted as escape sequences (VSWhidbey 421874)
return JscriptPrefix + GetPostBackEventReference(control, argument, escapePercent, registerForEventValidation);
}
public string GetPostBackEventReference(Control control, string argument) {
return GetPostBackEventReference(control, argument, false, false);
}
public string GetPostBackEventReference(Control control, string argument, bool registerForEventValidation) {
return GetPostBackEventReference(control, argument, false, registerForEventValidation);
}
/*
* Enables controls to obtain client-side script function that will cause
* (when invoked) a server post-back to the form.
* argument: Parameter that will be passed to control on server
*/
/// <devdoc>
/// <para>Passes a parameter to the control that will do the postback processing on the
/// server.</para>
/// </devdoc>
private string GetPostBackEventReference(Control control, string argument, bool forUrl, bool registerForEventValidation) {
if (control == null) {
throw new ArgumentNullException("control");
}
_owner.RegisterPostBackScript();
string controlID = control.UniqueID;
if (registerForEventValidation) {
RegisterForEventValidation(controlID, argument);
}
// VSWhidbey 475945
if (control.EnableLegacyRendering && _owner.IsInOnFormRender &&
controlID != null && controlID.IndexOf(Control.LEGACY_ID_SEPARATOR) >= 0) {
controlID = controlID.Replace(Control.LEGACY_ID_SEPARATOR, Control.ID_SEPARATOR);
}
// Split into 2 calls to String.Concat to improve performance.
// CLR is investigating whether this should be fixed at a lower level.
string postBackEventReference = _postBackFunctionName + "('" + controlID + "','";
// The argument needs to be quoted, in case in contains characters that
// can't be used in JScript strings (ASURT 71818).
postBackEventReference += Util.QuoteJScriptString(argument, forUrl) + "')";
return postBackEventReference;
}
/// <devdoc>
/// <para>Passes a parameter to the control that will do the postback processing on the
/// server.</para>
/// </devdoc>
public string GetPostBackEventReference(PostBackOptions options) {
return GetPostBackEventReference(options, false);
}
public string GetPostBackEventReference(PostBackOptions options, bool registerForEventValidation) {
if (options == null) {
throw new ArgumentNullException("options");
}
if (registerForEventValidation) {
RegisterForEventValidation(options);
}
StringBuilder builder = new StringBuilder();
bool shouldRenderPostBackReferenceString = false;
if (options.RequiresJavaScriptProtocol) {
builder.Append(JscriptPrefix);
}
if (options.AutoPostBack) {
builder.Append("setTimeout('");
}
// Use the old __doPostBack method if not using other postback features.
if (!options.PerformValidation && !options.TrackFocus && options.ClientSubmit &&
string.IsNullOrEmpty(options.ActionUrl)) {
string postbackRef = GetPostBackEventReference(options.TargetControl, options.Argument);
// Need to quote the string if auto posting back
if (options.AutoPostBack) {
builder.Append(Util.QuoteJScriptString(postbackRef));
builder.Append("', 0)");
}
else {
builder.Append(postbackRef);
}
return builder.ToString();
}
builder.Append(_postbackOptionsFunctionName);
builder.Append("(new WebForm_PostBackOptions(\"");
builder.Append(options.TargetControl.UniqueID);
builder.Append("\", ");
if (String.IsNullOrEmpty(options.Argument)) {
builder.Append("\"\", ");
}
else {
builder.Append("\"");
builder.Append(Util.QuoteJScriptString(options.Argument));
builder.Append("\", ");
}
if (options.PerformValidation) {
shouldRenderPostBackReferenceString = true;
builder.Append("true, ");
}
else {
builder.Append("false, ");
}
if (options.ValidationGroup != null && options.ValidationGroup.Length > 0) {
shouldRenderPostBackReferenceString = true;
builder.Append("\"");
builder.Append(options.ValidationGroup);
builder.Append("\", ");
}
else {
builder.Append("\"\", ");
}
if (options.ActionUrl != null && options.ActionUrl.Length > 0) {
shouldRenderPostBackReferenceString = true;
_owner.ContainsCrossPagePost = true;
builder.Append("\"");
builder.Append(Util.QuoteJScriptString(options.ActionUrl));
builder.Append("\", ");
}
else {
builder.Append("\"\", ");
}
if (options.TrackFocus) {
_owner.RegisterFocusScript();
shouldRenderPostBackReferenceString = true;
builder.Append("true, ");
}
else {
builder.Append("false, ");
}
if (options.ClientSubmit) {
shouldRenderPostBackReferenceString = true;
_owner.RegisterPostBackScript();
builder.Append("true))");
}
else {
builder.Append("false))");
}
if (options.AutoPostBack) {
builder.Append("', 0)");
}
string reference = null;
if (shouldRenderPostBackReferenceString) {
reference = builder.ToString();
_owner.RegisterWebFormsScript();
}
return reference;
}
/// <devdoc>
/// Gets a URL resource reference to a client-side resource
/// </devdoc>
public string GetWebResourceUrl(Type type, string resourceName) {
return GetWebResourceUrl(_owner, type, resourceName, false,
(_owner == null ? null : _owner.ScriptManager));
}
internal static string GetWebResourceUrl(Page owner, Type type, string resourceName, bool htmlEncoded, IScriptManager scriptManager) {
bool enableCdn = scriptManager != null && scriptManager.EnableCdn;
return GetWebResourceUrl(owner, type, resourceName, htmlEncoded, scriptManager, enableCdn);
}
internal static string GetWebResourceUrl(Page owner, Type type, string resourceName, bool htmlEncoded, IScriptManager scriptManager, bool enableCdn) {
if (type == null) {
throw new ArgumentNullException("type");
}
if (String.IsNullOrEmpty(resourceName)) {
throw new ArgumentNullException("resourceName");
}
if (owner != null && owner.DesignMode) {
ISite site = ((IComponent)owner).Site;
if (site != null) {
IResourceUrlGenerator urlGenerator = site.GetService(typeof(IResourceUrlGenerator)) as IResourceUrlGenerator;
if (urlGenerator != null) {
return urlGenerator.GetResourceUrl(type, resourceName);
}
}
return resourceName;
}
else {
return AssemblyResourceLoader.GetWebResourceUrl(type, resourceName, htmlEncoded, scriptManager, enableCdn: enableCdn);
}
}
/// <devdoc>
/// <para>Determines if the client script block is registered with the page.</para>
/// </devdoc>
public bool IsClientScriptBlockRegistered(string key) {
return IsClientScriptBlockRegistered(typeof(Page), key);
}
/// <devdoc>
/// <para>Determines if the client script block is registered with the page.</para>
/// </devdoc>
public bool IsClientScriptBlockRegistered(Type type, string key) {
if (type == null) {
throw new ArgumentNullException("type");
}
return (_registeredClientScriptBlocks != null
&& (_registeredClientScriptBlocks.Contains(CreateScriptKey(type, key))));
}
/// <devdoc>
/// <para>Determines if the onsubmit script is registered with the page.</para>
/// </devdoc>
public bool IsClientScriptIncludeRegistered(string key) {
return IsClientScriptIncludeRegistered(typeof(Page), key);
}
/// <devdoc>
/// <para>Determines if the onsubmit script is registered with the page.</para>
/// </devdoc>
public bool IsClientScriptIncludeRegistered(Type type, string key) {
if (type == null) {
throw new ArgumentNullException("type");
}
return (_registeredClientScriptBlocks != null
&& (_registeredClientScriptBlocks.Contains(CreateScriptIncludeKey(type, key, false))));
}
/// <devdoc>
/// <para>Determines if the client startup script is registered with the
/// page.</para>
/// </devdoc>
public bool IsStartupScriptRegistered(string key) {
return IsStartupScriptRegistered(typeof(Page), key);
}
/// <devdoc>
/// <para>Determines if the client startup script is registered with the
/// page.</para>
/// </devdoc>
public bool IsStartupScriptRegistered(Type type, string key) {
if (type == null) {
throw new ArgumentNullException("type");
}
return (_registeredClientStartupScripts != null
&& (_registeredClientStartupScripts.Contains(CreateScriptKey(type, key))));
}
/// <devdoc>
/// <para>Determines if the onsubmit script is registered with the page.</para>
/// </devdoc>
public bool IsOnSubmitStatementRegistered(string key) {
return IsOnSubmitStatementRegistered(typeof(Page), key);
}
/// <devdoc>
/// <para>Determines if the onsubmit script is registered with the page.</para>
/// </devdoc>
public bool IsOnSubmitStatementRegistered(Type type, string key) {
if (type == null) {
throw new ArgumentNullException("type");
}
return (_registeredOnSubmitStatements != null
&& (_registeredOnSubmitStatements.Contains(CreateScriptKey(type, key))));
}
/// <devdoc>
/// <para>Declares a value that will be declared as a JavaScript array declaration
/// when the page renders. This can be used by script-based controls to declare
/// themselves within an array so that a client script library can work with
/// all the controls of the same type.</para>
/// </devdoc>
public void RegisterArrayDeclaration(string arrayName, string arrayValue) {
if (arrayName == null) {
throw new ArgumentNullException("arrayName");
}
if (_registeredArrayDeclares == null) {
_registeredArrayDeclares = new ListDictionary();
}
if (!_registeredArrayDeclares.Contains(arrayName)) {
_registeredArrayDeclares[arrayName] = new ArrayList();
}
ArrayList elements = (ArrayList)_registeredArrayDeclares[arrayName];
elements.Add(arrayValue);
// If there are any partial caching controls on the stack, forward the call to them
if (_owner.PartialCachingControlStack != null) {
foreach (BasePartialCachingControl c in _owner.PartialCachingControlStack) {
c.RegisterArrayDeclaration(arrayName, arrayValue);
}
}
}
// RegisterArrayDeclaration implementation that supports partial rendering.
internal void RegisterArrayDeclaration(Control control, string arrayName, string arrayValue) {
IScriptManager scriptManager = _owner.ScriptManager;
if ((scriptManager != null) && scriptManager.SupportsPartialRendering) {
scriptManager.RegisterArrayDeclaration(control, arrayName, arrayValue);
}
else {
RegisterArrayDeclaration(arrayName, arrayValue);
}
}
public void RegisterExpandoAttribute(string controlId, string attributeName, string attributeValue) {
RegisterExpandoAttribute(controlId, attributeName, attributeValue, true);
}
public void RegisterExpandoAttribute(string controlId, string attributeName, string attributeValue, bool encode) {
// check paramters
WebUtil.StringUtil.CheckAndTrimString(controlId, "controlId");
WebUtil.StringUtil.CheckAndTrimString(attributeName, "attributeName");
ListDictionary expandoAttributes = null;
if (_registeredControlsWithExpandoAttributes == null) {
_registeredControlsWithExpandoAttributes = new ListDictionary(StringComparer.Ordinal);
}
else {
expandoAttributes = (ListDictionary)_registeredControlsWithExpandoAttributes[controlId];
}
if (expandoAttributes == null) {
expandoAttributes = new ListDictionary(StringComparer.Ordinal);
_registeredControlsWithExpandoAttributes.Add(controlId, expandoAttributes);
}
if (encode) {
attributeValue = Util.QuoteJScriptString(attributeValue);
}
expandoAttributes.Add(attributeName, attributeValue);
// If there are any partial caching controls on the stack, forward the call to them
if (_owner.PartialCachingControlStack != null) {
foreach (BasePartialCachingControl c in _owner.PartialCachingControlStack) {
c.RegisterExpandoAttribute(controlId, attributeName, attributeValue);
}
}
}
// RegisterExpandoAttribute implementation that supports partial rendering.
internal void RegisterExpandoAttribute(Control control, string controlId, string attributeName, string attributeValue, bool encode) {
IScriptManager scriptManager = _owner.ScriptManager;
if ((scriptManager != null) && scriptManager.SupportsPartialRendering) {
scriptManager.RegisterExpandoAttribute(control, controlId, attributeName, attributeValue, encode);
}
else {
RegisterExpandoAttribute(controlId, attributeName, attributeValue, encode);
}
}
/// <devdoc>
/// <para>
/// Allows controls to automatically register a hidden field on the form. The
/// field will be emitted when the form control renders itself.
/// </para>
/// </devdoc>
public void RegisterHiddenField(string hiddenFieldName,
string hiddenFieldInitialValue) {
if (hiddenFieldName == null) {
throw new ArgumentNullException("hiddenFieldName");
}
if (_registeredHiddenFields == null)
_registeredHiddenFields = new ListDictionary();
if (!_registeredHiddenFields.Contains(hiddenFieldName))
_registeredHiddenFields.Add(hiddenFieldName, hiddenFieldInitialValue);
if (_owner._hiddenFieldsToRender == null) {
_owner._hiddenFieldsToRender = new Dictionary<String, String>();
}
_owner._hiddenFieldsToRender[hiddenFieldName] = hiddenFieldInitialValue;
// If there are any partial caching controls on the stack, forward the call to them
if (_owner.PartialCachingControlStack != null) {
foreach (BasePartialCachingControl c in _owner.PartialCachingControlStack) {
c.RegisterHiddenField(hiddenFieldName, hiddenFieldInitialValue);
}
}
}
// RegisterHiddenField implementation that supports partial rendering.
internal void RegisterHiddenField(Control control, string hiddenFieldName, string hiddenFieldValue) {
IScriptManager scriptManager = _owner.ScriptManager;
if ((scriptManager != null) && scriptManager.SupportsPartialRendering) {
scriptManager.RegisterHiddenField(control, hiddenFieldName, hiddenFieldValue);
}
else {
RegisterHiddenField(hiddenFieldName, hiddenFieldValue);
}
}
/// <devdoc>
/// Prevents controls from sending duplicate blocks of
/// client-side script to the client. Any script blocks with the same type and key
/// values are considered duplicates.</para>
/// </devdoc>
public void RegisterClientScriptBlock(Type type, string key, string script) {
RegisterClientScriptBlock(type, key, script, false);
}
/// <devdoc>
/// Prevents controls from sending duplicate blocks of
/// client-side script to the client. Any script blocks with the same type and key
/// values are considered duplicates.</para>
/// </devdoc>
public void RegisterClientScriptBlock(Type type, string key, string script, bool addScriptTags) {
if (type == null) {
throw new ArgumentNullException("type");
}
if (addScriptTags) {
RegisterScriptBlock(CreateScriptKey(type, key), script, ClientAPIRegisterType.ClientScriptBlocksWithoutTags);
}
else {
RegisterScriptBlock(CreateScriptKey(type, key), script, ClientAPIRegisterType.ClientScriptBlocks);
}
}
// RegisterClientScriptBlock implementation that supports partial rendering.
internal void RegisterClientScriptBlock(Control control, Type type, string key, string script, bool addScriptTags) {
IScriptManager scriptManager = _owner.ScriptManager;
if ((scriptManager != null) && scriptManager.SupportsPartialRendering) {
scriptManager.RegisterClientScriptBlock(control, type, key, script, addScriptTags);
}
else {
RegisterClientScriptBlock(type, key, script, addScriptTags);
}
}
/// <devdoc>
/// <para> Prevents controls from sending duplicate blocks of
/// client-side script to the client. Any script blocks with the same <paramref name="key"/> parameter
/// values are considered duplicates.</para>
/// </devdoc>
public void RegisterClientScriptInclude(string key, string url) {
RegisterClientScriptInclude(typeof(Page), key, url);
}
/// <devdoc>
/// Prevents controls from sending duplicate blocks of
/// client-side script to the client. Any script blocks with the same type and key
/// values are considered duplicates.</para>
/// </devdoc>
public void RegisterClientScriptInclude(Type type, string key, string url) {
RegisterClientScriptInclude(type, key, url, false);
}
internal void RegisterClientScriptInclude(Type type, string key, string url, bool isResource) {
if (type == null) {
throw new ArgumentNullException("type");
}
if (String.IsNullOrEmpty(url)) {
throw ExceptionUtil.ParameterNullOrEmpty("url");
}
// VSWhidbey 499036: encode the url
string script = IncludeScriptBegin + HttpUtility.HtmlAttributeEncode(url) + IncludeScriptEnd;
RegisterScriptBlock(CreateScriptIncludeKey(type, key, isResource), script, ClientAPIRegisterType.ClientScriptBlocks);
}
// RegisterClientScriptInclude implementation that supports partial rendering.
internal void RegisterClientScriptInclude(Control control, Type type, string key, string url) {
IScriptManager scriptManager = _owner.ScriptManager;
if ((scriptManager != null) && scriptManager.SupportsPartialRendering) {
scriptManager.RegisterClientScriptInclude(control, type, key, url);
}
else {
RegisterClientScriptInclude(type, key, url);
}
}
/// <devdoc>
/// </devdoc>
public void RegisterClientScriptResource(Type type, string resourceName) {
if (type == null) {
throw new ArgumentNullException("type");
}
RegisterClientScriptInclude(type, resourceName, GetWebResourceUrl(type, resourceName), true);
}
// RegisterClientScriptResource implementation that supports partial rendering.
internal void RegisterClientScriptResource(Control control, Type type, string resourceName) {
IScriptManager scriptManager = _owner.ScriptManager;
if ((scriptManager != null) && scriptManager.SupportsPartialRendering) {
scriptManager.RegisterClientScriptResource(control, type, resourceName);
}
else {
RegisterClientScriptResource(type, resourceName);
}
}
internal void RegisterDefaultButtonScript(Control button, HtmlTextWriter writer, bool useAddAttribute) {
_owner.RegisterWebFormsScript();
if (_owner.EnableLegacyRendering) {
if (useAddAttribute) {
writer.AddAttribute("language", "javascript", false);
}
else {
writer.WriteAttribute("language", "javascript", false);
}
}
string keyPress = "javascript:return WebForm_FireDefaultButton(event, '" + button.ClientID + "')";
if (useAddAttribute) {
writer.AddAttribute("onkeypress", keyPress);
}
else {
writer.WriteAttribute("onkeypress", keyPress);
}
}
/// <devdoc>
/// <para>Allows a control to access a the client
/// <see langword='onsubmit'/> event.
/// The script should be a function call to client code registered elsewhere.</para>
/// </devdoc>
public void RegisterOnSubmitStatement(Type type, string key, string script) {
if (type == null) {
throw new ArgumentNullException("type");
}
RegisterOnSubmitStatementInternal(CreateScriptKey(type, key), script);
}
// RegisterOnSubmitStatement implementation that supports partial rendering.
internal void RegisterOnSubmitStatement(Control control, Type type, string key, string script) {
IScriptManager scriptManager = _owner.ScriptManager;
if ((scriptManager != null) && scriptManager.SupportsPartialRendering) {
scriptManager.RegisterOnSubmitStatement(control, type, key, script);
}
else {
RegisterOnSubmitStatement(type, key, script);
}
}
internal void RegisterOnSubmitStatementInternal(ScriptKey key, string script) {
if (String.IsNullOrEmpty(script)) {
throw ExceptionUtil.ParameterNullOrEmpty("script");
}
if (_registeredOnSubmitStatements == null)
_registeredOnSubmitStatements = new ListDictionary();
// Make sure the script block ends in a semicolon
int index = script.Length - 1;
while ((index >= 0) && Char.IsWhiteSpace(script, index)) {
index--;
}
if ((index >= 0) && (script[index] != ';')) {
script = script.Substring(0, index + 1) + ";" + script.Substring(index + 1);
}
if (!_registeredOnSubmitStatements.Contains(key))
_registeredOnSubmitStatements.Add(key, script);
// If there are any partial caching controls on the stack, forward the call to them
if (_owner.PartialCachingControlStack != null) {
foreach (BasePartialCachingControl c in _owner.PartialCachingControlStack) {
c.RegisterOnSubmitStatement(key, script);
}
}
}
internal void RegisterScriptBlock(ScriptKey key, string script, ClientAPIRegisterType type) {
// Call RegisterScriptBlock with the correct collection based on the blockType
switch (type) {
case ClientAPIRegisterType.ClientScriptBlocks:
RegisterScriptBlock(key, script, ref _registeredClientScriptBlocks, ref _clientScriptBlocks, false);
break;
case ClientAPIRegisterType.ClientScriptBlocksWithoutTags:
RegisterScriptBlock(key, script, ref _registeredClientScriptBlocks, ref _clientScriptBlocks, true);
break;
case ClientAPIRegisterType.ClientStartupScripts:
RegisterScriptBlock(key, script, ref _registeredClientStartupScripts, ref _clientStartupScripts, false);
break;
case ClientAPIRegisterType.ClientStartupScriptsWithoutTags:
RegisterScriptBlock(key, script, ref _registeredClientStartupScripts, ref _clientStartupScripts, true);
break;
default:
Debug.Assert(false);
break;
}
// If there are any partial caching controls on the stack, forward the call to them
if (_owner.PartialCachingControlStack != null) {
foreach (BasePartialCachingControl c in _owner.PartialCachingControlStack) {
c.RegisterScriptBlock(type, key, script);
}
}
}
private void RegisterScriptBlock(ScriptKey key, string script, ref ListDictionary scriptBlocks, ref ArrayList scriptList, bool needsScriptTags) {
if (scriptBlocks == null) {
scriptBlocks = new ListDictionary();
scriptList = new ArrayList();
}
if (!scriptBlocks.Contains(key)) {
Tuple<ScriptKey, String, Boolean> entry = new Tuple<ScriptKey, String, Boolean>(key, script, needsScriptTags);
scriptBlocks.Add(key, null);
scriptList.Add(entry);
}
}
/// <devdoc>
/// <para>
/// Allows controls to keep duplicate blocks of client-side script code from
/// being sent to the client. Any script blocks with the same type and key
/// value are considered duplicates.
/// </para>
/// </devdoc>
public void RegisterStartupScript(Type type, string key, string script) {
RegisterStartupScript(type, key, script, false);
}
/// <devdoc>
/// <para>
/// Allows controls to keep duplicate blocks of client-side script code from
/// being sent to the client. Any script blocks with the same type and key
/// value are considered duplicates.
/// </para>
/// </devdoc>
public void RegisterStartupScript(Type type, string key, string script, bool addScriptTags) {
if (type == null) {
throw new ArgumentNullException("type");
}
if (addScriptTags) {
RegisterScriptBlock(CreateScriptKey(type, key), script, ClientAPIRegisterType.ClientStartupScriptsWithoutTags);
}
else {
RegisterScriptBlock(CreateScriptKey(type, key), script, ClientAPIRegisterType.ClientStartupScripts);
}
}
// RegisterStartupScript implementation that supports partial rendering.
internal void RegisterStartupScript(Control control, Type type, string key, string script, bool addScriptTags) {
IScriptManager scriptManager = _owner.ScriptManager;
if ((scriptManager != null) && scriptManager.SupportsPartialRendering) {
scriptManager.RegisterStartupScript(control, type, key, script, addScriptTags);
}
else {
RegisterStartupScript(type, key, script, addScriptTags);
}
}
internal void RenderArrayDeclares(HtmlTextWriter writer) {
if (_registeredArrayDeclares == null || _registeredArrayDeclares.Count == 0) {
return;
}
writer.Write(_owner.EnableLegacyRendering ? ClientScriptStartLegacy : ClientScriptStart);
// Write out each array
IDictionaryEnumerator arrays = _registeredArrayDeclares.GetEnumerator();
while (arrays.MoveNext()) {
// Write the declaration
writer.Write("var ");
writer.Write(arrays.Key);
writer.Write(" = new Array(");
// Write each element
IEnumerator elements = ((ArrayList)arrays.Value).GetEnumerator();
bool first = true;
while (elements.MoveNext()) {
if (first) {
first = false;
}
else {
writer.Write(", ");
}
writer.Write(elements.Current);
}
// Close the declaration
writer.WriteLine(");");
}
writer.Write(_owner.EnableLegacyRendering ? ClientScriptEndLegacy : ClientScriptEnd);
}
internal void RenderExpandoAttribute(HtmlTextWriter writer) {
if (_registeredControlsWithExpandoAttributes == null ||
_registeredControlsWithExpandoAttributes.Count == 0) {
return;
}
writer.Write(_owner.EnableLegacyRendering ? ClientScriptStartLegacy : ClientScriptStart);
foreach (DictionaryEntry controlEntry in _registeredControlsWithExpandoAttributes) {
string controlId = (string)controlEntry.Key;
writer.Write("var ");
writer.Write(controlId);
writer.Write(" = document.all ? document.all[\"");
writer.Write(controlId);
writer.Write("\"] : document.getElementById(\"");
writer.Write(controlId);
writer.WriteLine("\");");
ListDictionary expandoAttributes = (ListDictionary)controlEntry.Value;
Debug.Assert(expandoAttributes != null && expandoAttributes.Count > 0);
foreach (DictionaryEntry expandoAttribute in expandoAttributes) {
writer.Write(controlId);
writer.Write(".");
writer.Write(expandoAttribute.Key);
if (expandoAttribute.Value == null) {
// VSWhidbey 382151 Render out null string for nulls
writer.WriteLine(" = null;");
}
else {
writer.Write(" = \"");
writer.Write(expandoAttribute.Value);
writer.WriteLine("\";");
}
}
}
writer.Write(_owner.EnableLegacyRendering ? ClientScriptEndLegacy : ClientScriptEnd);
}
internal void RenderHiddenFields(HtmlTextWriter writer) {
if (_registeredHiddenFields == null || _registeredHiddenFields.Count == 0) {
return;
}
foreach (DictionaryEntry entry in _registeredHiddenFields) {
string entryKey = (string)entry.Key;
if (entryKey == null) {
entryKey = String.Empty;
}
writer.WriteLine();
writer.Write("<input type=\"hidden\" name=\"");
writer.Write(entryKey);
writer.Write("\" id=\"");
writer.Write(entryKey);
writer.Write("\" value=\"");
HttpUtility.HtmlEncode((string)entry.Value, writer);
writer.Write("\" />");
}
ClearHiddenFields();
}
internal void RenderClientScriptBlocks(HtmlTextWriter writer) {
bool inScriptBlock = false;
if (_clientScriptBlocks != null) {
inScriptBlock = RenderRegisteredScripts(writer, _clientScriptBlocks, true);
}
// Emit the onSubmit function, in necessary
if (!String.IsNullOrEmpty(_owner.ClientOnSubmitEvent) && _owner.ClientSupportsJavaScript) {
// If we were already inside a script tag, don't emit a new open script tag
if (!inScriptBlock) {
writer.Write(_owner.EnableLegacyRendering ? ClientScriptStartLegacy : ClientScriptStart);
}
writer.Write(@"function WebForm_OnSubmit() {
");
if (_registeredOnSubmitStatements != null) {
foreach (string s in _registeredOnSubmitStatements.Values) {
writer.Write(s);
}
}
writer.WriteLine(@"
return true;
}");
// We always need to close the script tag
writer.Write(_owner.EnableLegacyRendering ? ClientScriptEndLegacy : ClientScriptEnd);
}
// If there was no onSubmit function, close the script tag if needed
else if (inScriptBlock) {
writer.Write(_owner.EnableLegacyRendering ? ClientScriptEndLegacy : ClientScriptEnd);
}
}
internal void RenderClientStartupScripts(HtmlTextWriter writer) {
if (_clientStartupScripts != null) {
bool inScriptBlock = RenderRegisteredScripts(writer, _clientStartupScripts, false);
// Close the script tag if needed
if (inScriptBlock) {
writer.Write(_owner.EnableLegacyRendering ? ClientScriptEndLegacy : ClientScriptEnd);
}
}
}
private bool RenderRegisteredScripts(HtmlTextWriter writer, ArrayList scripts, bool checkForScriptManagerRegistrations) {
writer.WriteLine();
bool inScriptBlock = false;
checkForScriptManagerRegistrations &= (_registeredResourcesToSuppress != null);
// Write out each registered script block
foreach (Tuple<ScriptKey, String, Boolean> entry in scripts) {
if (checkForScriptManagerRegistrations) {
ScriptKey scriptKey = entry.Item1;
if (scriptKey.IsResource) {
Dictionary<String, Object> resources;
if (_registeredResourcesToSuppress.TryGetValue(scriptKey.Assembly, out resources)
&& resources.ContainsKey(scriptKey.Key)) {
// this is a suppressed resource
continue;
}
}
}
if (entry.Item3) {
if (!inScriptBlock) {
// If we need script tags and we're not in a script tag, emit a start script tag
writer.Write(_owner.EnableLegacyRendering ? ClientScriptStartLegacy : ClientScriptStart);
inScriptBlock = true;
}
}
else if (inScriptBlock) {
// If we don't need script tags, and we're in a script tag, emit an end script tag
writer.Write(_owner.EnableLegacyRendering ? ClientScriptEndLegacy : ClientScriptEnd);
inScriptBlock = false;
}
writer.Write(entry.Item2);
}
return inScriptBlock;
}
internal void RenderWebFormsScript(HtmlTextWriter writer) {
const string webFormScript = "WebForms.js";
if (_registeredResourcesToSuppress != null) {
Dictionary<String, Object> systemWebResources;
if (_registeredResourcesToSuppress.TryGetValue(AssemblyResourceLoader.GetAssemblyFromType(typeof(Page)),
out systemWebResources) &&
systemWebResources.ContainsKey("WebForms.js")) {
return;
}
}
writer.Write(IncludeScriptBegin);
writer.Write(GetWebResourceUrl(_owner, typeof(Page), webFormScript, htmlEncoded: true, scriptManager: _owner.ScriptManager));
writer.Write(IncludeScriptEnd);
// Render the fallback script for WebForm.js
if (_owner.ScriptManager != null && _owner.ScriptManager.EnableCdn && _owner.ScriptManager.EnableCdnFallback) {
var localPath = GetWebResourceUrl(_owner, typeof(Page), webFormScript, htmlEncoded: true, scriptManager: _owner.ScriptManager, enableCdn: false);
if (!String.IsNullOrEmpty(localPath)) {
writer.Write(ClientScriptStart);
writer.Write(@"window.WebForm_PostBackOptions||document.write('<script type=""text/javascript"" src=""" + localPath + @"""><\/script>');");
writer.Write(ClientScriptEnd);
}
}
writer.WriteLine();
}
private interface IEventValidationProvider {
// Gets an object that - when serialized and encrypted - is the outbound __EVENTVALIDATION field value.
object GetEventValidationStoreObject();
// Returns a value denoting whether this (uniqueId, argument) tuple is valid for the current postback.
bool IsValid(string uniqueId, string argument);
// Registers the tuple (uniqueId, argument) as a valid event for the next postback.
void RegisterForEventValidation(string uniqueId, string argument);
// Given the deserialized form of an incoming __EVENTVALIDATION field, tries to load the valid
// event references for this postback. Returns true on success, false on failure.
bool TryLoadEventValidationField(object eventValidationField);
}
// provides a more secure implementation of event validation (fix for DevDiv #233564)
private sealed class DefaultEventValidationProvider : IEventValidationProvider {
private readonly ClientScriptManager _clientScriptManager;
private EventValidationStore _inboundEvents; // events which are valid for the current postback
private EventValidationStore _outboundEvents; // events which will be valid on the next postback
internal DefaultEventValidationProvider(ClientScriptManager clientScriptManager) {
_clientScriptManager = clientScriptManager;
}
public object GetEventValidationStoreObject() {
// We only produce the object to be serialized if there is data in the store
if (_outboundEvents != null && _outboundEvents.Count > 0) {
return _outboundEvents;
}
else {
return null;
}
}
public bool IsValid(string uniqueId, string argument) {
return _inboundEvents != null && _inboundEvents.Contains(uniqueId, argument);
}
public void RegisterForEventValidation(string uniqueId, string argument) {
if (_outboundEvents == null) {
if (_clientScriptManager._owner.IsCallback) {
_clientScriptManager.EnsureEventValidationFieldLoaded();
// _outboundEvents could have been initialized by the call to EnsureEventValidationFieldLoaded.
if (_outboundEvents == null) {
_outboundEvents = new EventValidationStore();
}
}
else {
// Make a new store object and tie it to the outbound __VIEWSTATE field.
// (This is the only field which can have a null/empty 'target'.)
_outboundEvents = new EventValidationStore();
_outboundEvents.Add(null, _clientScriptManager._owner.ClientState);
}
}
_outboundEvents.Add(uniqueId, argument);
}
public bool TryLoadEventValidationField(object eventValidationField) {
EventValidationStore validatedIncomingEvents = eventValidationField as EventValidationStore;
if (validatedIncomingEvents == null || validatedIncomingEvents.Count < 1) {
return true; // empty collection is not an error condition
}
Debug.Assert(_outboundEvents == null);
string viewStateString = _clientScriptManager._owner.RequestViewStateString;
if (!validatedIncomingEvents.Contains(null, viewStateString)) {
return false; // error: this event validation store isn't associated with the incoming __VIEWSTATE
}
_inboundEvents = validatedIncomingEvents;
if (_clientScriptManager._owner.IsCallback) {
// Seed the outbound provider with the valid inbound values; clone so that any outbound values
// added during page processing aren't accidentally treated as valid inbound values.
EventValidationStore clonedEventValidationStore = validatedIncomingEvents.Clone();
_outboundEvents = clonedEventValidationStore;
}
return true;
}
}
// provides the legacy implementation of event validation (before DevDiv #233564)
private sealed class LegacyEventValidationProvider : IEventValidationProvider {
private readonly ClientScriptManager _clientScriptManager;
private ArrayList _validEventReferences;
private HybridDictionary _clientPostBackValidatedEventTable;
internal LegacyEventValidationProvider(ClientScriptManager clientScriptManager) {
_clientScriptManager = clientScriptManager;
}
private static int ComputeHashKey(String uniqueId, String argument) {
if (String.IsNullOrEmpty(argument)) {
return StringUtil.GetStringHashCode(uniqueId);
}
return StringUtil.GetStringHashCode(uniqueId) ^ StringUtil.GetStringHashCode(argument);
}
public object GetEventValidationStoreObject() {
// We only produce the object to be serialized if there is data in the store
if (_validEventReferences != null && _validEventReferences.Count > 0) {
return _validEventReferences;
}
else {
return null;
}
}
public bool IsValid(string uniqueId, string argument) {
if (_clientPostBackValidatedEventTable == null) {
return false;
}
#if DEBUGEVENTVALIDATION
String hashCode = uniqueId + "@" + argument;
#else
int hashCode = ComputeHashKey(uniqueId, argument);
#endif //DEBUGEVENTVALIDATION
return _clientPostBackValidatedEventTable.Contains(hashCode);
}
public void RegisterForEventValidation(string uniqueId, string argument) {
#if DEBUGEVENTVALIDATION
string key = uniqueId + "@" + argument;
#else
int key = ComputeHashKey(uniqueId, argument);
#endif //DEBUGEVENTVALIDATION
string stateString = _clientScriptManager._owner.ClientState;
if (stateString == null) {
stateString = String.Empty;
}
if (_validEventReferences == null) {
if (_clientScriptManager._owner.IsCallback) {
_clientScriptManager.EnsureEventValidationFieldLoaded();
if (_validEventReferences == null) {
_validEventReferences = new ArrayList();
}
}
else {
_validEventReferences = new ArrayList();
_validEventReferences.Add(
StringUtil.GetStringHashCode(stateString));
}
}
#if DEBUGEVENTVALIDATION
Debug.Assert(!_validEventReferences.Contains(key));
#endif //DEBUGEVENTVALIDATION
_validEventReferences.Add(key);
}
public bool TryLoadEventValidationField(object eventValidationField) {
ArrayList validatedClientEvents = eventValidationField as ArrayList;
if (validatedClientEvents == null || validatedClientEvents.Count < 1) {
return true; // empty collection is not an error condition
}
Debug.Assert(_clientPostBackValidatedEventTable == null);
int viewStateHashCode = (int)validatedClientEvents[0];
string viewStateString = _clientScriptManager._owner.RequestViewStateString;
if (viewStateHashCode != StringUtil.GetStringHashCode(viewStateString)) {
return false; // hash mismatch is an error condition
}
_clientPostBackValidatedEventTable = new HybridDictionary(validatedClientEvents.Count - 1, true);
// Ignore the first item in the arrayList, which is the controlstate
for (int index = 1; index < validatedClientEvents.Count; index++) {
#if DEBUGEVENTVALIDATION
string hashKey = (string)validatedClientEvents[index];
#else
int hashKey = (int)validatedClientEvents[index];
#endif //DEBUGEVENTVALIDATION
_clientPostBackValidatedEventTable[hashKey] = null;
}
if (_clientScriptManager._owner.IsCallback) {
_validEventReferences = validatedClientEvents;
}
return true;
}
}
}
[Serializable]
internal class ScriptKey {
[NonSerialized]
private Type _type;
private string _typeNameForSerialization;
private string _key;
private bool _isInclude;
private bool _isResource;
internal ScriptKey(Type type, string key) : this(type, key, false, false) {
}
internal ScriptKey(Type type, string key, bool isInclude, bool isResource) {
Debug.Assert(type != null);
_type = type;
// To treat nulls the same as empty strings, make them empty string.
if (key == null) {
key = String.Empty;
}
_key = key;
_isInclude = isInclude;
_isResource = isResource;
}
public Assembly Assembly {
get {
return _type == null ? null : AssemblyResourceLoader.GetAssemblyFromType(_type);
}
}
public bool IsResource {
get {
return _isResource;
}
}
public string Key {
get {
return _key;
}
}
public override int GetHashCode() {
return WebUtil.HashCodeCombiner.CombineHashCodes(_type.GetHashCode(), _key.GetHashCode(),
_isInclude.GetHashCode());
}
public override bool Equals(object o) {
ScriptKey key = (ScriptKey)o;
return (key._type == _type) && (key._key == _key) && (key._isInclude == _isInclude);
}
[OnSerializing()]
private void OnSerializingMethod(StreamingContext context) {
// create a string representation of _type
_typeNameForSerialization = System.Web.UI.Util.GetAssemblyQualifiedTypeName(_type);
}
[OnDeserialized()]
private void OnDeserializedMethod(StreamingContext context) {
// re-create _type from its string representation
_type = BuildManager.GetType(_typeNameForSerialization, true /*throwOnFail*/, false /*ignoreCase*/);
}
}
}
|