Total Questions:-205 Goto Page:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
R4R ---> Articles--> ASP.net -->ASP.net Articles List
Page 1
Articles:
What is BulletedList Control in Share Point. Give an example?
Post Your View
ViewsBullet style allow u choose the style of the element that precedes the item.here u can choose numbers, squares, or circles.here child items can be ren
For More
By:harry
Date:
Articles:
Write a program to show connection with Oracle in ASP.NET?
Post Your View
Views OleDbConnection x;
OleDbCommand y;
OleDbDataReader z;
protected void Page_Load(object sender, EventArgs e)
{
x = new
For More
By:harry
Date:
Articles:
Write a program to show connection to Excel in ASP.NET?
Post Your View
ViewsOleDbConnection x;
OleDbCommand y;
OleDbDataReader z;
protected void Page_Load(object sender, EventArgs e)
{
x = new OleD
For More
By:harry
Date:
Articles:
Write a program in ASP.NET to Show Data With Access?
Post Your View
ViewsPage_Load():-
OleDbConnection x;
OleDbCommand y;
OleDbDataReader z;
protected void Page_Load(object sender, EventArgs e)
{
For More
By:harry
Date:
Articles:
@Page directive
<%@ MasterType VirtualPath="~/MasterPage.master" %>
The above syntax is used to make the Master property typed to the class that is stored in the referenced master on ASP page.
1.Yes
2.No
Post Your View
Views
By:Vivak
Date:
Views
By:ravi
Date:
Views
By:jagadeesh
Date:
Articles:
Advantages of using Session State?
Post Your View
ViewsAdvantages:
1. It is easy to implement.
2. Ensures platform scalability,works in the multi-process configuration.
3. Ensures data durability, since
For More
By:Aditya
Date:
Articles:
ASP.NET Supports “Nested Master Page”
1.Yes
2.No
Post Your View
Views
By:Gareema
Date:
Views
By:bsundaramoorthy
Date:bsundaramoorthy@gmail.com
Articles:
ASP.net Versions ?
Post Your View
ViewsASP .NET version 1.0 was first released in January 2002
ASP .NET version 1.1 released in April 2003 (ASP .NET 2003)
ASP .NET version 2.0 released in
For More
By:Aditya
Date:
Articles:
Can the action attribute of a server-side <form> tag be set to a value and if not how can you possibly pass data from a form page to a subsequent page.
Post Your View
ViewsNo, You have to use Server.Transfer to pass the data to another page.
For More
By:Aditya
Date:
Articles:
Can you dynaimically assign a Master Page?
Post Your View
Views void Page_PreInit(Object sender, EventArgs e) {
if (Request.Browser.IsBrowser("IE")) {
this.MasterPageFile = "ArticleMas
For More
By:Sonali Terse
Date:sonali.c.terse
ViewsPreInit stage using the Page class MasterPageFile property as shown in the code sample below. Using this you can assign a master page dynamically.
For More
By:Aditya
Date:
Go:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21