uk
Feedback
Coder Baba

Coder Baba

Відкрити в Telegram

Everything about programming for beginners. 1 and only official telegram channel of CODERBABA India. Content: .NET Developer, Programming (ASP. NET, VB. NET, C#, SQL Server), & Projects follow me https://linktr.ee/coderbaba *Programming *Coding *Note

Показати більше
2 233
Підписники
-224 години
-107 днів
-3630 днів
Архів дописів
👩‍💻List of all errors 🔰 - 400 (Bad request) - 401 (Authorization required) - 402 (Payment required) - 403 (Forbidden) - 404 (Not found) - 405 (Method not allowed) - 406 (Not acceptable) - 407 (Proxy authentication required) - 408 (Request Timeout) - 409 (Conflict) - 410 (Gone) - 411 (Length required) - 412 (Precondition failed) - 413 (Request entity too large) - 414 (Request URI too large) - 415 (Unsupported media type) - 416 (Request range not satisfiable) - 417 (Expectation failed) - 422 (Unprocessable entity) - 423 (Locked) - 424 (Failed dependency) - 500 (Internal server error) - 501 (Not Implemented) - 502 (Bad gateway) - 503 (Service unavailable) - 504 (Gateway timeout) - 505 (HTTP version not supported) - 506 (Variant also negotiates) - 507 (Insufficient storage) - 510 (Not extended) React to this message if you need more Interesting Content Like this ❤️ Follow 👉🏻 @coder_baba #CoderBaba

Check out this new post 🎓 and Follow me for more https://www.instagram.com/p/CrOUFrfhnNk/?utm_source=ig_web_copy_link

New video out 📹How to Integrate ChatGPT using C# | Visual Studio 2022 | OpenAI Code with ChatGPT in ASP .NET Csharp 🔗🕸 https://youtu.be/kM89QkY-XbU

New video out 📹How to Integrate ChatGPT using C# | Visual Studio 2022 | OpenAI Code with ChatGPT in ASP .NET Csharp 🔗🕸https://youtu.be/kM89QkY-XbU

photo content

What is Asp.Net:- Asp.net is abbreviated as "Active Server Pages .Network enable technology". Active-An ASP page provides dynamic content that's updated every time that is accessed. Server- An ASP page contains script code that the Web server executes. Pages-An ASP page is a Web page that the user navigates to and is displayed in his or her browser. How many types of Validation control in Asp.Net:-  Required Field Validator  Range Validator  Compare Validator  Regular Expression Validator  Custom Validator  Validation Summary Required Field Validator:-It checks whether the control have any value. It is used when you want the control should not be empty. Range Validator:-It checks if the value in validated controls is in that specific range. Compare Validator:-It checks that the value in controls should match some specific value. Regular Expression Validator:-When we want the control, value should match with a specific regular expression. Custom Validator:-It is used to define user defined validation. Validation Summary:-It displays summary of all current validation errors on an Asp.Net page. How can you redirect user to different page. By Useing the Response.Redirect method to direct users to different pages. How can you redirect user to same page. By Useing the Server.Transfer method to direct users to different pages.

Design Pattern in C# PDF Notes👆👆👆

👉🏻How is the ACID property related to databases? ACID (an acronym for Atomicity Consistency Isolation Durability) is a concept that database professionals generally look for while evaluating relational databases and application architectures. For a reliable database, all four of these attributes should be achieved: 🌱Atomicity is an all-or-none rule for database modifications. 🌱Consistency guarantees that a transaction never leaves your database in a half-finished state. 🌱Isolation keeps transactions separated from each other until they are finished. 🌱Durability guarantees that the database will keep track of pending changes in such a way that the server can recover from an abnormal termination and committed transactions will not be lost. follow @coder_baba

👉🏻What is de-normalization? De-normalization is the process of attempting to optimize the performance of a database by adding redundant data. It is sometimes necessary because current DBMSs implement the relational model poorly. A true relational DBMS would allow for a fully normalized database at the logical level, while providing physical storage of data that is tuned for high performance. De-normalization is a technique to move from higher to lower normal forms of database modeling in order to speed up database access. De-normalizing the database design allows for fewer joins with tables and foreign key requirements. This method is commonly used for Reporting and OLAP workloads.

👉🏻What is normalization? Database normalization is a data design and organizational process applied to data structures based on rules that help build relational databases. In relational database design, the process of organizing data to minimize redundancy is called normalization. Normalization usually involves dividing database data into different tables and defining relationships between the tables. The objective is to isolate data so that additions, deletions, and modifications of a field can be made in just one table and then retrieved through the rest of the database via the defined relationships. The key traits for Normalization are eliminating redundant data and ensuring data dependencies. follow @coder_baba

👉🏻What is RDBMS And Normalization? Relational Data Base Management Systems (RDBMS) are database management systems that maintain data records and indices in tables. Relationships may be created and maintained across and among the data and tables. In a relational database, relationships between data items are expressed by means of tables. Interdependencies among these tables are expressed by data values rather than by pointers. This allows a high degree of data independence. An RDBMS has the capability to recombine the data items from different files, providing powerful tools for data usage. What are the properties of the relational tables? Relational tables have the following five properties: 🚀· Values are atomic. 🚀· Column values are of the same kind. 🚀· The sequence of columns is insignificant. 🚀· The sequence of rows is insignificant. 🚀· Each column must have a unique name.

New video of ASPDOTNET uploaded now go and watch👇👇👇👇👇👇 https://youtu.be/V3JfScurejI

Roll Name Class Address 1 Rahul Kumar Tiwari Class9 Varanasi UP India 2 Babita class7 Delhi 4 Master Jojo Class7 Kanpur India Select * from tbl_Student; create procedure sp_InsertStudent @Name nvarchar(50), @Class nvarchar(50), @Address nvarchar(50) as begin insert into tbl_Student(Name,Class,Address) values(@Name,@Class,@Address) end go ----------- create procedure sp_UpdateStudent @Roll int, @Name nvarchar(50), @Class nvarchar(50), @Address nvarchar(50) as begin update tbl_Student set Name=@Name,Class=@Class,Address=@Address where Roll=@Roll end go -------- create procedure sp_DeleteStudent @Roll int as begin Delete from tbl_Student where Roll=@Roll end go

New jobs 💪 🚀🚀Last days 🚀🚀 Jobs by geeks for geeks 🚀🚀 LINK - http://bit.ly/3mvLILW http://bit.ly/3mvLILW 🚀🚀 💯⁉️Don't miss opportunity

What is a Database? We will not get into more detailed explanation about the database but just a breif for undertsanding. Database is a collection of data stored in a computer disc space or server space. In simple words it is a space where your data is been stored. In a single database we can create any number of data tables. It's like a school with many classrooms and each classroom will have different school students. In a single data table we create any number of columns For eg. studentID, studentName, studentAddress and in a single data table we can store data for specific topic. Like to store student's records you can have students data table, For school accounts you can have accounts data table, For school results you can have results data table. There are commonly used databases in our IT Zone SQL - Microsoft SQL Server Oracle - Oracle RDBMS or simply as Oracle MYSQL - Open Source Freeware MSACESS - Microsoft Access PostgreSQL - ORDBMS SAP - To manage customer relationship and other business operations FoxPro - Database IBM DB2 - IBM Database by IBM Now in further we will try to understand about data manipulation statements i.e. (Insert, Select, Update and Delete). About Data Manipulation Statements Select Statement Select statement let you to retrieve the data from the database table. For ex : In simple words if you want to pick up single student record, multiple student records or all students records from the table database you just need to use "Select" statement. Example Select * from 'students' "*" - Means All

Hi everyone please Subscribe https://youtu.be/1r7aWBmvHB0

Hey Guys Please subscribe new channel 👇👇👇 https://www.youtube.com/@thekrkv for more tech and career oriented videos please support thanks

Online Real Estate Website Project in asp.net C# with source code https://coderbaba.gumroad.com/l/anjxe