State management in ASP .NET

State  management in ASP .NET
Disclaimer: This presentation is prepared by trainees of
baabtra as a part of mentoring program. This is not official
document of baabtra –Mentoring Partner
Baabtra-Mentoring Partner is the mentoring division of baabte System Technologies Pvt .
Ltd
Week Target Achieved
1 30 27
2 30 28
3
Typing Speed
Jobs Applied
# Company Designation Applied Date Current Status
1
2
3
State Management
Name
@gmail.com
www.facebook.com/userna
me
twitter.com/username
in.linkedin.com/in/profilena
me
Phonenumber
Why is state necessary?
• The vast majority of Internet applications
operate using the HTTP protocol.
• HTTP is state less.
– This means that each request for a page is treated
as a new request by the server.
Introduction to State Management
• Remember that ASP.NET is stateless
– The Web server does not keep track of past client
requests
• Different technologies handle the issue of
statement management differently
– ASP.NET is quite unique in this regard
Types of State Management
• ASP.NET offers two categories of state
management
– Pure client-side statement management
– Server-side state management
Client State Management
• View state
• Control state
• Hidden fields
• Cookies
• Query strings
State Management
(ViewState)
• ASP.NET preserves the state of the page’s controls between
post backs by packaging and encoding it within a hidden
html field.
• This view state feature can also be used programmatically to
preserve additional information between post backs for the
same page
Eg :- ViewState["RequestCount"] = count;
int count = (int)ViewState["RequestCount"];
Advantages & Disadvantage of
View State
• It consumes no server memory.
• It is more hidden than Query String and Hidden
Fields
• Its possible to encrypt View State information.
Disadvantage :-
– It increases the size of the page.
State Management
(ControlState)
• The ControlState property allows you to
persist information as like the view state.
– The ControlState data is stored in hidden
fields.
Control State Application
• If we create a custom control that requires
view state to work properly.
• We should use control state to ensure other
developers don’t break your control by
disabling view state.
State Management
(Hidden Fields)
• Use the HiddenField control to store
persisted data.
• The data is stored in the Value property
• It’s simple and requires no server resources
State Management
(Query Strings)
• A query string can be used to submit data
back to the same page or to another page
through the URL.
Eg :-
string url = "productPage.aspx?id=" + id;
Response.Redirect(url);
productPage.aspx
int id = Convert.ToInt32(Request*"id“+);
Disadvantages of Query String
• Not secured (its visible completely in the
address bar to the users)
• The maximum allowable length of a query
string varies from browser to browser(IE only
allows only 2k of url)
State Management
(Cookies)
• Cookies are a client-side approach for
persisting state information.
• These pairs accompany both server requests
and responses within the HTTP header
• Eg:-
HttpCookie cookie = new HttpCookie("Name",txtName.Text);
// Set expiry date to 1 day, 12 hours from now
cookie.Expires = DateTime.Now + new TimeSpan(1, 12, 0, 0);
Response.Cookies.Add(cookie);
Cookie Limitations
• While simple, cookies have disadvantages
• A cookie can only be 4096 bytes in size
• Most browsers restrict the total number of
cookies per site
• Users can refuse to accept cookies so don’t try
to use them to store critical information
Server State Management
• Application state
• Session state
Session state
• Session state is a server-based state
mechanism that allows you to store data in a
dictionary-style collection.
• It is scoped to the current browser session.
• That is, each user or browser session has a
different session state.
Example
• session*“uname”+=txt_uname.text;
String uname=session*“uname”+.Tostring();
Application state
• Application state is a server-stored state
mechanism that allows you to store global
data in a dictionary-style collection that is
accessible from all pages in the Web
application.
Application state
• Thus, application state is ideal for storing
relatively small, frequently used sets of data
that do not change from user-to-user or
request to request.
• Eg :-
Application["SiteRequestCount"] = 0;
int count = (int)Application["SiteRequestCount";
If this presentation helped you, please visit our
page facebook.com/baabtra and like it.
Thanks in advance.
www.baabtra.com | www.massbaab.com |www.baabte.com
Contact Us
Emarald Mall (Big Bazar Building)
Mavoor Road, Kozhikode,
Kerala, India.
Ph: + 91 – 495 40 25 550
NC Complex, Near Bus Stand
Mukkam, Kozhikode,
Kerala, India.
Ph: + 91 – 495 40 25 550
Start up Village
Eranakulam,
Kerala, India.
Email: info@baabtra.com
1 de 25

Recomendados

State management por
State managementState management
State managementIblesoft
1.1K vistas5 diapositivas
State management por
State managementState management
State managementteach4uin
2.3K vistas36 diapositivas
State Management in ASP.NET por
State Management in ASP.NETState Management in ASP.NET
State Management in ASP.NETShyam Sir
2K vistas75 diapositivas
State management por
State managementState management
State managementLalit Kale
1.3K vistas21 diapositivas
State Management In ASP.NET And ASP.NET MVC por
State Management In ASP.NET And ASP.NET MVCState Management In ASP.NET And ASP.NET MVC
State Management In ASP.NET And ASP.NET MVCjinaldesailive
22.9K vistas1 diapositiva
State management in ASP.NET por
State management in ASP.NETState management in ASP.NET
State management in ASP.NETOm Vikram Thapa
10.4K vistas28 diapositivas

Más contenido relacionado

La actualidad más candente

Chapter 8 part1 por
Chapter 8   part1Chapter 8   part1
Chapter 8 part1application developer
396 vistas23 diapositivas
C# cookieless session id and application state por
C# cookieless session id and application stateC# cookieless session id and application state
C# cookieless session id and application stateMalav Patel
399 vistas16 diapositivas
05 asp.net session07 por
05 asp.net session0705 asp.net session07
05 asp.net session07Mani Chaubey
215 vistas33 diapositivas
Servers names por
Servers namesServers names
Servers namesSasidhar Kothuru
195 vistas14 diapositivas
ASP.NET Lecture 4 por
ASP.NET Lecture 4ASP.NET Lecture 4
ASP.NET Lecture 4Julie Iskander
4.6K vistas28 diapositivas
Cache por
CacheCache
CacheANANDKUMARPATHAK
87 vistas2 diapositivas

La actualidad más candente(19)

C# cookieless session id and application state por Malav Patel
C# cookieless session id and application stateC# cookieless session id and application state
C# cookieless session id and application state
Malav Patel399 vistas
05 asp.net session07 por Mani Chaubey
05 asp.net session0705 asp.net session07
05 asp.net session07
Mani Chaubey215 vistas
Session 30 - Servlets - Part 6 por PawanMM
Session 30 - Servlets - Part 6Session 30 - Servlets - Part 6
Session 30 - Servlets - Part 6
PawanMM55 vistas
Session 29 - Servlets - Part 5 por PawanMM
Session 29 - Servlets - Part 5Session 29 - Servlets - Part 5
Session 29 - Servlets - Part 5
PawanMM49 vistas
Session 39 - Hibernate - Part 1 por PawanMM
Session 39 - Hibernate - Part 1Session 39 - Hibernate - Part 1
Session 39 - Hibernate - Part 1
PawanMM56 vistas
Session viii(state mngtserver) por Shrijan Tiwari
Session viii(state mngtserver)Session viii(state mngtserver)
Session viii(state mngtserver)
Shrijan Tiwari246 vistas
01 session tracking por dhrubo kayal
01   session tracking01   session tracking
01 session tracking
dhrubo kayal959 vistas
Using cookies and sessions por Nuha Noor
Using cookies and sessionsUsing cookies and sessions
Using cookies and sessions
Nuha Noor1.2K vistas
Query Store and live Query Statistics por SolidQ
Query Store and live Query StatisticsQuery Store and live Query Statistics
Query Store and live Query Statistics
SolidQ828 vistas
Session 31 - Session Management, Best Practices, Design Patterns in Web Apps por PawanMM
Session 31 - Session Management, Best Practices, Design Patterns in Web AppsSession 31 - Session Management, Best Practices, Design Patterns in Web Apps
Session 31 - Session Management, Best Practices, Design Patterns in Web Apps
PawanMM464 vistas
06 asp.net session08 por Vivek chan
06 asp.net session0806 asp.net session08
06 asp.net session08
Vivek chan324 vistas
Sql Server Security por Vinod Kumar
Sql Server SecuritySql Server Security
Sql Server Security
Vinod Kumar914 vistas
Session And Cookies In Servlets - Java por JainamParikh3
Session And Cookies In Servlets - JavaSession And Cookies In Servlets - Java
Session And Cookies In Servlets - Java
JainamParikh3113 vistas

Destacado

ASP.NET State management por
ASP.NET State managementASP.NET State management
ASP.NET State managementShivanand Arur
17K vistas10 diapositivas
State management por
State managementState management
State managementIblesoft
6.9K vistas26 diapositivas
Introduction to asp.net por
Introduction to asp.netIntroduction to asp.net
Introduction to asp.netMelick Baranasooriya
24.7K vistas13 diapositivas
State management in ASP.net por
State  management in ASP.netState  management in ASP.net
State management in ASP.netbaabtra.com - No. 1 supplier of quality freshers
2.6K vistas25 diapositivas
ASP.NET Tutorial - Presentation 1 por
ASP.NET Tutorial - Presentation 1ASP.NET Tutorial - Presentation 1
ASP.NET Tutorial - Presentation 1Kumar S
27.7K vistas13 diapositivas
Asp.net. por
Asp.net.Asp.net.
Asp.net.Naveen Sihag
31.1K vistas84 diapositivas

Destacado(20)

State management por Iblesoft
State managementState management
State management
Iblesoft6.9K vistas
ASP.NET Tutorial - Presentation 1 por Kumar S
ASP.NET Tutorial - Presentation 1ASP.NET Tutorial - Presentation 1
ASP.NET Tutorial - Presentation 1
Kumar S27.7K vistas
Asp.net presentation by gajanand bohra por Gajanand Bohra
Asp.net presentation by gajanand bohraAsp.net presentation by gajanand bohra
Asp.net presentation by gajanand bohra
Gajanand Bohra42.3K vistas
Presentation on asp.net controls por Reshi Unen
Presentation on asp.net controlsPresentation on asp.net controls
Presentation on asp.net controls
Reshi Unen3.3K vistas
Asp Net Advance Topics por Ali Taki
Asp Net Advance TopicsAsp Net Advance Topics
Asp Net Advance Topics
Ali Taki7.1K vistas
Concepts of Asp.Net por vidyamittal
Concepts of Asp.NetConcepts of Asp.Net
Concepts of Asp.Net
vidyamittal5.3K vistas
The complete ASP.NET (IIS) Tutorial with code example in power point slide show por Subhas Malik
The complete ASP.NET (IIS) Tutorial with code example in power point slide showThe complete ASP.NET (IIS) Tutorial with code example in power point slide show
The complete ASP.NET (IIS) Tutorial with code example in power point slide show
Subhas Malik11.8K vistas
ASP.NET Presentation por dimuthu22
ASP.NET PresentationASP.NET Presentation
ASP.NET Presentation
dimuthu225K vistas

Similar a State management in ASP .NET

State Management.pptx por
State Management.pptxState Management.pptx
State Management.pptxDrMonikaPatel2
4 vistas31 diapositivas
Session and cookies,get and post por
Session and cookies,get and postSession and cookies,get and post
Session and cookies,get and postbaabtra.com - No. 1 supplier of quality freshers
837 vistas29 diapositivas
state managment por
state managment state managment
state managment aniliimd
1.5K vistas11 diapositivas
State management 1 por
State management 1State management 1
State management 1singhadarsh
653 vistas26 diapositivas
Enterprise java unit-2_chapter-3 por
Enterprise  java unit-2_chapter-3Enterprise  java unit-2_chapter-3
Enterprise java unit-2_chapter-3sandeep54552
549 vistas21 diapositivas
session and cookies.ppt por
session and cookies.pptsession and cookies.ppt
session and cookies.pptJayaprasanna4
6 vistas53 diapositivas

Similar a State management in ASP .NET(20)

state managment por aniliimd
state managment state managment
state managment
aniliimd1.5K vistas
State management 1 por singhadarsh
State management 1State management 1
State management 1
singhadarsh653 vistas
Enterprise java unit-2_chapter-3 por sandeep54552
Enterprise  java unit-2_chapter-3Enterprise  java unit-2_chapter-3
Enterprise java unit-2_chapter-3
sandeep54552549 vistas
Session and Cookies.pdf por HamnaGhani1
Session and Cookies.pdfSession and Cookies.pdf
Session and Cookies.pdf
HamnaGhani12 vistas
SCRIMPS-STD: Test Automation Design Principles - and asking the right questions! por Richard Robinson
SCRIMPS-STD: Test Automation Design Principles - and asking the right questions!SCRIMPS-STD: Test Automation Design Principles - and asking the right questions!
SCRIMPS-STD: Test Automation Design Principles - and asking the right questions!
Richard Robinson1.4K vistas
TAG Presents: NetSuite SuiteFlow 101 por TAG
TAG Presents: NetSuite SuiteFlow 101 TAG Presents: NetSuite SuiteFlow 101
TAG Presents: NetSuite SuiteFlow 101
TAG4K vistas
Training Webinar: Detect Performance Bottlenecks of Applications por OutSystems
Training Webinar: Detect Performance Bottlenecks of ApplicationsTraining Webinar: Detect Performance Bottlenecks of Applications
Training Webinar: Detect Performance Bottlenecks of Applications
OutSystems2.5K vistas
HTML5 Local Storage por Lior Zamir
HTML5 Local StorageHTML5 Local Storage
HTML5 Local Storage
Lior Zamir1.3K vistas
ASP.NET 12 - State Management por Randy Connolly
ASP.NET 12 - State ManagementASP.NET 12 - State Management
ASP.NET 12 - State Management
Randy Connolly3.3K vistas
enterprisejavaunit-1chapter-2-210914075956.pdf por EidTahir
enterprisejavaunit-1chapter-2-210914075956.pdfenterprisejavaunit-1chapter-2-210914075956.pdf
enterprisejavaunit-1chapter-2-210914075956.pdf
EidTahir5 vistas
Enterprise java unit-1_chapter-2 por sandeep54552
Enterprise java unit-1_chapter-2Enterprise java unit-1_chapter-2
Enterprise java unit-1_chapter-2
sandeep54552503 vistas
Application Performance Tuning Techniques por Ram Nagesh
Application Performance Tuning TechniquesApplication Performance Tuning Techniques
Application Performance Tuning Techniques
Ram Nagesh1.3K vistas

Más de baabtra.com - No. 1 supplier of quality freshers

Agile methodology and scrum development por
Agile methodology and scrum developmentAgile methodology and scrum development
Agile methodology and scrum developmentbaabtra.com - No. 1 supplier of quality freshers
1.5K vistas26 diapositivas
Acquiring new skills what you should know por
Acquiring new skills   what you should knowAcquiring new skills   what you should know
Acquiring new skills what you should knowbaabtra.com - No. 1 supplier of quality freshers
1.5K vistas6 diapositivas
Baabtra.com programming at school por
Baabtra.com programming at schoolBaabtra.com programming at school
Baabtra.com programming at schoolbaabtra.com - No. 1 supplier of quality freshers
1.2K vistas16 diapositivas
99LMS for Enterprises - LMS that you will love por
99LMS for Enterprises - LMS that you will love 99LMS for Enterprises - LMS that you will love
99LMS for Enterprises - LMS that you will love baabtra.com - No. 1 supplier of quality freshers
1.6K vistas10 diapositivas

Más de baabtra.com - No. 1 supplier of quality freshers(20)

Último

Pharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptx por
Pharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptxPharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptx
Pharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptxMs. Pooja Bhandare
93 vistas51 diapositivas
CUNY IT Picciano.pptx por
CUNY IT Picciano.pptxCUNY IT Picciano.pptx
CUNY IT Picciano.pptxapicciano
54 vistas17 diapositivas
Psychology KS5 por
Psychology KS5Psychology KS5
Psychology KS5WestHatch
103 vistas5 diapositivas
Solar System and Galaxies.pptx por
Solar System and Galaxies.pptxSolar System and Galaxies.pptx
Solar System and Galaxies.pptxDrHafizKosar
94 vistas26 diapositivas
AUDIENCE - BANDURA.pptx por
AUDIENCE - BANDURA.pptxAUDIENCE - BANDURA.pptx
AUDIENCE - BANDURA.pptxiammrhaywood
89 vistas44 diapositivas
Psychology KS4 por
Psychology KS4Psychology KS4
Psychology KS4WestHatch
90 vistas4 diapositivas

Último(20)

Pharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptx por Ms. Pooja Bhandare
Pharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptxPharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptx
Pharmaceutical Inorganic chemistry UNIT-V Radiopharmaceutical.pptx
Ms. Pooja Bhandare93 vistas
CUNY IT Picciano.pptx por apicciano
CUNY IT Picciano.pptxCUNY IT Picciano.pptx
CUNY IT Picciano.pptx
apicciano54 vistas
Psychology KS5 por WestHatch
Psychology KS5Psychology KS5
Psychology KS5
WestHatch103 vistas
Solar System and Galaxies.pptx por DrHafizKosar
Solar System and Galaxies.pptxSolar System and Galaxies.pptx
Solar System and Galaxies.pptx
DrHafizKosar94 vistas
AUDIENCE - BANDURA.pptx por iammrhaywood
AUDIENCE - BANDURA.pptxAUDIENCE - BANDURA.pptx
AUDIENCE - BANDURA.pptx
iammrhaywood89 vistas
Psychology KS4 por WestHatch
Psychology KS4Psychology KS4
Psychology KS4
WestHatch90 vistas
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB... por Nguyen Thanh Tu Collection
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...
BÀI TẬP BỔ TRỢ TIẾNG ANH 11 THEO ĐƠN VỊ BÀI HỌC - CẢ NĂM - CÓ FILE NGHE (GLOB...
How to empty an One2many field in Odoo por Celine George
How to empty an One2many field in OdooHow to empty an One2many field in Odoo
How to empty an One2many field in Odoo
Celine George72 vistas
Use of Probiotics in Aquaculture.pptx por AKSHAY MANDAL
Use of Probiotics in Aquaculture.pptxUse of Probiotics in Aquaculture.pptx
Use of Probiotics in Aquaculture.pptx
AKSHAY MANDAL104 vistas
11.30.23 Poverty and Inequality in America.pptx por mary850239
11.30.23 Poverty and Inequality in America.pptx11.30.23 Poverty and Inequality in America.pptx
11.30.23 Poverty and Inequality in America.pptx
mary850239167 vistas
The Accursed House by Émile Gaboriau por DivyaSheta
The Accursed House  by Émile GaboriauThe Accursed House  by Émile Gaboriau
The Accursed House by Émile Gaboriau
DivyaSheta212 vistas
Classification of crude drugs.pptx por GayatriPatra14
Classification of crude drugs.pptxClassification of crude drugs.pptx
Classification of crude drugs.pptx
GayatriPatra1492 vistas
Ch. 8 Political Party and Party System.pptx por Rommel Regala
Ch. 8 Political Party and Party System.pptxCh. 8 Political Party and Party System.pptx
Ch. 8 Political Party and Party System.pptx
Rommel Regala53 vistas
Relationship of psychology with other subjects. por palswagata2003
Relationship of psychology with other subjects.Relationship of psychology with other subjects.
Relationship of psychology with other subjects.
palswagata200348 vistas
ISO/IEC 27001 and ISO/IEC 27005: Managing AI Risks Effectively por PECB
ISO/IEC 27001 and ISO/IEC 27005: Managing AI Risks EffectivelyISO/IEC 27001 and ISO/IEC 27005: Managing AI Risks Effectively
ISO/IEC 27001 and ISO/IEC 27005: Managing AI Risks Effectively
PECB 598 vistas
Drama KS5 Breakdown por WestHatch
Drama KS5 BreakdownDrama KS5 Breakdown
Drama KS5 Breakdown
WestHatch87 vistas
Pharmaceutical Inorganic Chemistry Unit IVMiscellaneous compounds Expectorant... por Ms. Pooja Bhandare
Pharmaceutical Inorganic Chemistry Unit IVMiscellaneous compounds Expectorant...Pharmaceutical Inorganic Chemistry Unit IVMiscellaneous compounds Expectorant...
Pharmaceutical Inorganic Chemistry Unit IVMiscellaneous compounds Expectorant...
Ms. Pooja Bhandare109 vistas

State management in ASP .NET

  • 2. Disclaimer: This presentation is prepared by trainees of baabtra as a part of mentoring program. This is not official document of baabtra –Mentoring Partner Baabtra-Mentoring Partner is the mentoring division of baabte System Technologies Pvt . Ltd
  • 3. Week Target Achieved 1 30 27 2 30 28 3 Typing Speed
  • 4. Jobs Applied # Company Designation Applied Date Current Status 1 2 3
  • 6. Why is state necessary? • The vast majority of Internet applications operate using the HTTP protocol. • HTTP is state less. – This means that each request for a page is treated as a new request by the server.
  • 7. Introduction to State Management • Remember that ASP.NET is stateless – The Web server does not keep track of past client requests • Different technologies handle the issue of statement management differently – ASP.NET is quite unique in this regard
  • 8. Types of State Management • ASP.NET offers two categories of state management – Pure client-side statement management – Server-side state management
  • 9. Client State Management • View state • Control state • Hidden fields • Cookies • Query strings
  • 10. State Management (ViewState) • ASP.NET preserves the state of the page’s controls between post backs by packaging and encoding it within a hidden html field. • This view state feature can also be used programmatically to preserve additional information between post backs for the same page Eg :- ViewState["RequestCount"] = count; int count = (int)ViewState["RequestCount"];
  • 11. Advantages & Disadvantage of View State • It consumes no server memory. • It is more hidden than Query String and Hidden Fields • Its possible to encrypt View State information. Disadvantage :- – It increases the size of the page.
  • 12. State Management (ControlState) • The ControlState property allows you to persist information as like the view state. – The ControlState data is stored in hidden fields.
  • 13. Control State Application • If we create a custom control that requires view state to work properly. • We should use control state to ensure other developers don’t break your control by disabling view state.
  • 14. State Management (Hidden Fields) • Use the HiddenField control to store persisted data. • The data is stored in the Value property • It’s simple and requires no server resources
  • 15. State Management (Query Strings) • A query string can be used to submit data back to the same page or to another page through the URL. Eg :- string url = "productPage.aspx?id=" + id; Response.Redirect(url); productPage.aspx int id = Convert.ToInt32(Request*"id“+);
  • 16. Disadvantages of Query String • Not secured (its visible completely in the address bar to the users) • The maximum allowable length of a query string varies from browser to browser(IE only allows only 2k of url)
  • 17. State Management (Cookies) • Cookies are a client-side approach for persisting state information. • These pairs accompany both server requests and responses within the HTTP header • Eg:- HttpCookie cookie = new HttpCookie("Name",txtName.Text); // Set expiry date to 1 day, 12 hours from now cookie.Expires = DateTime.Now + new TimeSpan(1, 12, 0, 0); Response.Cookies.Add(cookie);
  • 18. Cookie Limitations • While simple, cookies have disadvantages • A cookie can only be 4096 bytes in size • Most browsers restrict the total number of cookies per site • Users can refuse to accept cookies so don’t try to use them to store critical information
  • 19. Server State Management • Application state • Session state
  • 20. Session state • Session state is a server-based state mechanism that allows you to store data in a dictionary-style collection. • It is scoped to the current browser session. • That is, each user or browser session has a different session state.
  • 22. Application state • Application state is a server-stored state mechanism that allows you to store global data in a dictionary-style collection that is accessible from all pages in the Web application.
  • 23. Application state • Thus, application state is ideal for storing relatively small, frequently used sets of data that do not change from user-to-user or request to request. • Eg :- Application["SiteRequestCount"] = 0; int count = (int)Application["SiteRequestCount";
  • 24. If this presentation helped you, please visit our page facebook.com/baabtra and like it. Thanks in advance. www.baabtra.com | www.massbaab.com |www.baabte.com
  • 25. Contact Us Emarald Mall (Big Bazar Building) Mavoor Road, Kozhikode, Kerala, India. Ph: + 91 – 495 40 25 550 NC Complex, Near Bus Stand Mukkam, Kozhikode, Kerala, India. Ph: + 91 – 495 40 25 550 Start up Village Eranakulam, Kerala, India. Email: info@baabtra.com