Sunday 29 September 2013

Prevent to web serveice on browser url in asp.net

in web.config file
- <system.web>
    <customErrors mode="On" defaultRedirect="~/CustomeErrorPage.aspx?"/>
<!--<sessionState mode="InProc" cookieless="false" timeout="15"/>-->
    <pages validateRequest="false"></pages>
    <webServices>
      <protocols>
        <remove name="Documentation" />
      </protocols>
    </webServices>
  </system.web>

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 ,","...