Posts

Showing posts from June, 2020

#2 What is class in object oriented programming c# (in hindi)

Image

object oriented programming

Image

Address Tag in Html

Image

USB Port Why Not Work And How to fix it

Image

Abbreviation or Acronym in Html

Image
ð   The<abbr> tag defines an abbreviation or an acronym, like"HTML", "CSS", "Mr.","Dr.", "ASAP", "ATM". ð Use the Title attribute to show the description for the abbreviation/acronym when you mouse over the element. Example    :  <p> welcome to <abbr title=”coding  Wala”> CW </abbr> channel </p> Code  : <!DOCTYPE html> <html> <head> <title>Coding wala</title> </head> <body> <h1><abbr  title="coding wala">CW</abbr> is my channel</h1> </body> </html>

Bold and italic Tag in html

Image
Bold    :   This Tag is use to bold the text.   Example :   <b> Coding Wala</b> . Italic   : This Tag is use to show text different in your web page   Example   : <i>   Coding Wala   <i> . Code  : <!DOCTYPE html> <html> <head> <title>coding wala</title> </head> <body> this is  <b>coding wala</b> channel <br> this is  <i>coding wala</i> channel </body> </html>

Aline Attribute in Html

Image
Center     :    Aligns Word in center of web page   Example   :   align   = ”center ” . Left:    Aligns Word in Left of web page   Example   :   align   = ”Left ” . Right     :    Aligns Word in right of web page   Example   :   align= ”Right” . Justify    :    Justifies whole text of web page   Example   :   align   = ”justify” . Use of Aline tag ·        With <li>   List tag      Example   :     <li align=”right”> ·        With <hr> horizontal Rule Tag    Example :     <hr align=”left”> ·        With <p> paragraph Tag Example :   <p align=”Right”> Code  : <!DOCTYPE html> <html> <head...

subscript and superscript Tags in Html

subscript and superscript Tags in Html   : Superscript : The  <sup>  tag defines superscript text ( text above the line )                       Example :                                   2 S subscript :   The  <sub>  tag defines superscript text ( text below  the line )                             Example :                                   H 2 Code : <!DO...

horizontal rule in html

horizontal rule   : The HTML <hr> tag is used for creating a horizontal line. This is also called Horizontal Rule       in HTML.   This tag is not needs to close . Attributes    :  1. size  2 . noshade. Code   : <!DOCTYPE html> <html> <head> <title>Coding wala</title> </head> <body> this is alex  <hr size="10" noshade > good job <hr size="10" noshade> okay </body> </html> Video On Youtube  Link :  https://youtu.be/ka545_8zlKw

Marquee Tag in html

<marquee> <marquee> Tag Attributes : Loop : number of looping Direction : which side to Direct   properties : right , left ,up , down behavior: scroll (Default Scroll)  , slide , alternate Hspace :  use to display space both side Height   : applying Height of marquee tag Width : applying width of marquee tag Scrollamount : speed of marquee tag Style : styling  of marquee tag   Code  : <!DOCTYPE html> <html> <head> <title></title> </head> <body> <marquee Hspace=100 bgcolor=red Scrollamount=80 behavior=slide  Direction=right  ><h1>Coding Wala</h1></marquee> </body> </html> video link :  https://youtu.be/4VAjgStReOk

UL Li OL Tags In Html with all attributes

Code : <!DOCTYPE html> <html> <head> <title></title> </head> <body> <h1>Prog. language</h1> <br> <ul style="color: blue"> <li>C#</li> <li>java</li> <li>c++</li> </ul> <br> <h1>citys </h1> <br> <ol type="1" start="10" style="color: red"> <li>rajkot</li> <li>pune</li> <li>mumbai</li> </ol> </body> </html>

Delete Record From Data Base Without Reload page using Ajex And jquery in Asp.net MVC

Controller Code   : [HttpPost]         public JsonResult Delete(int id)         {             bool result = false;                 try                 {                     obj.Delete(id);                     result = true;                 }                 catch (Exception e)                 {                     Console.WriteLine(e);                     // Provide for exceptions.                 }            ...