Hello !
Mon site web est derrière un portail, je dois donc avoir toutes mes requêtes dans le même context.
Hors, mes redirections sont renvoyées au browser du client sans utiliser ce context pour les pages de l'aspnet_client.
Partie de la trace :
00:00:01.046 0.115 1490 GET 200 text/html; charset=utf-8 http://localhost/monsite/blank.aspx
00:00:01.173 0.076 202 GET 304 text/css http://localhost/monsite/CSS/Styles.css
00:00:01.175 0.098 202 GET 304 image/gif http://localhost/monsite/images/spacer.gif
00:00:02.344 0.011 0 GET (Cache) text/css http://localhost/monsite/CSS/Styles.css
00:00:02.361 0.093 194 GET 304 image/jpeg http://localhost/monsite/images/banner.jpg
00:00:02.363 0.098 194 GET 304 image/gif http://localhost/monsite/images/empty.gif
00:00:02.369 0.208 586 GET 403 text/html; charset=iso-8859-1 http://localhost/aspnet_client/system_web/1_1_4322/SmartNav.htm
00:00:02.389 0.099 586 GET 403 text/html; charset=iso-8859-1 http://localhost/aspnet_client/system_web/1_1_4322/WebUIValidation.js
00:00:02.495 0.097 578 GET 403 text/html; charset=iso-8859-1 http://localhost/aspnet_client/system_web/1_1_4322/SmartNav.js
00:00:04.162 0.100 714 GET 200 text/html; charset=utf-8 http://localhost/monsite/page.aspx
La trace que j'aimerai obtenir serait :
00:00:01.046 0.115 1490 GET 200 text/html; charset=utf-8 http://localhost/monsite/blank.aspx
00:00:01.173 0.076 202 GET 304 text/css http://localhost/monsite/CSS/Styles.css
00:00:01.175 0.098 202 GET 304 image/gif http://localhost/monsite/images/spacer.gif
00:00:02.344 0.011 0 GET (Cache) text/css http://localhost/monsite/CSS/Styles.css
00:00:02.361 0.093 194 GET 304 image/jpeg http://localhost/monsite/images/banner.jpg
00:00:02.363 0.098 194 GET 304 image/gif http://localhost/monsite/images/empty.gif
00:00:02.369 0.208 586 GET 403 text/html; charset=iso-8859-1 http://localhost
/monsite/aspnet_client/system_web/1_1_4322/SmartNav.htm
00:00:02.389 0.099 586 GET 403 text/html; charset=iso-8859-1 http://localhost
/monsite/aspnet_client/system_web/1_1_4322/WebUIValidation.js
00:00:02.495 0.097 578 GET 403 text/html; charset=iso-8859-1 http://localhost
/monsite/aspnet_client/system_web/1_1_4322/SmartNav.js
00:00:04.162 0.100 714 GET 200 text/html; charset=utf-8 http://localhost/monsite/page.aspx
Comment puis-je obliger les pages de la navigation coté client ajoutée à être lues depuis le site appelant ?
Merci !!!
