Skip to content
  • Facebook
  • GitHub
  • YouTube
  • Pinterest
My Tec Bits
  • Home
  • Microsoft
    • .Net
      • ASP.NET
      • MVC
      • Visual Studio
    • IIS
    • SQL Server
      • SQL Server 2019
      • SQL Server 2017
      • SQL Server 2016
      • SQL Server 2014
      • SQL Server 2012
      • SQL Server 2008
    • Windows OS
  • Web Development
    • Java Script
    • Jquery
    • Python
    • Bootstrap
    • Zurb Foundation
    • Web Security
  • More
    • macOS
    • Reviews
  • Online Tools
    • Fitness Calculators
    • Encoders & Decoders
    • Cryptography
    • Unit Converters
    • Math. Calculators
    • Date & Time Calculators
    • Finance Calculators

.Net

Articles related to .Net technologies like ASP.NET, C#, VB.NET, etc..

Installing .NET SDK in Linux Mint and debugging C# code using VS Code

Jun 21, 2024 by Beaulin Twinkle
.NET solution in VS Code explorer panel

In this article, we will discuss about installing .NET SDK on Linux Mint workstation and debugging C# code in Visual Studio Code.

Categories .Net, Linux Tags .NET Framework, C# (C Sharp), Linux distribution, Linux Mint, Visual Studio Code Leave a comment

Generating random number in C# 

Jun 6, 2024 by Beaulin Twinkle
Generating random number in C# 

Generating random number in C# is required in several situations. Let’s see how to generate random numbers in C# with example.

Categories .Net Tags C# (C Sharp) Leave a comment

How to prevent VS Code from replacing an already opened preview tab with a subsequently opened one?

Mar 13, 2024 by Beaulin Twinkle
prevent VS Code from replacing an already opened preview tab with a subsequently opened one

Let us see few simple ways to prevent VS Code from replacing an already opened preview tab with a subsequently opened one.

Categories .Net Tags Visual Studio Code Leave a comment

How to decode ASCII to text in C#?

Aug 3, 2023 by Beaulin Twinkle
Decode ASCII to text in C#

Learn how to decode ASCII to text in C# with an example. Understand the process of converting ASCII-encoded data back into readable text using the Encoding.ASCII.GetString() method.

Categories .Net Tags C# (C Sharp), C# 7.0 (C Sharp) Leave a comment

How to encode a string to ASCII in C#?

Aug 10, 2023Jul 19, 2023 by Beaulin Twinkle
Encode a string to ASCII in C#

In C#, developers have access to a wide range of encoding options, including the popular American Standard Code for Information Interchange (ASCII). In this article, we will see how to encode a string to ASCII in C#.

Categories .Net Tags C# (C Sharp), C# 7.0 (C Sharp) Leave a comment

The Benefits and Drawbacks of .NET Development

Nov 16, 2022Nov 16, 2022 by My Tec Bits.
The Benefits and Drawbacks of .NET Development

This article intends to provide helpful information to make your search for a suitable development environment easier by describing the benefits and drawbacks of using .NET as a software development platform.

Categories .Net Tags .NET Framework Leave a comment

How to prevent connection pool problems between ASP.NET and SQL Server?

Oct 27, 2022 by Beaulin Twinkle
Prevent connection pool problems between ASP.NET and SQL Server

If you are not taking precautions while using connection pooling, you may encounter errors. Here are a few of the common errors and ways to prevent connection pool problems.

Categories .Net, SQL Server Tags ASP.NET, ASP.NET Core, ASP.NET Web Forms Leave a comment

How to calculate mode in C#?

Oct 19, 2022Jul 29, 2022 by Beaulin Twinkle
Calculate Mode in C#

Here is the sample code to calculate mode in C# for a set of numbers in an array. This method will get you single mode or multi modes.

Categories .Net Tags .NET Framework, .NET Framework 4.8, C# (C Sharp), C# 7.0 (C Sharp) Leave a comment

How to calculate mean In C#?

Oct 19, 2022Jul 21, 2022 by Beaulin Twinkle
Calculate mean In C#.Net

It is easy to calculate mean in C#, as arithmetic mean is just the average of the collection of numbers. Here is the sample code.

Categories .Net Tags .NET Framework, .NET Framework 4.8, C# (C Sharp) Leave a comment

How to calculate median in C#?

Oct 19, 2022Jul 20, 2022 by Beaulin Twinkle
Calculate median in C# with your own code

In this article we will see how to calculate median in c# .Net by coding the median algorithm by yourself and by using a 3rd party library.

Categories .Net Tags .NET Framework, .NET Framework 4.8, C# (C Sharp) Leave a comment

Error: ‘SqlConnection’ could not be found in the namespace (Solved)

Dec 11, 2020 by Beaulin Twinkle
SqlConnection Could Not Be Found

Error CS1069 The type name ‘SqlConnection’ could not be found in the namespace ‘System.Data.SqlClient’. This type has been forwarded to assembly ‘System.Data.SqlClient, Version=0.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a’ Consider adding a reference to that assembly.

Categories .Net Tags .NET 5, .NET Core, C# (C Sharp), Visual Studio, Visual Studio 2019 9 Comments

How to execute an SQL Server stored procedure from a C# program?

Dec 11, 2020 by Beaulin Twinkle
Execute An SQL Server Stored Procedure From A C# Program

Today, let us see how to execute an SQL Server Stored Procedure from a C# program.

Categories .Net, SQL Server Tags C# (C Sharp), SQL Server 2019, Visual Studio 2019 Leave a comment

How to compare contents of two files in Visual Studio Code?

Sep 4, 2020Sep 2, 2020 by Beaulin Twinkle
compare contents of two files in Visual Studio Code

Lately I got questions asking for a quick lightweight tool to compare code files. Even though there are several tools available in the market, I use Visual Studio Code to quickly compare contents of two files.

Categories .Net Tags Visual Studio Code 6 Comments

Using Bootstrap Table With GridView In ASP.NET

Jul 31, 2019May 25, 2018 by Beaulin Twinkle
Bootstrap Table With GirdView - Header styling

Trick for using bootstrap table with GridView in ASP.NET web forms. You can use bootstrap table classes in GridView in web form with some additional setting.

Categories .Net, Internet & Web Dev., Microsoft, Twitter Bootstrap Tags ASP.NET, ASP.NET Web Forms, Bootstrap 4, Tips, Visual Studio, Visual Studio 2017 2 Comments

How To Make .NET Application To Run As Administrator

May 9, 2018 by Beaulin Twinkle
.NET App To Run As Administrator - UAC Prompt

How to force a .Net application to run as administrator on windows? Here is step by step illustration to force a dot net client server application to run as administrator and the trick to bypass UAC prompt while launching it.

Categories .Net, Windows Tags Visual Studio, Visual Studio 2017, Windows 10 Leave a comment

Returning Multiple Values From A function in C#

Aug 25, 2022Apr 26, 2018 by Beaulin Twinkle
Return Multiple Values From A Function

How to return multiple values from a function in c#. Here are few of the methods for returning multiple values from a c# function with examples.

Categories .Net Tags C# (C Sharp), C# 7.0 (C Sharp), Visual Studio, Visual Studio 2017 Leave a comment

Combining URLs or URIs in ASP.NET

Nov 2, 2018Feb 11, 2018 by Beaulin Twinkle
Combining URLs in ASP.NET

How to combine URLs or URIs in ASP.NET? Best way for joining or combining URLs or URIs in razor or c# in ASP.NET.

Categories .Net Tags ASP.NET Leave a comment

How To Write Data Into CSV File In c#?

Aug 18, 2018Oct 20, 2017 by Beaulin Twinkle
Write Data Into CSV C# Sample Code

How to create a .CSV file in C# ? Creating csv file from c# application is quiet simple. Here are the methods to do it. Write data into csv file in c#.

Categories .Net Tags C# (C Sharp) Leave a comment

HTTP Error 404.13 – Not Found: deny a request that exceeds the request content length

Aug 18, 2018Oct 14, 2017 by Beaulin Twinkle
HTTP Error 404.13

Solution for HTTP Error 404.13 – Not Found: The request filtering module is configured to deny a request that exceeds the request content length.

Categories .Net, IIS Tags ASP.NET, IIS 7, IIS 7.5, IIS10 Leave a comment

ASP.NET Core Razor Tag Helper IntelliSense in Visual Studio 2017

Jul 31, 2019Jun 27, 2017 by Beaulin Twinkle
Razor Tag Helper IntelliSense 01

How to activate ASP.NET Core Razor Tag Helper IntelliSense in Visual Studio 2017? Steps to install Razor Language Service extension for activating IntelliSense in Tag Helpers.

Categories .Net Tags ASP.NET Core, ASP.NET Core MVC, Core MVC 1, Razor, Visual Studio, Visual Studio 2017 Leave a comment
Older posts
Page1 Page2 … Page4 Next →

Article Categories

  • Android (2)
  • Apple (22)
    • macOS (22)
  • Internet & Web Dev. (152)
    • DNN (4)
    • Java Script (10)
    • Jquery (8)
    • PHP (7)
    • Python (83)
    • Twitter Bootstrap (25)
    • Web Security (11)
    • Zurb Foundation (6)
  • Linux (4)
  • Microsoft (318)
    • .Net (69)
    • IIS (10)
    • Internet Explorer (3)
    • Office (2)
    • SQL Server (225)
    • Windows (24)
  • Networks And Distributed Systems (2)
  • Oracle (7)
    • Java (2)
    • Oracle Database (5)
  • Others (6)
  • Reviews (10)

Recent Articles

  • Installing .NET SDK in Linux Mint and debugging C# code using VS Code Jun 21, 2024
  • Generating random number in C#  Jun 6, 2024
  • How to calculate running total in SQL Server? Apr 27, 2024
  • How to import XML data into SQL Server using SELECT query? Apr 10, 2024
  • How to prevent VS Code from replacing an already opened preview tab with a subsequently opened one? Mar 13, 2024
  • Separating letters and numbers from strings in SQL Server Mar 6, 2024
  • How to call or run another application from python code? Feb 15, 2024
  • How to store images in SQL Server? Jan 17, 2024
  • Error: A table that has FILESTREAM columns must have a nonnull unique column with the ROWGUIDCOL property. Jan 8, 2024
  • Fix for Error: “FILESTREAM feature is disabled” while adding FILESTREAM Jan 4, 2024

Subscribe MyTecBits.com

Online Tools

  • Fitness Calculators
  • Encoders & Decoders
  • Cryptography
  • Unit Converters
  • Math. Calculators
  • Date & Time Calculators
  • Finance Calculators

Popular Articles

  • Joining Tables from Databases on Different SQL Servers
  • Where is SQL Server Configuration Manager?
  • Formatting SQL statements in SSMS
  • Convert DateTime To YYYY-MM-DD Format In SQL Server
  • Auto Generate INSERT Statements for a Table in SQL Server
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use. Learn more...
  • Home
  • About Us
  • Contact Us
  • Site Map
  • Terms Of Use
  • Privacy Policy
© 2012 - 2025 My Tec Bits. All Rights Reserved.