Encoding UTF-8, UTF-16, UTF-32

UTF-8 has an advantage in the case where ASCII characters represent the majority of characters in a block of text, because UTF-8 encodes these into 8 bits (like ASCII). It is also advantageous in that a UTF-8 file containing only ASCII characters has the same encoding as an ASCII file. UTF-16 is better where ASCII... » read more

Syncfusion Grid CRUD Operation

Note: In order for the CRUD operation to work, you must have the following… A Primary Key column defined in the grid. The source of the grid must be a List. IEnumerable will not work. You can either use the OnActionBegin or OnActionComplete grid events to handle the CRUD operations. Example

SQL Server Agent Stuck With No History

Issue: SQL Server Agent jobs stuck in running state. No errors and no history. When trying to view history displayed error “Cannot display activity data”. SQL Server Agent Error Logs displays error message… Message: [298] SQLServer Error: 53, A network-related or instance-specific error has occurred while establishing a connection to SQL Server. Server is not... » read more

Blazor Textbox OnChange

Use input change event to get the changed value in onchange event argument. If you bind using the two-way bind to value property, it will automatically change the value into the value property. or