Post Tagged with: "code"

Gyp ERR! Stack Error: Could Not Find Any Visual Studio Installation To Use
Visual C# (.NET)

Gyp ERR! Stack Error: Could Not Find Any Visual Studio Installation To Use

If you get error something like at below you should use the Visual Studio Installer to get the Desktop development with C++ workload in one of the Visual Studio versions you have installed in your machine. When […]

Update NPM To The Latest Stable Version
JavaScript

Update NPM To The Latest Stable Version

Firstly, open command prompt (cmd), terminal or powershell. Before update NPM to the latest version you can verify your version of NPM with this command: npm -v You can update […]

What Is React Hooks? What Is Used For?
JavaScript

What Is React Hooks? What Is Used For?

No More Classes! Back in October 2018, the React team released a version of React that we can now safely say was one of the most important releases in the […]

What Is Webpack, What Is Used For?
JavaScript

What Is Webpack, What Is Used For?

Webpack is a bundle creator for our javascript files. It is a module bundler javascript library. One of big software projects’s problem is that it includes too many script src […]

What Is ESLint, What Is Used For?
JavaScript

What Is ESLint, What Is Used For?

ESLint is a error control and code harmony (compatibility) control library for our JavaScript codes. You can define rules for with ESLint for all codes look at the same harmony. […]

What Is Babel, What Is Used For?
JavaScript

What Is Babel, What Is Used For?

If I give a example from a real life, you may imagine smoothly what Babel is, Babel is a simultaneous translator :) When I return to software development from real […]

ASP.NET’te AJAX ve Asenkron İşlemler (ScriptManager, UpdatePanel, ContentTemplate, Triggers, AsyncPostBackTrigger, PostBackTrigger)
Visual C# (.NET)

ASP.NET’te AJAX ve Asenkron İşlemler (ScriptManager, UpdatePanel, ContentTemplate, Triggers, AsyncPostBackTrigger, PostBackTrigger)

 C#‘ta AJAX ve Asynchronous işlemleri kullanabilmek için aşağıdaki ScriptManager kod parçacığını asenkron işlem yapacağınız her sayfaya eklemeniz gerekiyor ya da bir kere MasterPage‘ye ekleyip her sayfaya ayrı ayrı ekleme derdinden kurtulabilirsiniz. […]

system.web.httpexception: The GridView ‘NameOfGridView’ fired event RowDeleting which wasn’t handled
Visual C# (.NET)

system.web.httpexception: The GridView ‘NameOfGridView’ fired event RowDeleting which wasn’t handled

If you get the “system.web.httpexception: The GridView ‘NameOfGridView’ fired event RowDeleting which wasn’t handled” error: If you have a DELETE button, or whatever button which “CommandName“s property is “DELETE” in […]

C# ASP.NET DataGridView’i Temizlemek (Clear)
Visual C# (.NET)

C# ASP.NET DataGridView’i Temizlemek (Clear)

Merhaba arkadaşlar, C# ASP.NET projelerinizde DataGridView’i temizlemek için kullanabileceğiniz yöntemler tüm detaylarıyla aşağıdaki gibidir: 1) Aşağıdaki gibi satırları silebilirsiniz.*(1) 2) Aşağıdaki gibi DataTable’yi komple silebilirsiniz.*(2) 3) public void FillGrid(){…} tarzında […]

SQL Server Reporting Services’da (SSRS’de) Textbox’ın Expression’ı (fx) İçinde Alt Satıra Geçmek
SQL Server

SQL Server Reporting Services’da (SSRS’de) Textbox’ın Expression’ı (fx) İçinde Alt Satıra Geçmek

SQL Server Reporting Services’da textbox expression’ı içinde kodunu kullanarak alt satıra geçebilirsiniz. Bu kod bloğu sayesinde bir textbox’ı çok satırlı kullanabilirsiniz. İkinci bir çözüm olarak, Textbox’un markup type’ini HTML’ye çevirip […]