25 ASP.NET Course 2022 |MultiView and View Controls| divide the content of a page into different groups
https://youtu.be/G1nQYBYs7Z8
  
  https://youtu.be/G1nQYBYs7Z8
YouTube
  
  25 ASP.NET Course 2022 | MultiView  Controls| Divide the content of a page into different groups
  Hi everyone In this video we will learn about MultiView and View Controls.
These controls allows us to divide the content of a page into different groups, displaying one group at a time. Each View control manages one group of content and all the View controlsβ¦
  These controls allows us to divide the content of a page into different groups, displaying one group at a time. Each View control manages one group of content and all the View controlsβ¦
Bhai log Naya reel upload Kiya dekho 
https://www.instagram.com/reel/ClNB2U4IPDl/?igshid=NDk5N2NlZjQ=
Pasand aaye to likeπ
  https://www.instagram.com/reel/ClNB2U4IPDl/?igshid=NDk5N2NlZjQ=
Pasand aaye to likeπ
How do I upload a project from Visual Studio 2022 to GitHub?
https://youtu.be/2Y1ZffRosQ8
  
  https://youtu.be/2Y1ZffRosQ8
YouTube
  
  26 ASP.NET Course 2022 | upload project on #github from visual studio | Panel Control | @CoderBaba
  How do I upload a project from Visual Studio 2022 to GitHub? Create a GitHub repo using Visual Studio 2022 or Publishing an existing project to GitHub. working with Panel Control in asp.net.
#coderbaba #github #panel
my website https://www.coderbaba.inβ¦
  #coderbaba #github #panel
my website https://www.coderbaba.inβ¦
Online Real Estate Website Project in asp. net C# with source code
https://coderbaba.myinstamojo.com/product/3554425/online-real-estate-website-project-in-aspnet
  https://coderbaba.myinstamojo.com/product/3554425/online-real-estate-website-project-in-aspnet
28 ASP. NET Course 2022 |RangeValidator Control | coderbaba 
https://youtu.be/bpmBNhAerE0
  
  https://youtu.be/bpmBNhAerE0
YouTube
  
  28 ASP.NET Course 2022 | RangeValidator Control | coderbaba
  ASP.NET Course 2022 | RangeValidator Control 
RangeValidator control is used to check that the user enters an input value that falls between two values.
we need to define what range of data will be input by the users that means minimum and maximum value.β¦
  RangeValidator control is used to check that the user enters an input value that falls between two values.
we need to define what range of data will be input by the users that means minimum and maximum value.β¦
how to use CompareValidator with calendar control in asp dot net
watch my new video for more detailsπππ
29 ASP. NET Course 2022 | Compare Validator control
https://youtu.be/SiUqI7cpIBs
  
  watch my new video for more detailsπππ
29 ASP. NET Course 2022 | Compare Validator control
https://youtu.be/SiUqI7cpIBs
YouTube
  
  29 ASP.NET Course 2022 | Compare Validator control | No JavaScript | coderbaba
  How to use compare validator control with calendar control.The CompareValidator control is used to compare the value of one input control to the value of another input control or to a fixed value.
#coderbaba #CompareValidator #aspdotnet
...........................β¦
  #coderbaba #CompareValidator #aspdotnet
...........................β¦
How To Create a Responsive Pricing Table
----------
<div class="columns">
<ul class="price">
<li class="header">Basic</li>
<li class="grey">$ 9.99 / year</li>
<li>10GB Storage</li>
<li>10 Emails</li>
<li>10 Domains</li>
<li>1GB Bandwidth</li>
<li class="grey"><a href="#" class="button">Sign Up</a></li>
</ul>
</div>
--------------CSS------------
* {
box-sizing: border-box;
}
/* Create three columns of equal width */
.columns {
float: left;
width: 33.3%;
padding: 8px;
}
/* Style the list */
.price {
list-style-type: none;
border: 1px solid #eee;
margin: 0;
padding: 0;
-webkit-transition: 0.3s;
transition: 0.3s;
}
/* Add shadows on hover */
.price:hover {
box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}
/* Pricing header */
.price .header {
background-color: #111;
color: white;
font-size: 25px;
}
/* List items */
.price li {
border-bottom: 1px solid #eee;
padding: 20px;
text-align: center;
}
/* Grey list item */
.price .grey {
background-color: #eee;
font-size: 20px;
}
/* The βSign Upβ button */
.button {
background-color: #4CAF50;
border: none;
color: white;
padding: 10px 25px;
text-align: center;
text-decoration: none;
font-size: 18px;
}
/* Change the width of the three columns to 100%
(to stack horizontally on small screens) */
@media only screen and (max-width: 600px) {
.columns {
width: 100%;
}
}
  ----------
<div class="columns">
<ul class="price">
<li class="header">Basic</li>
<li class="grey">$ 9.99 / year</li>
<li>10GB Storage</li>
<li>10 Emails</li>
<li>10 Domains</li>
<li>1GB Bandwidth</li>
<li class="grey"><a href="#" class="button">Sign Up</a></li>
</ul>
</div>
--------------CSS------------
* {
box-sizing: border-box;
}
/* Create three columns of equal width */
.columns {
float: left;
width: 33.3%;
padding: 8px;
}
/* Style the list */
.price {
list-style-type: none;
border: 1px solid #eee;
margin: 0;
padding: 0;
-webkit-transition: 0.3s;
transition: 0.3s;
}
/* Add shadows on hover */
.price:hover {
box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}
/* Pricing header */
.price .header {
background-color: #111;
color: white;
font-size: 25px;
}
/* List items */
.price li {
border-bottom: 1px solid #eee;
padding: 20px;
text-align: center;
}
/* Grey list item */
.price .grey {
background-color: #eee;
font-size: 20px;
}
/* The βSign Upβ button */
.button {
background-color: #4CAF50;
border: none;
color: white;
padding: 10px 25px;
text-align: center;
text-decoration: none;
font-size: 18px;
}
/* Change the width of the three columns to 100%
(to stack horizontally on small screens) */
@media only screen and (max-width: 600px) {
.columns {
width: 100%;
}
}
enquiry.rar
    996 B
  Enquiry Form using HTML/CSS followπ @coder_baba  #CoderBaba
  COMPUTER NETWORK HAND WRITTEN NOTE BY CODERBABA.pdf
    22.4 MB
  COMPUTER NETWORK HAND WRITTEN NOTE BY #CODERBABA πππππππ follow ππ» @coder_baba
  