2 Number Asp
2 Number Asp
4. Name Web Forms Control & Define Web Forms controls ASP.NET mein
predefined controls hote hain jo user input lete hain. Jaise: TextBox (text input),
Button (click action), DropDownList (select option), CheckBox (true/false),
RadioButton (multiple options). In controls ka use web forms mein interaction
ke liye hota hai. Ye server-side controls hote hain aur inki processing server par
hoti hai. Inse web apps banana easy aur structured ho jata hai.
5. What is Dataset Class? Dataset ek class hoti hai .NET framework mein jo
memory mein data ko tabular form mein store karti hai. Isme multiple DataTable
objects ho sakte hain. Dataset disconnected data architecture ko support karta
hai, yani ek baar data load hone ke baad usse database se connection ki jarurat
nahi hoti. Iska use mostly data manipulation aur data binding ke liye hota hai
web aur windows applications mein.
8. What is Data Bound Control? Data Bound Controls aise controls hote hain
jo kisi data source se directly bind kiye ja sakte hain. Jaise: GridView, DataList,
Repeater. Inka use data ko display karne ke liye hota hai jo kisi database ya XML
file se aata hai. Ye controls data ko structure ke saath easily dikhate hain aur
CRUD (Create, Read, Update, Delete) operations ke liye bhi use hote hain.
11. What is Session State? Session State ASP.NET ka feature hai jisme user
specific data server par store kiya jata hai jab tak user session active hai. Iska
use temporary data jaise username, user preferences ko store karne ke liye
hota hai. Jab user website ko access karta hai, ek session ID generate hota hai
jo browser ke through identify hota hai. Ye per-user data ko manage karta hai.
12. What is Data Grid? Data Grid ek ASP.NET control hai jo tabular format mein
data display karta hai. Ye data sources jaise SQL database, XML files, etc. se
bind hota hai. Data Grid sorting, paging, and editing jaise features provide karta
hai. Iska use web applications mein large data sets ko user-friendly way mein
show karne ke liye hota hai. Ye interactive aur customizable hota hai.
13. What is XML Parser? XML Parser ek tool ya library hoti hai jo XML
documents ko read, interpret, aur manipulate karta hai. Ye XML data ko process
karne ke liye use hota hai web applications mein. Parser data ko structured
format mein convert karta hai jise application samajh sake. DOM (Document
Object Model) aur SAX (Simple API for XML) do common parsing methods hain.
XML parser reliable data exchange ke liye important hota hai.
16. What is Web Server? Web Server ek aisa software ya hardware system
hota hai jo client se aayi HTTP requests ko handle karta hai aur web pages
provide karta hai. ASP.NET applications mostly IIS (Internet Information
Services) web server par chalte hain. Ye static aur dynamic content serve karta
hai jaise HTML, ASPX files.
17. What tag is used to find version of XML? XML version define karne ke liye
XML declaration tag use hota hai:
Ye tag hamesha XML file ke start mein hota hai aur ye batata hai ki XML kaunsa
version use kar raha hai. Encoding attribute batata hai ki text kis character set
mein likha gaya hai.
Is tag mein version attribute XML version batata hai. Mostly version 1.0 use hoti
hai.
18. Explain XML Elements XML elements data ko represent karte hain. Ek
element start tag, content aur end tag se milkar banta hai: Deepak Yahan start
tag hai, Deepak content hai, aur end tag hai. XML elements structured aur
readable data store karne mein help karte hain.
19. Define XML Namespace XML Namespace ka use XML document mein
elements aur attributes ke naming conflict ko avoid karne ke liye hota hai. Ye ek
URI (Uniform Resource Identifier) hota hai jo uniquely identify karta hai XML
elements ko. Syntax: xmlns:prefix="URI" Example: xmlns:book="http://
example.com/book"
20. What is Cookie? Cookie ek small piece of data hota hai jo web browser
user ke system par store karta hai. Iska use user-related information store
karne ke liye hota hai jaise login info, user preferences, etc. Cookie client-side
par store hoti hai aur har request ke sath server ko bheji ja sakti hai. Session
management aur tracking ke liye cookies useful hoti hain.