#aspnetmvc risultati di ricerca

ASP .NET Web API – Token Based Authentication Tutorial by Beau Carnes youtube.com/watch?v=QSFWSj… #aspnetcore

aspnetcore_news's tweet image. ASP .NET Web API – Token Based Authentication Tutorial by Beau Carnes youtube.com/watch?v=QSFWSj… #aspnetcore

Simple script for site.js for identifying current page for ASP.NET Core. gist.github.com/karenpayneoreg…

KarenPayneMVP's tweet image. Simple script for site.js for identifying current page for ASP.NET Core.

gist.github.com/karenpayneoreg…

.NET devs coming back to ASP .NET MVC after trying Blazor, Razor Pages and Minimal APIs

edandersen's tweet image. .NET devs coming back to ASP .NET MVC after trying Blazor, Razor Pages and Minimal APIs

Permission authorization handler in ASP .NET Core 👇 You can use this to enforce Role-Based Access Control.

mjovanovictech's tweet image. Permission authorization handler in ASP .NET Core 👇

You can use this to enforce Role-Based Access Control.

If you're a .NET dev, think twice before rolling your own auth. For most apps, ASPNET Core Identity gives you everything you need out of the box: - User registration and login - Password hashing and refresh tokens - Role- and claim-based authorization - External logins (Google,…

mjovanovictech's tweet image. If you're a .NET dev, think twice before rolling your own auth.

For most apps, ASPNET Core Identity gives you everything you need out of the box:

- User registration and login
- Password hashing and refresh tokens
- Role- and claim-based authorization
- External logins (Google,…

Be sure to put the middleware components in a valid order. 👀 The proper order should be: ↓ • Exception Handler • HSTS • HttpsRedirection • Static Files • Routing • CORS • Authentication • Authorization • Custom Middlewares • Endpoints #Dotnet

TheCodeMan__'s tweet image. Be sure to put the middleware components in a valid order. 👀

The proper order should be: ↓

• Exception Handler
• HSTS
• HttpsRedirection
• Static Files
• Routing
• CORS
• Authentication
• Authorization
• Custom Middlewares
• Endpoints

#Dotnet

#LearningUtsav2025 #FestivalOfLearning #LUD19 Today, i have gone through integration of React and ASP.NET Core Web API. I also made a REST API Calls from React to Core. Update: github.com/virtualabishek…

virtualabishek's tweet image. #LearningUtsav2025 #FestivalOfLearning #LUD19 Today, i have gone through integration of React and ASP.NET Core Web API. I also made a REST API Calls from React to  Core. 

Update: github.com/virtualabishek…
virtualabishek's tweet image. #LearningUtsav2025 #FestivalOfLearning #LUD19 Today, i have gone through integration of React and ASP.NET Core Web API. I also made a REST API Calls from React to  Core. 

Update: github.com/virtualabishek…
virtualabishek's tweet image. #LearningUtsav2025 #FestivalOfLearning #LUD19 Today, i have gone through integration of React and ASP.NET Core Web API. I also made a REST API Calls from React to  Core. 

Update: github.com/virtualabishek…
virtualabishek's tweet image. #LearningUtsav2025 #FestivalOfLearning #LUD19 Today, i have gone through integration of React and ASP.NET Core Web API. I also made a REST API Calls from React to  Core. 

Update: github.com/virtualabishek…

Day 14 - #100DaysOfCode Today, I learned how to display data from my database in ASP.NET MVC using views and action methods in controllers! 🎉 Also: 🔧 Customized my CSS by exploring Bootswatch themes and added Bootstrap Icons . We are getting closer #ASPNetMVC


Microsoft patches ASP.NET Core bug rated highly critical theregister.com/2025/10/16/mic…

secharvesterx's tweet image. Microsoft patches ASP.NET Core bug rated highly critical
theregister.com/2025/10/16/mic…

Caching in ASP.NET MVC Caching is a technique that improves the performance of web applications by storing frequently used data or content in memory. #aspnetmvc #caching A thread 🧵

iamsbdash's tweet image. Caching in ASP.NET MVC

Caching is a technique that improves the performance of web applications by storing frequently used data or content in memory. 

#aspnetmvc #caching

A thread 🧵

Thinking about Remix components in terms of MVC makes a lot of sense - The controller instantiates a model and subscribe to events - Then returns a view that uses the model instance to get values and call methods - And the controller updates the view when the model change

sergiodxa's tweet image. Thinking about Remix components in terms of MVC makes a lot of sense

- The controller instantiates a model and subscribe to events
- Then returns a view that uses the model instance to get values and call methods
- And the controller updates the view when the model change

Remix 3 clicked for me when I reframed it as MVC. For example, in the drum machine demo: - Model: `Drummer` - Controller: bind `Drummer.change` to `this.update()` & bind `drummer.{start, stop, ...}` to interactions - View: JSX x.com/ryanflorence/s…



Instead of hard-coding values in your code, make them configurable. .NET has an excellent solution for this called the Options pattern. Here's how to get started: milanjovanovic.tech/blog/how-to-us…

mjovanovictech's tweet image. Instead of hard-coding values in your code, make them configurable.

.NET has an excellent solution for this called the Options pattern.

Here's how to get started: milanjovanovic.tech/blog/how-to-us…

Build your own ASP.NET Core MVC application with expert guidance. This tutorial provides a clear path for developers to get started: tinyurl.com/z6ux6dh4 #ASPNET #ASPNETMVC #ASPNETCore #WebDevelopment #MVC #MVCApplication

CsharpCorner's tweet image. Build your own ASP.NET Core MVC application with expert guidance. This tutorial provides a clear path for developers to get started: tinyurl.com/z6ux6dh4

#ASPNET #ASPNETMVC #ASPNETCore #WebDevelopment #MVC #MVCApplication

I did a quick freelance job last year, and the requirement was adding API Key authentication. This is practical for Server-to-Server communication. I condensed the high-level design into an article. Read it here: milanjovanovic.tech/blog/how-to-im…

mjovanovictech's tweet image. I did a quick freelance job last year, and the requirement was adding API Key authentication.

This is practical for Server-to-Server communication.

I condensed the high-level design into an article.

Read it here: milanjovanovic.tech/blog/how-to-im…

Discover the essentials of security in ASP.NET Core MVC (C#) with encryption and decryption techniques. Dive into the details with author @ziggyrafiq. tinyurl.com/yx44t5jv #ASPNETCore #ASPNET #ASPNETMVC #CSharp #SecurityTips #encryption #decryption

CsharpCorner's tweet image. Discover the essentials of security in ASP.NET Core MVC (C#) with encryption and decryption techniques. 

Dive into the details with author @ziggyrafiq. tinyurl.com/yx44t5jv

#ASPNETCore #ASPNET #ASPNETMVC #CSharp #SecurityTips #encryption #decryption

Authentication proves who you are. Authorization decides what you can do. In this course, you'll learn how to build ASP.NET apps that issue JWTs, register & log in users, manage roles, and more. freecodecamp.org/news/master-au…

freeCodeCamp's tweet image. Authentication proves who you are.

Authorization decides what you can do.

In this course, you'll learn how to build ASP.NET apps that issue JWTs, register & log in users, manage roles, and more.

freecodecamp.org/news/master-au…

#aspnet starter kit 🔭 - Observability - If you can't measure it, you can't improve it. Do you know how well your app is doing? What's the average CPU usage, or what endpoints are called most often? Metrics answers it all. Let's see how we can achieve that easily 👇 #dotnet

heystanislav's tweet image. #aspnet starter kit 🔭 - Observability

- If you can't measure it, you can't improve it.

Do you know how well your app is doing?
What's the average CPU usage, or what endpoints are called most often?

Metrics answers it all. 
Let's see how we can achieve that easily 👇

#dotnet

💳 Currently exploring PayU Money Payment Gateway integration with my #ASPNetMVC project! 🔧 First building a sample to perfect the flow. Next: implementing it into my full-stack solution. Will share insights, code & mistakes 😅 as I go. 📌 Tagging #payumoney for dev love!


New to Telerik UI for ASP .NET MVC? Welcome aboard! 👋 Chapter 1 of the Telerik UI for #ASPNetMVC course is your perfect starting point! Get an overview, dive into prerequisites, & tour the demo app to see what's possible! ⤵️ youtube.com/watch?v=R_FhXl…

Telerik's tweet card. Getting Started with Telerik UI for ASP.NET MVC | Chapter 1

youtube.com

YouTube

Getting Started with Telerik UI for ASP.NET MVC | Chapter 1


Made great progress on my LMS project today! 🎓 📌 Implemented CRUD operations for core models 🛠️ Set up controllers & connected models to the database ✅ Added initial migrations & applied them with EF Core #60DaysOfLearning #DotNet #ASPNETMVC #EFCore #BuildInPublic


Started a new project today: LMS (Learning Management System) Created core models to handle basic LMS functionality Set up DbContext and began structuring the app Excited to build this step by step—so much more to come! #60DaysOfLearning #DotNet #ASPNETMVC #EFCore #BuildInPublic


"Agile development is not just a methodology; it's a mindset. 'In ASP.NET MVC, each component is designed to be easily replaceable, fostering adaptability.' Embrace change and let your code evolve. 📚 #CSharp #ASPNETMVC #AgileDevelopment" ✍ @openai


Day 15 of #100DaysOfCode 🎯 To create a new page with MVC: 1️⃣ Add an Action Method in the controller (e.g., About). 2️⃣ Create a View file (e.g., About.cshtml) in the corresponding folder. 3️⃣ Pass data from the controller to the view if needed. #ASPNETMVC #WebDevelopment


Day 14 - #100DaysOfCode Today, I learned how to display data from my database in ASP.NET MVC using views and action methods in controllers! 🎉 Also: 🔧 Customized my CSS by exploring Bootswatch themes and added Bootstrap Icons . We are getting closer #ASPNetMVC


ASP.NET MVC in 2024: A Powerful Choice for Modern Web Development? Watch this session from #JBDotNetDays by @lxztlr to find out: 👉 youtube.com/watch?v=Ux1OzV… #dotnet #aspnetmvc #aspnetcore

JetBrainsRider's tweet image. ASP.NET MVC in 2024: A Powerful Choice for Modern Web Development?

Watch this session from #JBDotNetDays by @lxztlr to find out:

👉 youtube.com/watch?v=Ux1OzV…

#dotnet #aspnetmvc #aspnetcore

Enhance your app’s authentication! Discover how to build customized authentication filters in ASP.NET Core MVC 6 and make your apps more secure. Details here: tinyurl.com/mr43c3u9 #ASPNET #ASPNETCore #ASPNETMVC

CsharpCorner's tweet image. Enhance your app’s authentication! Discover how to build customized authentication filters in ASP.NET Core MVC 6 and make your apps more secure.

Details here: tinyurl.com/mr43c3u9

#ASPNET #ASPNETCore #ASPNETMVC

"Embrace simplicity: 'The best designs emerge from self-organizing teams.' - Agile Web Development with ASP.NET MVC. Remember, clear code and collaboration often lead to the most elegant solutions. 🌟 #CSharp #ASPNETMVC #AgileDevelopment" ✍ @openai


Discover the essentials of security in ASP.NET Core MVC (C#) with encryption and decryption techniques. Dive into the details with author @ziggyrafiq. tinyurl.com/yx44t5jv #ASPNETCore #ASPNET #ASPNETMVC #CSharp #SecurityTips #encryption #decryption

CsharpCorner's tweet image. Discover the essentials of security in ASP.NET Core MVC (C#) with encryption and decryption techniques. 

Dive into the details with author @ziggyrafiq. tinyurl.com/yx44t5jv

#ASPNETCore #ASPNET #ASPNETMVC #CSharp #SecurityTips #encryption #decryption

Build your own ASP.NET Core MVC application with expert guidance. This tutorial provides a clear path for developers to get started: tinyurl.com/z6ux6dh4 #ASPNET #ASPNETMVC #ASPNETCore #WebDevelopment #MVC #MVCApplication

CsharpCorner's tweet image. Build your own ASP.NET Core MVC application with expert guidance. This tutorial provides a clear path for developers to get started: tinyurl.com/z6ux6dh4

#ASPNET #ASPNETMVC #ASPNETCore #WebDevelopment #MVC #MVCApplication

Caching in ASP.NET MVC Caching is a technique that improves the performance of web applications by storing frequently used data or content in memory. #aspnetmvc #caching A thread 🧵

iamsbdash's tweet image. Caching in ASP.NET MVC

Caching is a technique that improves the performance of web applications by storing frequently used data or content in memory. 

#aspnetmvc #caching

A thread 🧵

Generate Images In ASP.NET Core MVC Using OpenAI by @PratapSingh845. Read the complete article here>> bit.ly/3FkGAQO #ASPNET #ASPNETMVC #ASPNETCore #OpenAI #ChatGPT #OpenAIChatGPT

CsharpCorner's tweet image. Generate Images In ASP.NET Core MVC Using OpenAI by @PratapSingh845.

Read the complete article here>> bit.ly/3FkGAQO

#ASPNET #ASPNETMVC #ASPNETCore #OpenAI #ChatGPT #OpenAIChatGPT

Ready to deploy your #ASPNET MVC application? Check out this article by @SMudassarAKhan for a detailed walkthrough of the process on an IIS server. Read the complete article here: bit.ly/44azUia #ASPNET #ASPNETMVC #IISServer #DOTNET #MVCApplication #CSharpCorner

CsharpCorner's tweet image. Ready to deploy your #ASPNET MVC application? Check out this article by @SMudassarAKhan for a detailed walkthrough of the process on an IIS server.

Read the complete article here: bit.ly/44azUia

#ASPNET #ASPNETMVC #IISServer #DOTNET #MVCApplication #CSharpCorner

Enhance your app’s authentication! Discover how to build customized authentication filters in ASP.NET Core MVC 6 and make your apps more secure. Details here: tinyurl.com/mr43c3u9 #ASPNET #ASPNETCore #ASPNETMVC

CsharpCorner's tweet image. Enhance your app’s authentication! Discover how to build customized authentication filters in ASP.NET Core MVC 6 and make your apps more secure.

Details here: tinyurl.com/mr43c3u9

#ASPNET #ASPNETCore #ASPNETMVC

Unlock the secrets of implementing global search in ASP.NET Core MVC with @SMudassarAKhan's detailed article. Perfect for improving user experience! Read it here: tinyurl.com/ytvw63zu #ASPNET #ASPNETCore #ASPNETMVC #VisualStudio #DOTNET

CsharpCorner's tweet image. Unlock the secrets of implementing global search in ASP.NET Core MVC with @SMudassarAKhan's detailed article. Perfect for improving user experience!

Read it here: tinyurl.com/ytvw63zu

#ASPNET #ASPNETCore #ASPNETMVC #VisualStudio #DOTNET

Are you ready to take your #ASPNET skills to the next level? Start by acing your next interview with the help of this list of questions and answers. Read the complete article here>> bit.ly/3S3E4DX #ASPNET #ASPNETMVC #Interview #InterviewQuestions #JOBs #Developers #QnA

CsharpCorner's tweet image. Are you ready to take your #ASPNET skills to the next level? Start by acing your next interview with the help of this list of questions and answers.

Read the complete article here>> bit.ly/3S3E4DX

#ASPNET #ASPNETMVC #Interview #InterviewQuestions #JOBs #Developers #QnA

𝐌 𝚞𝚕𝚝𝚒𝚙𝚕𝚎 𝐕 𝚊𝚌𝚊𝚗𝚌𝚒𝚎𝚜 𝐂 𝚞𝚛𝚛𝚎𝚗𝚝𝚕𝚢 ▪ ASP Dot Net MVC Developers ▪ ASP Dot Net Web Forms Developer ▪ WinForms Developer Interested? #DotNet #MVC #ASPNetMVC #ASPNet #WinForms #CSharp #ITJobs #Ahmedabad #TechnoWise_India

TechnoWise_ind's tweet image. 𝐌 𝚞𝚕𝚝𝚒𝚙𝚕𝚎 𝐕 𝚊𝚌𝚊𝚗𝚌𝚒𝚎𝚜 𝐂 𝚞𝚛𝚛𝚎𝚗𝚝𝚕𝚢

▪ ASP Dot Net MVC Developers
▪ ASP Dot Net Web Forms Developer
▪ WinForms Developer

Interested? 

#DotNet #MVC #ASPNetMVC #ASPNet #WinForms #CSharp #ITJobs #Ahmedabad 

#TechnoWise_India

Sending data from View to Controller in ASP.NET MVC Want to send info from your UI to your .NET app's core? Buckle up! Here are the common methods: #aspnetmvc #dataflow #webdev

iamsbdash's tweet image. Sending data from View to Controller in ASP.NET MVC

Want to send info from your UI to your .NET app's core? Buckle up! Here are the common methods:

#aspnetmvc #dataflow #webdev

Exploring the ASP.NET MVC Lifecycle Understanding the lifecycle of MVC is crucial for building robust web applications. Let's dive into the journey a request takes from inception to response: #ASPNETMVC #WebDevelopment

iamsbdash's tweet image. Exploring the ASP.NET MVC Lifecycle

Understanding the lifecycle of  MVC is crucial for building robust web applications. Let's dive into the journey a request takes from inception to response:

#ASPNETMVC #WebDevelopment

Introducing the .NET Days Online 2024 speakers and talks: 🎙A Homage to the Good Old MVC by @lxztlr 🗓 September 25, 11:45 am – 12:45 pm UTC 🎟 Details and registration: jb.gg/DotNetDays2024 #JBDotNetDays #dotnet #aspnetmvc #aspnetcore

JetBrainsRider's tweet image. Introducing the .NET Days Online 2024 speakers and talks:

🎙A Homage to the Good Old MVC by @lxztlr

🗓 September 25, 11:45 am – 12:45 pm UTC

🎟 Details and registration: jb.gg/DotNetDays2024

#JBDotNetDays #dotnet #aspnetmvc #aspnetcore

𝐌 𝚞𝚕𝚝𝚒𝚙𝚕𝚎 𝐕 𝚊𝚌𝚊𝚗𝚌𝚒𝚎𝚜 𝐂 𝚞𝚛𝚛𝚎𝚗𝚝𝚕𝚢 ▪ ASP Dot Net MVC Developers ▪ Dot Net WinForms Developer Interested? #DotNet #MVC #ASPNetMVC #ASPNet #ITJobs #Ahmedabad #CSharp #TechnoWise_India

TechnoWise_ind's tweet image. 𝐌 𝚞𝚕𝚝𝚒𝚙𝚕𝚎 𝐕 𝚊𝚌𝚊𝚗𝚌𝚒𝚎𝚜 𝐂 𝚞𝚛𝚛𝚎𝚗𝚝𝚕𝚢

▪ ASP Dot Net MVC Developers
▪ Dot Net WinForms Developer

Interested? 

#DotNet #MVC #ASPNetMVC #ASPNet  
#ITJobs #Ahmedabad #CSharp

#TechnoWise_India

Demystifying ASP.NET MVC's Data Passers - ViewBag, ViewData & TempData Ever wondered how data flows between controllers and views in MVC? Let's unveil the secrets of ViewBag, ViewData, and TempData. #aspnetmvc #dotnet #programming

iamsbdash's tweet image. Demystifying ASP.NET MVC's Data Passers - ViewBag, ViewData & TempData

Ever wondered how data flows between controllers and views in  MVC?  Let's unveil the secrets of ViewBag, ViewData, and TempData.

#aspnetmvc #dotnet #programming

🚨Virtual WALK-IN Drive - REMOTE Opportunity for Senior DOTNET🚨 → 3:30 PM to 12:30 AM IST → 0 - 20 days NOTICE ONLY → Max 28 LPA #ASPNet #ASPNetCore #ASPNetMVC #Azure #AzureDevOps #PowerApps #Remote #WFH #Jobs #Pune #India Follow #TechnoWise_India

TechnoWise_ind's tweet image. 🚨Virtual WALK-IN Drive - REMOTE Opportunity for Senior DOTNET🚨

→ 3:30 PM to 12:30 AM IST
→ 0 - 20 days NOTICE ONLY
→ Max 28 LPA

#ASPNet #ASPNetCore #ASPNetMVC #Azure #AzureDevOps #PowerApps #Remote #WFH #Jobs #Pune #India

Follow #TechnoWise_India

Capture telemetry of cache output events in #aspnetcore aspit.co/cfq of crad77 #webapi #aspnetmvc #azure #cache Translated using #MicrosoftPowerAutomate

Davillamizara's tweet image. Capture telemetry of cache output events in #aspnetcore aspit.co/cfq of crad77 #webapi #aspnetmvc #azure #cache  Translated using #MicrosoftPowerAutomate

👀 Aprende a incluir tus primeros botones de pago de PayPal 💲 para utilizarlo en ASP.NET Core y recibir pagos en tu página web 👀👇 bit.ly/3JzyyFh #ASPNET #aspnetcore #aspnetmvc #Paypal #web #desarrollador #programación #programador #developer

EstradaWebGroup's tweet image. 👀 Aprende a incluir tus primeros botones de pago de PayPal 💲 para utilizarlo en ASP.NET Core y recibir pagos en tu página web 👀👇
bit.ly/3JzyyFh

#ASPNET #aspnetcore #aspnetmvc #Paypal #web #desarrollador #programación #programador #developer

Loading...

Something went wrong.


Something went wrong.


United States Trends