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 Storage
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sarthak Varshney (7)
Alagunila Meganathan (7)
Abiola David (5)
Gunasekaran Palani (4)
Nikunj Satasiya (4)
Ayush Gupta (4)
Darshan Adakane (3)
Siddhesh Chavan (3)
Thiago Vivas (3)
Sanjay Kumar (2)
Aman Gupta (2)
Khoday Akilesh (2)
Lokendra Singh (2)
Habibul Rehman (2)
Debasis Saha (2)
Prashanth Chindam (2)
Rinki (2)
Vikas Singh (2)
Shenbagapandiyan P (2)
Jayraj Chhaya (1)
Sangeetha S (1)
Sigar Dave (1)
Aiswarya E V (1)
Shiv Sharma (1)
Manpreet Singh (1)
Manoj Kalla (1)
Nandan Hegde (1)
Viknaraj Manogararajah (1)
Kuppu Swami (1)
Nidhi Kumari (1)
Jamil Moughal (1)
Shikha Tiwari (1)
Uday Dodiya (1)
Mohamed Shifan (1)
Jefferson S. Motta (1)
Vinodh Kumar (1)
Viral Jain (1)
Ramakrishna (1)
John Godel (1)
Dharmeshwaran S (1)
Abdurrehman Malik (1)
Sibeesh Venu (1)
CSharp TV (1)
Jaimin Shethiya (1)
Pankaj Patel (1)
Pramod Thakur (1)
Kunj Sangani (1)
Lalit Bansal (1)
Allani Saikumar (1)
Prakashkumar Sahoo (1)
Najath Risni (1)
Vulpes (1)
Joseph Thomas (1)
Onkar Sharma (1)
Kokul Jose (1)
Abhishek Chadha (1)
Sean Franklin (1)
Shervin Cyril (1)
Usman Sheikh (1)
Related resources for Storage
No resource found
What is a Vault in DevOps
11/20/2024 4:48:43 AM.
A Vault in DevOps is a secure tool used for managing sensitive data like passwords, API keys, certificates, and other secrets. It ensures encryption, access control, and auditing of secrets across dif
Temporary Tables vs Table Variables in SQL Server Explained
11/19/2024 10:49:20 AM.
This article explores their key distinctions, advantages, and ideal applications, helping users understand when to use each for better query performance and resource optimization.
Build an Azure Blob Trigger Function to Compress Images with Sharp
11/12/2024 5:17:35 AM.
This guide walks through creating an Azure Blob Trigger Function that compresses images uploaded to Azure Storage using the Sharp image processing library. It covers setting up Azure Blob Storage, co
How to Store Temporary Information in Table Like Format in C#?
10/28/2024 8:56:49 AM.
In this article, we will learn how to manipulate and manage in-memory data effectively, allowing for quick access and modifications while maintaining a structured format for your applications.
Learn SharedPreferences in Android
10/22/2024 7:19:52 AM.
SharedPreferences is an Android feature used to store small amounts of data in key-value pairs. It allows apps to save user preferences, settings, and simple data across sessions.
SharePoint : Optimize SharePoint Storage with Version History Limits
10/16/2024 10:38:11 AM.
Discover how Microsoft's new version history limits (currently in preview) can help streamline document management and optimize SharePoint and OneDrive storage. Learn how to configure organization
Document Libraries in Microsoft SharePoint
10/16/2024 5:57:37 AM.
Microsoft SharePoint's document libraries provide a centralized storage solution for teams to manage and collaborate on files. Unlike OneDrive, which focuses on personal storage, document librarie
What is Alibaba Cloud Object Storage Service (OSS)
10/8/2024 3:55:37 AM.
Discover Alibaba Cloud OSS, scalable and secure cloud storage for unstructured data, offering high durability, cost-effectiveness, and global accessibility.
Read Multiple PARQUET Files from GCS to Azure SQL Database using Azure Data Factory
10/7/2024 4:56:25 AM.
In this Data Engineering episode, I covered how to read multiple sales parquet files resident in Google Cloud Storage to Azure SQL Database leveraging Azure Data Factory.
What is the Collect Function in Power Apps?
9/30/2024 8:32:00 AM.
Power Apps enables users to create custom applications with minimal coding, utilizing features like the Collect function for data management. This function allows dynamic storage of various data types
How To Execute SQL In SharePoint 2013 And Office 365 Using Nintex WorkFlows
9/27/2024 10:13:52 AM.
This article guides you through executing SQL in SharePoint 2013 and Office 365 using Nintex Workflows. It covers creating a Dev Testing list, adding the "Execute SQL" action, and configurin
How to Manage ViewState in ASP.NET?
9/23/2024 9:16:18 AM.
This article explains various methods of managing state in ASP.NET, including ViewState, Session, Application, and Cookies. It focuses on ViewState, its lifecycle, enabling/disabling at the page or co
Data Virtualization from Azure Blob Storage in Azure SQL Database
9/16/2024 5:17:34 AM.
This solution enables Azure SQL Database to directly access and read files from Azure Blob Storage using External REST Endpoints, bypassing the need for physical data loading. It leverages database-sc
Deploying Simple Storage Service (S3) Account in AWS
9/12/2024 5:07:32 AM.
Learn how to deploy and configure an Amazon S3 (Simple Storage Service) account in AWS. This guide covers setting up your AWS account, creating S3 buckets, and managing storage efficiently. Ideal for
🖥️ How to Create an Azure Storage Account
9/11/2024 9:34:52 AM.
Azure Storage provides cloud storage with features like high availability, security, and scalability. It includes Blob storage for unstructured data (images, videos), and Azure Files for managed file
Introduction to SQL Server & Its History
9/2/2024 7:10:06 AM.
Learn how to create, manage, and query databases using SQL Server, with a focus on essential concepts like database design, data storage, and SQL queries. Perfect for beginners aiming to build a stron
What Is IndexedDb And How To Use It?
9/2/2024 5:08:43 AM.
IndexedDB is a NoSQL database API provided by browsers for managing large amounts of structured data. It allows developers to store and retrieve data, supporting offline capabilities in web applicatio
File Structure: Writing and Reading Records Efficiently
8/29/2024 8:59:42 AM.
In C programming, fwrite() and fread() manage data storage and retrieval. fwrite() writes structures to a binary file, while fread() reads them back. This involves defining a structure, opening a file
Learn LocalStorage In JavaScript
8/28/2024 9:17:13 AM.
LocalStorage is a JavaScript feature that allows developers to store key-value pairs in a user's browser, persisting data even after the browser is closed. It's ideal for saving user preferenc
Dynamic Forms and Flexible Data Storage for Web Apps
8/26/2024 4:03:17 AM.
This guide covers responsive form creation, scalable data management, and seamless backend integration, offering strategies for efficient user input handling and adaptable storage solutions.
Store Java Errors in Database with Dynamic Error-Based Logging
8/23/2024 4:49:27 AM.
It covers setting up logging frameworks, capturing runtime errors, and ensuring data persistence for effective error management and tracking. Ideal for improving application reliability and diagnosti
Create Azure File Share Using Azure Portal
8/22/2024 4:09:49 AM.
Azure File Share is a cloud-based storage service by Microsoft Azure that enables you to store, access, and share files securely over the internet. It supports both Windows and Linux systems, offers e
Learn to Shrink a Microsoft SQL Server Database Programatically
8/20/2024 4:59:45 AM.
Shrinking a SQL Server database reduces file size by reclaiming unused space in data and log files. This can optimize disk usage, especially in storage-constrained environments. However, it can cause
Azure Databricks: Create Storage Credentials and External Locations to ADLS Gen2
8/16/2024 5:26:02 AM.
In this episode, I walked you through how to create storage credentials and external locations to ADLS Gen2 in Azure Databricks.
What are Azure Management Groups?
8/16/2024 5:07:05 AM.
Azure management levels include Management Groups, Subscriptions, Resource Groups, and Resources. Management Groups are at the top, inheriting policies across all subscriptions. You can create and man
Managed Private Endpoints in Microsoft Fabric
8/13/2024 5:35:53 AM.
Managed private endpoints in Microsoft Fabric enhance data security by enabling secure, private connections to data sources like Azure Storage and SQL databases, bypassing public internet exposure. Th
Getting Started With Azure Scheduler
8/7/2024 10:54:40 AM.
Azure Scheduler lets you automate tasks by scheduling HTTP, HTTPS, or queue-based actions. It helps manage and invoke scheduled jobs, whether hosted on Azure, on-premises, or elsewhere. You can create
Power of Amazon Storage Services for Seamless Data Management
8/7/2024 9:20:05 AM.
AWS provides a diverse range of storage services each designed to meet specific needs from high-frequency access and archiving to disaster recovery. These services offer scalable, durable, and secure
What are Azure Resources and Resource Groups
8/2/2024 6:21:11 AM.
Azure Resources are individual cloud services like virtual machines, app services, and storage accounts. Each resource serves a specific purpose, such as data storage or application hosting. Azure Res
Basics of Working With Windows Azure Table Storage
8/2/2024 5:08:21 AM.
Learn how to efficiently store and manage large datasets in the cloud, explore key features, and get practical tips for data organization, querying, and performance optimization in Azure Table Storage
Training a Small Language Model AI Using Text Files, C#, and SQL Database
7/29/2024 10:57:22 AM.
This article guides you through training a small language model AI using text files, C#, and an SQL database. It covers preparing text data, setting up an SQL database, tokenizing data with C#, and q
Data Management with Azure Blob Storage
7/29/2024 6:33:30 AM.
Discover the power of Azure Blob Storage for efficient data management. Learn how to leverage scalable and secure cloud storage solutions for data backup, archiving, and optimization.
Google Storage Services for Robust Data Management Solutions
7/29/2024 6:31:00 AM.
Google Cloud Storage offers versatile solutions including object, block, and file storage. It provides scalable, secure, and cost-effective options like Persistent Disk, Filestore, Archive, Nearline,
Next-Gen Collaboration: Harnessing Microsoft 365 Core Services
7/25/2024 7:08:31 AM.
Microsoft 365 Core Services include Exchange Online for email, SharePoint Online for document management, Microsoft Teams for collaboration, Yammer for internal communication, Intune for device manage
Uploading Files to Azure Blob Storage with .NET Core
7/25/2024 5:20:07 AM.
Learn how to upload files to Azure Blob Storage using .NET Core in this comprehensive guide. We'll walk you through setting up your Azure Storage account, configuring your .NET Core application, a
Optimize Storage Costs and Efficiency with VMware Virtualization
7/14/2024 5:49:04 AM.
Learn effective strategies to minimize storage expenses through optimization and efficient data management
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.
A Comprehensive Look at AWS Cloud: History, Evolution
7/4/2024 7:47:24 AM.
Amazon Web Services (AWS) revolutionized IT with its comprehensive cloud platform. Since 2002, AWS has evolved from offering basic cloud services like Amazon S3 and EC2 to over 200 advanced services.
Access Azure Storage Account Container from WinSCP Using SFTP
6/24/2024 11:31:18 AM.
Learn how to securely access Azure Storage Account containers via WinSCP using SFTP. Follow steps to enable SFTP on Azure, configure a local user for access, install WinSCP, and set up the connection.
Upload And Download File To Azure Blob Storage Using C#
6/20/2024 10:12:14 AM.
Learn how to seamlessly upload and download files to Azure Blob Storage using C#. This guide covers setting up your Azure Storage account, configuring Blob containers, and utilizing the Azure Storage
Creating An Azure VM From The VHDX/VHD File
6/19/2024 9:46:05 AM.
Learn how to migrate an on-premises Virtual Machine to Azure using VHD files. Convert VHDX to VHD, upload to Azure Blob storage, create a Managed Image, and deploy an Azure VM using PowerShell command
Implementing Fabric Data Pipeline Triggers & Schedule
6/18/2024 10:18:36 AM.
This video shows how to implement Fabric Data Pipeline Triggers & Schedule to seamlessly and continuously ingest CSV files from Azure Blog Storage to Fabric Warehouse without intervention!
Understanding Caching in Python
6/18/2024 4:19:18 AM.
Understanding Caching in Python" explores the concepts and techniques of caching to optimize performance in Python applications. Learn how caching improves data retrieval speed, reduces computati
Mastering Azure Blob Storage - Azure Essentials Series - Ep: 3
6/17/2024 8:21:52 AM.
In this episode, we'll explore the fundamentals of Azure Blob Storage, its key features.
Mastering Azure Blob Storage with ASP.NET Core MVC
6/16/2024 2:50:12 PM.
Azure Blob Storage offers scalable, cost-effective storage for unstructured data like images and documents. Integrated seamlessly with ASP.NET Core MVC, it provides secure uploads, downloads, and mana
Access Storage In Azure Function App With Managed Identity
6/16/2024 2:31:47 PM.
In modern cloud applications, managing credentials securely and efficiently is crucial. Azure provides a robust solution with Managed Identities, allowing services to authenticate without storing cred
Top 10 Network-attached storage (NAS) Operating Systems
6/13/2024 5:07:01 AM.
NAS, Network-Attached Storage, Cloud Storage, FreeNAS, OpenMediaVault, Synology DSM, QNAP QTS, Rockstor, Unraid, XigmaNAS, Openfiler, Amahi, Asustor ADM.
Understanding Azure Storage Accounts
6/11/2024 12:24:19 PM.
Microsoft Azure offers a robust and versatile set of cloud storage solutions designed to meet a wide range of data storage needs. At the heart of these solutions are Azure Storage Accounts.
Mounting Azure Storage Account on the Azure Function
6/11/2024 6:50:56 AM.
Azure Functions offer serverless computing, reducing code, infrastructure, and costs. With support for multiple languages, it seamlessly integrates with storage accounts for efficient data handling.
Memory Cache in C#
6/7/2024 10:30:59 AM.
Learn about optimizing web application performance through cache implementation. Understand various cache types like in-memory, persistent, and distributed caches. Explore methods to add, store, retri
Stack Vs Heap Memory - C#
6/7/2024 10:28:14 AM.
Explore the nuances of memory management in C# programming, distinguishing between value types and reference types, understanding dynamic and static memory allocation, evaluating access efficiency, r
Insert Data Into Azure Table Storage Using ASP.NET Core Application
6/7/2024 10:22:35 AM.
Learn to store data in Azure Table Storage with ASP.NET Core or console applications. Explore Azure Storage concepts, entity structure, and access methods for efficient data management.
Delete Windows.old Folder In Windows
6/6/2024 11:45:51 AM.
Deleting the Windows.old folder in Windows is crucial for reclaiming disk space after a system upgrade. This folder contains the previous installation of Windows and can occupy a significant amount of
Shared Access Signatures in Azure
6/6/2024 11:25:57 AM.
Shared Access Signatures in Azure: A Comprehensive Guide" provides an in-depth look at securing Azure Storage using SAS tokens. It covers token generation, time-limited access, permission manage
Variables In PowerApps
6/6/2024 7:44:52 AM.
Discover how to effectively use variables in PowerApps to enhance your app development. This guide covers the basics of creating, managing, and utilizing variables to store data, improve functionality
How NAS Integration in VMware Works and Why It Matters?
6/6/2024 7:20:41 AM.
Exploring the integration of Network Attached Storage (NAS) in VMware environments, detailing its working principles, benefits, implementation steps, and best practices.
Introduction of VMware vSAN?
6/6/2024 6:07:01 AM.
VMware vSAN is a software-defined storage solution integrated with VMware vSphere, enabling efficient management and automation of storage resources through a hyper-converged infrastructure.
Inserting & Retrieving Images from SQL Server Database without using Stored Procedures
5/31/2024 10:06:56 AM.
Learn how to manage images in SQL Server directly from your C# application. Utilize ADO.NET for seamless image insertion and retrieval without stored procedures. Streamline database operations efficie
Leveraging Azure Tables with Azure Functions
5/31/2024 8:30:59 AM.
Azure Tables provide a NoSQL key-value store for rapid development using massive semi-structured datasets. They are part of Azure Storage and are designed for large-scale data storage and high-perform
Inserting images into MS Access file using OLEDB
5/30/2024 12:09:34 PM.
Learn how to insert images into an MS Access database using OLEDB. This guide covers the steps to store images as OLE objects in Access tables, ensuring proper data integration. Understand the necessa
10 Best Crypto Wallets for Secure Storage of Your Digital Assets
5/27/2024 12:14:27 PM.
Explore the top 10 crypto wallets for secure storage of digital assets like Bitcoin and Ethereum. From hardware wallets like Ledger Nano X to user-friendly options like Coinbase Wallet and MetaMask, d
Maximizing Big Data Potential with ADLS and PySpark
5/27/2024 11:50:01 AM.
Maximize your Big Data potential with Azure Data Lake Service (ADLS) and PySpark. Utilize scalable data processing, machine learning pipelines, and distributed computing to unlock insights from vast d
Log-Based vs. Pre-Aggregate in Data Analytics
5/27/2024 11:48:19 AM.
Log-Based vs. Pre-Aggregate in Data Analytics: Log-based analytics processes raw data entries sequentially, while pre-aggregate analytics aggregates data beforehand. Each approach offers unique benefi
How to Upload Files on IPFS using Solana?
5/24/2024 10:05:56 AM.
Discover how to leverage the power of Solana's blockchain platform to upload files onto IPFS, the InterPlanetary File System, enabling decentralized storage. Utilize Solana's SDK and smart con
Storage Accounts and Redundancy Options in Azure
5/24/2024 6:10:30 AM.
Azure Storage Accounts offer various redundancy options ensuring data resilience. Choose between locally redundant, zone-redundant, geo-redundant, or geo-zone-redundant storage to safeguard against fa
Decentralized Storage Services on Solana
5/22/2024 9:38:13 AM.
In the digital age, decentralized storage offers enhanced security, privacy, and reliability over traditional solutions. Platforms like Solana provide the foundation for these advanced, distributed st
Understanding Docker: A Game Changer for Software Deployment
5/20/2024 8:28:42 AM.
Docker, introduced in 2013, automates application deployment within containers, ensuring consistency across development stages. Despite some challenges like security and data storage, Docker simplifie
Upload Image To Azure Storage Using React
5/14/2024 6:40:08 AM.
In this article, we will learn about Upload image to azure. You can use the Azure Storage SDK for JavaScript in your React app to upload images to Azure Storage.
Building a Timer Triggered Azure Function to Fetch Weather Data and Upload to Azure Blob Storage Table
5/14/2024 6:39:48 AM.
Timer Trigger using Python get weather data and upload azure blob storage table
Building an Azure Queue Trigger Function for Sending Emails with Nodemailer
5/14/2024 6:39:13 AM.
In today's digital age, automated processes are essential for improving efficiency and productivity. One such automation is sending emails based on events or triggers. In this blog post, we'll
Road To AZ 204 - Developing Solutions That Use Blob Storage
5/13/2024 4:22:30 AM.
This article's intention is to explain the main skills measured in this sub-topic of the AZ-204 Certification. Azure Storage and Blob Storage are the main components whose fundamentals explained h
Azure Data Factory to Copy Data From GCS to ADLS Gen 2
5/12/2024 4:51:33 AM.
In this video, we continue in our data engineering videos on how to use Azure Data Factory to ETL data from Google Cloud Storage account to Azure Data Lake Storage Gen2.
Road To AZ-204 - Developing Solutions That Use Cosmos DB Storage
5/10/2024 8:54:01 AM.
This article's intention is to explain the main skills measured in this sub-topic of the AZ-204 Certification. Cosmos DB is the main component that will have their fundamentals explained here alon
A Detailed Overview Of Blob Storage
5/9/2024 11:56:16 AM.
Discover the intricacies of Azure Blob Storage in this comprehensive overview. Learn about its features, including blob containers and scalability. Explore security measures, best practices, and perfo
Quick Start With Azure Storage
5/9/2024 11:55:47 AM.
Quick start with Azure Storage involves creating a storage account, and managing containers for blobs, files, tables, and queues via Azure portal or CLI. Ensure scalability, durability, and security f
A Detailed Overview Of Azure Storage Account Creation
5/9/2024 11:55:32 AM.
Learn how to create Azure Storage accounts step-by-step in this detailed overview. Explore Azure Portal management, storage services like Blob, File, Table, and Queue Storage. Understand security, sca
Fabric Lakehouse Shortcut to Google Cloud Platform Storage
5/9/2024 4:55:24 AM.
In this Data Engineering video, I walked you through how to create GCP Cloud Storage, upload file into the bucket, create fabric lakehouse and shortcut to the GCP data.
Exploring Azure Blob Storage Tiers
5/7/2024 10:40:40 AM.
Explore Azure Blob Storage Tiers for efficient data management. Understand Hot, Cool, and Archive tiers for cost-effective storage solutions. Optimize storage costs based on access patterns and retent
Azurite emulator for Local Azure Storage Development
5/7/2024 4:19:16 AM.
Docker simplifies running applications locally with a vast image library. Utilize the Azure Storage emulator image to set up services effortlessly via Docker Compose and YAML configurations, ensuring
How to Upload Files to Mega Cloud Storage Using C# & .NET Core
5/6/2024 9:42:59 AM.
Learn how to seamlessly upload files to Mega Cloud storage using C# and .NET Core. Mega is a popular cloud storage provider known for its robust security features and generous storage offerings.Disc
Azure PaaS : Top 40 Questions & Answers About Azure PaaS Services
5/1/2024 1:33:56 PM.
Azure Platform as a Service (PaaS) offers a suite of cloud computing services that empower developers to build, deploy, and manage applications without the hassle of infrastructure management. Here 40
How to Create Azure Storage Account and Configure to Windows 11
5/1/2024 11:39:12 AM.
Learn how to set up an Azure Storage Account and integrate it with Windows 11. Create and configure storage containers using Azure Portal or tools like PowerShell and Azure CLI. Explore access managem
Thread- Local Storage of Data in .NET
5/1/2024 11:07:55 AM.
Suppose you're writing a multi-threaded application and you want each thread to have its own copy of some data. You also want this data to persist throughout the lifetime of the thread.
Implementing Azure Blob Storage in Your Application
5/1/2024 8:46:57 AM.
Are you looking to leverage the power of cloud storage for your applications? In this detailed guide, we take you through the process of implementing Azure Blob Storage in your application, step by s
Setting Up Google App Engine And Uploading An Image To Google Cloud Using PHP
4/30/2024 9:05:15 AM.
Setting up Google App Engine for PHP involves configuring App.yaml, deploying code, and leveraging Google Cloud Storage for image uploads. With PHP libraries, developers can seamlessly integrate image
Storage Services Use Cases and Best Practices in Azure and AWS [Part 2]
4/30/2024 8:25:53 AM.
Absolutely, choosing the right storage service in Azure or AWS is crucial for achieving optimal performance, scalability, cost-efficiency, and compliance with data management requirements.Understandin
Storage Services Use Cases and Best Practices in Azure and AWS [Part 1]
4/29/2024 10:01:35 AM.
Choosing the right storage service in Azure or AWS is crucial for achieving optimal performance, scalability, cost-efficiency, and compliance with data management requirements.
How To Change Drive Letter In Windows 10
4/26/2024 11:57:15 AM.
Learn how to change drive letters in Windows 10 using Disk Management. This guide covers step-by-step instructions to assign or modify drive letters for internal, external, or USB drives. Explore syst
Write And Read Pandas Dataframe And CSV To And From Azure Storage Table
4/24/2024 7:57:24 AM.
This tutorial focuses on integrating Pandas with Azure Storage Table, enabling writing and reading DataFrames to and from CSV files stored in Azure Storage. It covers data transfer between local envir
Exploring Storage Explorer
4/24/2024 7:56:53 AM.
Embark on a journey of discovery with Storage Explorer as your guide. Learn the ins and outs of efficient storage management in the cloud, especially within Azure. Navigate effortlessly through files,
Azure Blob Storage - SnapShot
4/24/2024 7:35:29 AM.
Utilize Azure Blob Storage SnapShot feature for efficient data backup and versioning. Snapshots enable point-in-time recovery, ensuring data integrity and facilitating disaster recovery strategies wit
Connect Storage Explorer Using SAS Token
4/24/2024 7:31:56 AM.
Learn how to securely connect Azure Storage Explorer to your Azure storage resources using Shared Access Signature (SAS) tokens. SAS tokens provide fine-grained access control, allowing you to define
Client-Side Data Storage: Local & Session Storage in JavaScript
4/24/2024 6:10:08 AM.
This Article describes how to store data on the client side and the difference between local storage and session storage and their methods.
Blazor Server - How To Store Encrypted Session Data In The Browser
4/23/2024 11:17:21 AM.
Learn how to enhance security in your Blazor Server applications by storing encrypted session data in the browser. Explore techniques to safeguard sensitive user information using ASP.NET Core and cli
Alibaba Cloud IoT: Connecting Devices and Managing Data
4/19/2024 4:52:48 AM.
Alibaba Cloud IoT connects devices & manages data for businesses, enabling them to unlock the power of #IoT & gain valuable insights.
Building Scalable Applications with Alibaba Cloud Serverless Computing
4/18/2024 4:13:40 AM.
This article guides setting up serverless architecture on Alibaba Cloud, configuring Object Storage Service, ApsaraDB for MongoDB, and Function Compute.
Road To AZ-204 - Developing Message-Based Solution
4/16/2024 10:00:58 AM.
Embark on the journey towards AZ-204 certification by mastering message-based solutions in Azure. Explore Azure Service Bus, Azure Queues, and message queueing techniques for efficient message process
Azure Storage Account And Storage Container For Blob Storage
4/16/2024 8:57:20 AM.
Learn how to create Azure Storage Account & Containers for Blob Storage. Explore steps to set up storage accounts, create containers, and manage blob storage efficiently in the Azure Portal.
Creating Azure WebJobs To Parse Message From Azure Storage Queues
4/16/2024 8:53:11 AM.
In this article, you will learn how to utilize Azure WebJobs to efficiently process messages from Azure Storage Queues. Explore background processing, message parsing, and event-driven architecture in
Implement Azure Queue Using ASP.NET Core Console Application
4/16/2024 8:39:11 AM.
Learn to utilize Azure Queue Storage for efficient message queuing in cloud applications. Explore Azure Queue's RESTful interface, its advantages like cost-effectiveness and security, along with d