TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Data Transfer
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sardar Mudassar Ali Khan (3)
Jitendra Mesavaniya (2)
Mahesh Chand (2)
Jalpa Dhola (1)
Vinay Ayinapurapu (1)
Shikha Tiwari (1)
Darshan Adakane (1)
Aman Gupta (1)
Amit Kumar (1)
Sandeep Sharma (1)
Ayush Gupta (1)
Jefferson S. Motta (1)
Zain Ul Hassan (1)
Sachin Kalia (1)
Tahir Ansari (1)
Sanjoli Gupta (1)
Ziggy Rafiq (1)
Ajay Kumar (1)
Abhishek Kumar Ravi (1)
Nakul Chaudhari (1)
Ankit Rai (1)
Kirtesh Shah (1)
Munib Butt (1)
Abhimanyu K Vatsa (1)
Amit Mohanty (1)
Mark Pelf (1)
Satya Prakash (1)
Rakesh (1)
Levent Camlibel (1)
Hasibul Haque (1)
Related resources for Data Transfer
No resource found
Passing Data from Power Automate to Excel sheet
9/17/2024 11:01:25 AM.
Office Scripts are a feature in Microsoft Excel to automate and customize repetitive tasks. It allows the users to create custom functions and automation sequences directly within the Excel interface,
Flow files from OneDrive to SharePoint
8/14/2024 5:14:55 AM.
This guide covers integration techniques, data transfer methods, and sync strategies to efficiently migrate and manage your files across these powerful cloud storage platforms, enhancing productivity
Leveraging Records for Data Transfer Objects (DTOs) in C# .NET
8/12/2024 4:20:42 AM.
This article explores how to leverage C# records for implementing Data Transfer Objects (DTOs) in .NET. It delves into the benefits of using records for immutable data structures, enhancing code reada
Functionality of DMA in C Programming
7/28/2024 1:08:57 PM.
Direct Memory Access (DMA) in C programming is a powerful technique for efficient memory management and data transfer. It allows peripherals to directly access memory without CPU intervention, enhanci
File Movement Tools and Services in Azure
7/9/2024 11:12:04 AM.
In this article we will see different ways tools used for file movement in Azure, typically involves transferring data between different storage services, locations, or accounts.
Understanding MapStruct in Spring Boot for Java Bean Mapping
7/9/2024 6:38:32 AM.
Explore MapStruct in Spring Boot for seamless Java Bean mapping. Discover how MapStruct simplifies object mapping between DTOs and entities, leveraging annotations for automated conversion.
@Input() And @Output() Decorator In Angular
6/12/2024 9:24:18 AM.
Learn how to efficiently exchange data between components in Angular using @Input and @Output decorators. Master component communication for seamless parent-to-child and child-to-parent data transfer.
Passing Data From Controller to View in ASP.Net MVC
5/29/2024 7:29:02 AM.
This article explains how to use ViewBag, ViewData, and TempData to pass data from a Controller to a View in ASP.NET MVC. Learn to implement these techniques in Visual Studio, understand their differe
JWT (JSON Web Token): The Future Of Secure Data Transfer
5/24/2024 5:13:43 AM.
JSON Web Tokens (JWTs) are a compact, secure method for representing claims between parties, widely used for session management and data transfer since their introduction.
Understanding Your Internet Speed Converting Mbps to MBps
5/24/2024 5:02:31 AM.
Understanding your internet speed is crucial for efficient online activities. This guide simplifies the conversion process from Mbps to MBps, helping you grasp the difference between megabits and mega
Passing Data From Controller To View With ViewData - Part Two
5/1/2024 11:04:07 AM.
This article will tell you almost everything about passing data from Controller to View in ASP.NET MVC using ViewData. I am writing this article to tell you the basic to advanced concepts about ways t
Upload a File Using File Transfer Protocol (FTP)
4/23/2024 7:21:47 AM.
Learn how to seamlessly upload files using File Transfer Protocol (FTP) in this comprehensive guide. Discover the step-by-step process, from setting up your FTP client to navigating directories and tr
Ways to Transfer Data in Angular
4/15/2024 4:08:35 AM.
This article explores various techniques for transferring data between components in Angular applications. It discusses the importance of efficient data communication within Angular's component-ba
What is DMA and How to Enable DMA in Windows 8
4/12/2024 6:30:47 AM.
DMA allows memory system control without CPU involvement, reducing CPU overhead during data transfer between memory and devices. Steps for enabling DMA in Windows 8 involve accessing Device Manager, n
Best Practices for Creating ASP.NET Core REST API using OpenAPI
4/9/2024 5:44:39 PM.
Learn best practices for developing ASP.NET Core REST APIs using OpenAPI. Follow Ziggy Rafiq's expert guidance to streamline your API development process and ensure optimal performance and scalabi
Streamlining Data Transfer with DTOs in .NET Core - C#
4/9/2024 11:40:48 AM.
Streamline data transfer in .NET Core with Data Transfer Objects (DTOs). Simplify and optimize application layers for enhanced performance and scalability.
What is Record Keyword/Function in C#?
4/3/2024 10:37:44 AM.
Records introduced in C# 9.0 represent a significant enhancement to the language's capability for handling data. This article aims to explore records in-depth, covering their syntax, features, and
Create Local FTP on Your Computer
3/1/2024 11:08:54 AM.
Setting up a local FTP server on your computer involves configuring file transfer protocol for efficient data exchange within your network. Through server setup and network configuration, users can se
Optimize ASP.NET Core MVC Data Transfer with Custom Middleware
2/1/2024 9:01:22 AM.
In ASP.NET Core, middleware components are used to handle requests and responses as they flow through the application's pipeline. These middleware components can be chained together to process req
Data Transfer in ASP.NET Core MVC Controllers with TempData
1/29/2024 11:20:18 AM.
In ASP.NET Core MVC, you can pass temporary data from one controller to another using TempData. TempData is a dictionary that can be used to share data between controllers during the current request a
Transfer Data From One Middleware to Another .NET Core Web API
12/26/2023 7:18:15 AM.
The intricacies of passing data between middlewares in .NET Core Web API applications. Dive into methods like HttpContext.Items, custom middleware options, dependency injection, and HTTP context reque
Creating Consistent ASP.NET Core Web API Responses with AutoMapper and DTOs
11/17/2023 5:40:18 AM.
Developing a robust ASP.NET Core Web API hinges on the subtle yet pivotal details of response structuring. Leveraging AutoMapper in tandem with well-designed Data Transfer Objects (DTOs) not only ensu
Data Transfer Without Parent and Child Component
10/31/2023 9:16:09 AM.
This content explains sharing data between Angular components via a service. It covers steps such as service creation, data sharing via click, and retrieval using data services.
C# 9.0 - Introduction To Init-Only Property
10/30/2023 9:02:09 AM.
C# 9.0 introduced a new feature called Init-Only Properties, enhancing the language's capabilities for defining immutable types. Init-only properties allow you to create read-only properties that
Using Records In C# 9.0
10/20/2023 7:26:18 AM.
C# 9.0 introduced a significant language feature known as records, which simplifies the creation of classes for immutable data. Records provide a concise and elegant way to define classes for storing
Various Ways to Pass Data From Controller to View in MVC
10/9/2023 11:31:47 AM.
In this article, we discuss how Controllers interact with Views and how you can pass data from a Controller to a View to render a response back to a client.
Data Transfer Objects (DTOs) in C#
9/19/2023 8:15:06 AM.
In the world of software development, Data Transfer Objects (DTOs) are vital for efficient data communication and manipulation. This article explains DTOs in C#, their importance, and practical usage.
C# - Value Object Pattern, Data Transfer Object Pattern
2/22/2023 10:36:56 AM.
Beginner’s tutorial on Value Object (VO) Patten and Data Transfer Object (DTO) Pattern with examples
How To Disable Network Discovery In Windows 8
12/12/2019 3:53:47 AM.
This article describes disabling Network Discovery In Windows 8 and Windows 7.
Transferring data from one ListBox to another in WPF
11/15/2018 10:44:39 PM.
This article discusses how we can transfer items from one ListBox to another in WPF.
Textbox Data Transfer One Page to Another Page Using Various ASP.NET Techniques
8/19/2015 12:43:32 AM.
This article shows various techniques for doing a textbox data transfer from one page to another page using ASP.Net.
Data Transfer from SQL Server to Excel
10/20/2012 3:34:52 AM.
In this application, we will see how we can transfer data from Microsoft SQL Server into Excel spreadsheet.
Convert your Data Transfer Object to XML (XML Serialization and Deserialization)
9/29/2012 5:28:26 AM.
How to convert Business Entity/ Data Transfer Object to XML string and also XML string to Business Entity/ Data Transfer Object.
An Introductory Concept of XML
6/25/2007 8:05:00 AM.
This article shows that what is XML and why we use XML. What are the advantages of using XML?