Posts

Showing posts from October, 2022

* TEMPLATES WORKING *

                                                * TEMPLATES *      Templates is a pre defined design.    There are two types of templates Free and Paid.     Category Of Templates     HTML Template     J query Templates    Boostrap Template

9 ) Masterpage

                                             *   MASTERPAGE *   Masterpage is commmon to all    Masterpage extension        Masterpage Section      Header :-  Logo ,company name      Menu   :-  Option (home, about , menu)      Folder  :- Copyright      Placeholder :- Viewing in all page   Q) How to create a masterpage        Step 1  :- file ---c#---website--folder---solutionexplorer--select root and website ---add                         new item---visual C#---MasterPage---masterpagename:- name.master--add...       step 2 :-Source :- <div>                           ...

8 ) Validation Control (Require Field vaidatore , Range Validatore , Regular expression , Compare validatore)

                                      *  Validatore Controle *   Accepting only correct data     There are two types of  Validation Controle       Client side validation      Server side validation    All types of validation of controle is called server side controle.         Server Side Validation     Def :- In this concept we have to use validation control.

7 ) DATA TRANSFORMISSION ( SESSION ,QUERYSTRING )

                             * DATA TRANFERMISSION * Data transefermission is a process for Transfering Data one page to another page it called state management .       There are falling state management usend in a Dotnet.  Session  Querystring  Viewstate   Cookies   Application State Session   Session is a state management   Session default 60 sec secure data transfer   Q ) How to create a session   :- All session create inside the event   1st page pe session create krte hai aur second page pe show krte hai      Syntax :- Session ["variable name"] = Controle Name              Ex . 1 ) Textbox                :- Session["roll"] = TextBox1.Text ;                     2 )  DropDow...

6 ) CHECKBOX CONTROLE

                                      * CHECKBOX CONTROLE *  Select  a data value . Checkbox always run If condition.             If(CheckBox1.Checked==true)                   {                   }             Else                    {                    }  Step :- Goto page -- toolbox --checkbox--and add Textbox  Properties :-   Autopostbackurl False change True  

5 ) CONTAIN MANAGEMENT ( MULTIVIEW )

                                  * Contain Management *  Contain Management system where multiple information display in single pages .  Contain management is to Multiview controle.     MUTIVIEW  CONTROLE  Create a multiple views. Multiview is an Array.      Properties :- Active View Index     Step :- add 4 button from tool ---enter next line--- select multiview in tool--- properties :-               activeviewindex = 0---select multiview in white portion goto tool and select 4                       times (view tool) ---and add msg in view white portion--- coding on button.        * Propeties active view index  by default it is "-1"  remove and select "0"     * Beacuse array start in 0 locatio...

4 ) DROPDOWNLIST

                             *     DropDownList   *   Q 1 )      How to add data in Dropdownlist     Step  : -   toolbox -- dropdownlist--[>]--edit items--add--text(name)--ok     Design :-     textbox , dropdownlist ,button(add)     Coding through :-    {     DropDownList1.Items.Add(TextBox1.Text);     }   Q 2 ) how to print dropdown data in Textbox                 Coding thorugh :- double click on Dropdownlist          Code :-    TextBox1.Text = DropDownList1.Text; 

3) #ASP.net Date And Time

Image
                                          * Date and time *  Date and Time it is a Library  It accetable current date       Label it is cotrole.          Design :-  Label      Coding  :- Label.text  =  Datetime.Now.Tostring("dd/MM/yyyy") ;

2) Dotnet Navigation(button,hyperlink,Linkbutton,imagebutton)

                                                                 *  DotnetNavigation(button,hyperlink,Linkbutn,imagebutn) *                Button                                   Properties      Button                         Text :- common property of all controle    Hyperlink                    1) text 2) nvigateurl     Linkbutton                       1) text  2) postbackurl     Imagebutton            ...

1) WEB DEVELOPING IN DOTNET

Image
                                 * WEB DEVELOPING IN DOTNET * Step 1)    Create a folder   step 2)   Dotnetapp ->-file->-website->-visualc#- >-Asp.NET web site->-browser->-                      select folder->-ok.

C# 13 ) C# COLLECTION (Arraylist ,Stack)

Image
                                    * C# COLLECTION  * Library :-  using .System.Collections ; Collection is a special type of task it contain the group of data element .there are some type of collection  in C# . All collection store in System.Collections : library

C# 12 ) ENUM

Image
                                         *    ENUM   * Enum is special type of class for represnting the Constant(fixed) data value. Enum is tobe create before the Main class.

C# 11 ) CONSTRUCTER

Image
                                    *   CONSTRUCTER  * int  a ;           object  int  a=10;      initilization Constructer is a object initilization process. ex.  my m1=10 ; Rules     Class name and Method name are similar.                class  my( )                          {                            Public my( )                           {                            }                         }    Constructer Method not use (v...

C# 10 ) INHERITANCE

Image
                                 *   Inheritance   * Inheritance mainly use minimum 2 classes. Inheritance  is a reusibility of class. There are two classes  Base class(parient)   2 Derive class(child) Base class always provide information to Derive class C# not support multiple inheritance. Main Class not count in inheritance

C# 9 ) Array

Image
                                             *   ARRAY   * Array is colletion of similar type data value . Array is always starting 0 position. ex. [ 0 ] [1] [2] [3]  Array sepraters  [ ] .

C# 8 ) FUNCTION OVERLOADING

Image
                      *      FUNCTION OVERLOADING    * Where the function name are similar and activites are diffrent  Function not use semicoloun (  ; ).

C# 7 ) C# CLASS AND OBJECT

Image
                               *    CLASS  AND  OBJECT  *  class is a collection of member and method.   MEMBER :- all variable inside the class are members.  METHOD :- all function is called method .  Class keyword is used for class. Q ) Rules for  creating a class .  all class before create to main class programme .   class my       {     //  method         public void display()         {             Console.WriteLine("sourabh");         }      }        All class member or method access inside the main.     all member and method access inside the main body using object.              Q ) how to create object    Syntax :-...

C# 6) C# STRING HANDLING FUNCTION

Image
                     * STRING HANDLING FUNCTION * Lenght    :-  mohan          output  :- 5 ToUpper  :- mohan          output  :- MOHAN ToLower  :-MOHAN       output :- mohan Concat   :- Ajay  Vijay       output :- AjayVijay IndexOf   :-  return character position ex Indexof("a")  sourabh     output :- 4  Index fund choose a character right to left side .  All string value start in 0 index. DOUBLE.PARSE   decimal value ke liye ex 7.33 INT.PARSE              normal value ke liye  ex  75

DATABASE SQL DAY 9) STORE PROCEDURE

 * STORE PROCEDURE IS SET OF OPERATION PERFORM IN A DATABASE.  * STEP 1 --DATABASE--PROGRAMIBILITY--STORE PROCEDURE RIGHT CLICK--NEW                           STORE  PROCEDURE--SELECT A AND ALL DELETED.   * CREATE PROCEDURE COMMAND IS USED. *---CREATE ----* CREATE PROCEDURE EMPLOYEE AS  BEGIN SELECT NAME,SALARY,ID FROM emp; END; * STEP2 --GO TO THE QUERY WINDOW AND EXECUTE COMMAND(USI DATABSE PE RIGHT                          CLICK KRKE QUERY RUN KRO). *--UPDATE--* ALTER PROCEDURE EMPLOYEE AS  BEGIN SELECT NAME,SALARY,ID FROM emp; END;

C# 5) C# MATH FUNCTION in asp.net

Image
                                                               MATH FUNCTION  * Related the mathematics    Max :- the maximum value show biggest value   Min  :- minimum value   Abs   :- abs return positive value ex.-75   output 75   Sqrt   :- squareroot  Round :-  round is decimal value ex .9.49 output 9                                                              9.50 output 10

C# 4) LOOPING ( WHILE , DO WHILE , FOR )

Image
                                                 Looping                             *  Is provide the repetation of statement .  While Loop  Do While Loop  For Loop

C# 3) PRORAME MANAGEMENT ( IF ELSE , ELSE IF , SWITCH CASE STATEMENT)

Image
                                                          C# PROGRAME MANAGEMENT 

C # 2) VARIABLES

Image
                                                           C #  VARIABLES    * SAME AS JAVASCRIPT   1) NUMBER                                       10                  INT    2) FLOAT                                           10.5               FLOAT  3) NAME/CHARACTER               RAM / A      STRING/ CHAR 1)  INT              A=10; 2)  FLOAT         ...

DOTNET C # ( 1 ) ( DOTNET AND C# INFORMATION )

                                                                 DOTNET C# (BASICS)  *     DOTNET FRAMEWORK  1) FRAMEWORK 2) COLLECTION OF TOOLS / LIBRARY / ETC. *      DOTNET SUPPORT LANGUAGES 1) C#  2)PHYTHON  3)JAVA  4) C++   5) VB(VISUAL BASE)   *  DOTNET DEVELOPMENT ENVIRONMENT 1) CONSOLE ENVIRMENT ( C BASIC PROGRAME) 2) WEB ENVIRMENT ( WEBSITE DEVELOPMENT)  3) WINDOW ( WINDOW SOFTWARE DEVELOPMENT) * C# LANGUAGES PROGRAMMING VALID STEP    EX .   A=10                    C=A+B             B=20                  ...