Blazor WebAssembly Get IP Address

You can use a third party API, such as Ipify, to get the IP address of the current request in Blazor. The script api.ipify will return the IP address in JSON format. But this is a workaround. As of now, there is no way to achieve this. In the following code snippet, the IP address... » read more

SonicWall VPN Clients NetExtender

https://www.sonicwall.com/products/remote-access/vpn-clients/ SonicWall’s SSL VPN NetExtender allows you to provide easy and secure access to Windows and Linux users. This transparent software enables remote users to securely connect and run any application on  the company network. Users can upload and download files, mount network drives, and access resources as if they were on the local network.

TEXTIMAGE_ON

Indicates that the text, ntext, image, xml, varchar(max), nvarchar(max), varbinary(max), and CLR user-defined type columns (including geometry and geography) are stored on the specified filegroup. TEXTIMAGE_ON is not allowed if there are no large value columns in the table. TEXTIMAGE_ON cannot be specified if <partition_scheme> is specified. If “default” is specified, or if TEXTIMAGE_ON is not specified... » read more

SSPI handshake failed

Error SSPI handshake failed with error code 0x8009030c, state 14 while establishing a connection with integrated security; the connection has been closed. Reason: AcceptSecurityContext failed. The Windows error code indicates the cause of failure. The logon attempt failed Alert SQL Server Log

JavaScript and Blazor without index.html reference

JavaScript Isolation in Blazor WebAssembly From the .NET 5 (RC 1) version, we are able to isolate our JavaScript code as a standard JavaScript module. This is beneficial because We no longer have to add our JS functions to the global window namespace We don’t have to manually import JavaScript files in the index.html file myscript.js Razor... » read more

Print Barcode Labels using Microsoft Word

Use Mailings -> Labels -> 5160 Address Labels (10×3=30 labels/page) Create an excel with 30 records with “Barcode” title and use “Select Recipients” -> “Use an Existing List” to read in the data. Use the following to print out barcode… Change MERGEFIELD to MERGEBARCODE and add CODE128 at the end. { MERGEBARCODE Barcode CODE128 }... » read more

SendGrid: Using Template via Web API

Data Field For Each If Then Sources: https://htmlemail.io/blog/custom-sendgrid-templates https://sendgrid.com/docs/api-reference/ https://sendgrid.com/docs/ui/sending-email/how-to-send-an-email-with-dynamic-transactional-templates/ https://sendgrid.com/docs/for-developers/sending-email/using-handlebars/#handlebarjs-reference https://docs.sendgrid.com/for-developers/sending-email/using-handlebars#iterations https://github.com/sendgrid/email-templates/tree/master/dynamic-templates/receipt

SendGrid Error: Status Code Forbidden

Getting this error when calling the web API. Error only occurs with certain from email address. Status Code: Forbidden Issue: I was having the same problem. I discovered that the emails from of my application and the sender authentication of the SendGrid API need to be the same. Fix: To fix this error you need go... » read more