Tuesday 20 August 2019

The “&” character breaks Data that are stored in the web.config

//////////////// Inside the web.config file

Before


<appSettings>
<add key="Key" value="https://{s}.google.com/vt/lyrs=s&x={x}&y={y}&z={z}" />
  </appSettings>


After

<appSettings>

   <add key="Key" value="https://{s}.google.com/vt/lyrs=s&amp;x={x}&amp;y={y}&amp;z={z}" />  
  </appSettings>


No comments:

Post a Comment

Excel Sort values in ascending order using function TEXTJOIN

 Excel ::  Text ::  1,3,5,2,9,5,11 Result :: 1,2,3,5,5,9,11 Formula ::     TEXTJOIN ( ",",1,SORT(MID(SUBSTITUTE( A1 ,","...