19 Şubat 2024 Pazartesi

C# ve Nesne Yönelimli Programlama (OOP) Property ile veri tutma ve eksi negatif değerlerin girilmesini engelleme

 

C# ve Nesne Yönelimli Programlama (OOP) Property ile veri tutma ve eksi negatif değerlerin girilmesini engelleme

 Shoe.cs class'ı içerisinde gelen değerimizi if koşulu ile negatif değer ile değiştirilmesini engellemiş bulunmaktayız.

 Program.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace C__ve_Nesne_Yönelimli_Programlama__OOP_
{
internal class Program
{
static void Main(string[] args)
{

Shoe shoe1 = new Shoe();

shoe1.Numara = -10;
Console.WriteLine(shoe1.Numara);

shoe1.Numara = 10;
Console.WriteLine(shoe1.Numara);

Console.ReadKey();

}
}
}

Shoe.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace C__ve_Nesne_Yönelimli_Programlama__OOP_
{
internal class Shoe
{

private int _number;

public int Numara
{
get { return _number; }
set
{
if (value > 0)
{

_number = value;
}
else
{
_number = 0;
}
}
}



}
}

Görüldüğü üzere set edilirken if blokları içerisinde gelen değerimiz sıfırdan büyükse değer set edilecektir.

My Github

My Blogger

My Linkedin

My Hasnode

My Youtube

 

Share:

18 Şubat 2024 Pazar

Mvc Model Alan PartialView Oluşturma

 

Partial View, ASP.NET MVC'de bir sayfada başka bir sayfanın veya bölümün tekrar kullanılabilir bir parçasını oluşturmak için kullanılır. Bir model alanı içeren bir Partial View oluşturmak için aşağıdaki adımları takip edebilirsiniz.

Örnek olarak, bir "Person" modelini kullanarak bir Partial View oluşturacağız.

  1. İlk olarak, Views/Shared klasörü içinde yeni bir dosya oluşturun. Bu dosyanın adını örneğin _PersonPartial.cshtml olarak belirleyebilirsiniz.

  2. Oluşturduğunuz dosyanın içine Partial View'inizi tasarlayın. Örneğin:

  • Ardından, bu Partial View'i kullanmak istediğiniz sayfada aşağıdaki gibi kullanabilirsiniz. Örneğin, bir "Index.cshtml" sayfasında:

    html 
     
    1. Burada, @Html.Partial("_PersonPartial", Model) ifadesi, _PersonPartial.cshtml adlı Partial View'i çağırırken, "Person" modelini de bu Partial View'e iletiyor.

    Bu sayede, aynı Partial View'i başka sayfalarda da kullanabilir ve bu sayede kodunuzu daha organize bir şekilde yönetebilirsiniz.

     

    My Github

    My Blogger

    My Linkedin

    My Hasnode

    My Youtube

     

    Share:

    Mastering C#, ASP.NET, MVC, and Help Desk Solutions: Your Ultimate Resource for IT Excellence!

     

    Empower Your IT Journey with Expert Insights: Exploring C#, Web Programming, ASP.NET, and MVC Help Desk Solutions

    Welcome to our blog dedicated to all things C#, web programming, ASP.NET, MVC, and IT help desk solutions! Whether you're a seasoned developer, an IT professional, or someone eager to delve into the world of technology, you've come to the right place.

    Elevate Your Skills with C# Mastery

    Unlock the full potential of C# programming with our in-depth tutorials, practical tips, and expert guidance. From beginner-friendly introductions to advanced techniques, we cover everything you need to become a proficient C# developer.

    Dive into Web Programming Wonders

    Explore the ever-evolving landscape of web programming as we delve into HTML, CSS, JavaScript, and more. Stay updated on the latest trends, frameworks, and best practices shaping the world of web development.

    Harness the Power of ASP.NET and MVC

    Discover the versatility and robustness of ASP.NET and MVC frameworks through our comprehensive guides and hands-on projects. Learn how to build scalable, secure, and efficient web applications that meet the demands of modern businesses.

    Streamline IT Operations with Help Desk Insights

    Navigate the complex realm of information technology help desk management with our actionable insights and proven strategies. From ticketing systems to troubleshooting techniques, we've got you covered every step of the way.

    Why Choose Us?

    • Expertise: Benefit from the knowledge and experience of industry professionals passionate about sharing their expertise.
    • Practical Guidance: Our tutorials and guides are designed to offer practical, real-world solutions to common challenges.
    • Community Engagement: Join a vibrant community of learners and professionals, and engage in meaningful discussions and knowledge sharing.
    • Continuous Learning: Stay ahead of the curve with regular updates and fresh content tailored to your interests and needs.

    Start Your Journey Today!

    Embark on a transformative journey of learning, growth, and innovation with our blog. Whether you're looking to enhance your programming skills, stay updated on the latest industry trends, or optimize your IT help desk operations, we're here to support you every step of the way.

    Don't miss out on our latest articles, tutorials, and insights. Subscribe now and take your IT journey to new heights!

    My Github

    https://github.com/cengizhanakgun

    My Blogger

    https://cengizhanakgun.blogspot.com

    My Linkedin

    https://tr.linkedin.com/in/cengizhanakgun

    My Hasnode

    https://cengizhanakgun.hashnode.dev

    My Youtube

     

    Share:

    13 Şubat 2024 Salı

    ASP.NET VİEW NEDİR

     

     

     

    ASP.NET MVC'de "View", kullanıcı arayüzünün (UI) oluşturulduğu ve sunulduğu bileşendir. ASP.NET MVC uygulamalarında, model verileri (veri) bir Controller'dan bir View'e (kullanıcı arayüzü) iletilebilir ve View, bu model verilerini kullanarak kullanıcıya bilgi sunar. View, HTML, CSS ve JavaScript gibi web teknolojilerini kullanarak kullanıcı arayüzünü oluşturur ve sunar. Bu, bir web sayfasının veya web uygulamasının kullanıcıya görüntülenen kısmını temsil eder.

    Share: