EDUDOTNET

Monday, October 17, 2016

SQL Server blocked access to STATEMENT 'OpenRowset/OpenDatasource' of component 'Ad Hoc Distributed Queries'

When I try to run query with "SELECT * FROM OPENROWSET" than I`m getting error: "Msg 15281, Level 16, State 1, Procedure GetUserData, Line 10SQL Server blocked access to STATEMENT 'OpenRowset/OpenDatasource' of component 'Ad Hoc Distributed Queries' because this component is turned off as part of the security configuration for this server. A system...

Friday, July 15, 2016

PayPal Refund Adaptive Chained Payment

Refund Adaptive Chained Payment Adaptive payments handle payments between a sender of a payment and one or more receivers of the payment. You are an application owner, such as a merchant that owns a website, the owner of a widget on a social networking site, the provider of a payment application on cell phones, and so on. Your application is the...

Tuesday, May 31, 2016

Email Sending Using Gmail Account In C#

Email Sending Using Gmail Account In C# - Following gmail smtp address is:- - smtp.gmail.com and port:- 25, 587 - TLS - same server and port:- 465 - SSL - Log on using your gmail account use for sending mail and go to "Less secure apps" and turn on it. url: https://www.google.com/settings/security/lesssecureapps - You need to enable allowing...

Monday, March 14, 2016

How to get javascript variable to retain value after page refresh?

This is possible to using cookies, localStorage or sessionStorage etc. We can use localStorage for it. we need to set a varibale that should be reflected in next pages or after reload the page.  eg.: var myval = "xyz"; localStorage.setItem("myval", myval); after that we can get the stored value from localStorage by page reloaded/Refresh... like: var...

C# Attributes Overview [What are attributes and why do we use it?]

C# Attributes Overview Attributes are elements that allow you to add declarative information to your programs. This declarative information is used for various purposes during run-time and can be used at design time by application development tools. Attributes provide a powerful method of associating declarative information with...

Wednesday, February 3, 2016

Additional information: Could not load file or assembly 'Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies.

Additional information: Could not load file or assembly 'Newtonsoft.Json, Version=4.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) I having problem with NewtonSoft.json v4.5 when I added some...