Development

Get login of current user in SharePoint with SPServices

SharePoint 2016 Logo

I guess SPServices is the best solution for SharePoint. We still have SharePoint 2010 and prepate to migrate to SharePoint 2016 through SharePoint 2013. But for current tasks which must be made immediately, we still use SharePoint 2010, but only without server code. Rather often we have to make custom views for other users. Read more»

SharePoint

SharePoint 2010. Fix error Type System.CodeDom.CodeBinaryOperatorExpression is not marked as authorized in the application configuration file 

In SharePoint 2010 once I had found a lot of errors in time of execution or publishing workflow processes: “(-1, -1) Type System.CodeDom.CodeBinaryOperatorExpression is not marked as authorized in the application configuration file.)”. It happened right after installation of Windows updates on server. Read more»

SharePoint

Backup MSSQL database with compression

To create a full backup of MS SQL Server database with compression use this SQL command: use YourDataBaseName go BACKUP DATABASE YourDataBaseName TO DISK = 'Z:\BACKUP_FILE_NAME.bak' WITH COMPRESSION According to database size and your server capabilities, backup time can vary.   Read more»

SQL and databases

Является ли значение числом в Javascript

Для того, чтобы определить, является ли значение переменной числом или нет, можно использовать встроенную функцию isNaN(). Название isNaN означает «is Not a Number». Соответственно, функция возвращает обратное значение от того, число это или нет, т. е. если значение переменной число, то функция вернет false (ложь), а если не число, то true (истину). Read more»

TypeScipt / Javascript

Popular Posts