adsense

Sunday, November 21, 2021

CSS form action selector

 Only recently I got to know that we can actually style form action. The trick is to use body with form action as shown below. Even though  have used the class name id names can also be used.


body form[action="/SomeURL/DoSearch/"] .className {

    display: none !important;

    visibility:hidden !important;

}

Cheers,

Samitha

Sunday, November 14, 2021

Windows 2019 Server MSSQL Error 'The underlying provider failed on Open'

 If you are trying to migrate your .Net applications to a Windows 2019 Server you will most likely to encounter   MSSQL Error 'The underlying provider failed on Open'.

This can be fixed by Defining a new Windows Firewall rule for SQL Server (and for port 1433) on the server machine.


Cheers,

Samitha