You are on page 1of 20

c Basic ASP.

NET Interview Questions for freshers Part 2


c ’requently asked ASP.NET, C# Interview questions

1)c What is the main difference between an ASP.NET Web application and a traditional
Windows application.
ASP.NET Web applications runs under common language runtime using managed code where as
Unmanaged Windows application runs under Windows using unmanaged code.

2)c What are the two main parts of the .NET ’ramework?
The two main parts of the .NET ’ramework are

1.c The common language runtime (CLR).


2.c The .NET ’ramework class library.

3)c When can¶t you use ASP.NET to create a Web application?


When you are developing for non±Microsoft Windows Web servers, such as Linux/Apache.

List the four major differences between Web and Windows applications.
c Web forms cannot use the standard Windows controls. Instead, they use server controls,
HTML controls, user controls, or custom controls created specially for Web forms.
c Web applications are displayed in a browser. Windows applications display their own
windows and have more control over how those windows are displayed.
c Web forms are instantiated on the server, sent to the browser, and destroyed immediately.
Windows forms are instantiated, exist for as long as needed, and are destroyed.
c Web applications run on a server and are displayed remotely on clients. Windows
applications run on the same machine they are displayed on.

Describe the life cycle of a Web application: When are Web forms instantiated and how long do
they exist?
A Web application starts with the first request for a resource within the application¶s boundaries.
Web forms are instantiated when they are requested. They are processed by the server and are
abandoned immediately after the server sends its response to the client. A Web application ends
after all client sessions end.

How do you preserve persistent data, such as simple variables, in a Web application?
You can preserve data in state variables, such as ApplicationState, SessionState, or ViewState.

How does the .NET ’ramework organize its classes?


The .NET ’ramework uses namespaces to organize its classes.

In Visual Basic .NET, what is the difference between a class module and a code module?
Class modules are instantiated at run time to create objects that provide separate storage for
variables and properties in each instance. Code modules do not have instances, so any module-
level variables they use are shared among calls to the module¶s procedures.

In Visual C#, how do you declare a method to make it available without having to first
instantiate an object from the class?
To create a method that can be called without instantiating an object, declare that method as
static.

How do you call a member of a base class from within a derived class?
To refer to a member of a base class in Visual Basic .NET, use the MyBase keyword. To refer to
a member of a base class in Visual C#, use the base keyword.

Where would you save the following data items so that they persist between requests to a Web
form?

c A control created at run time


c An object that provides services to all users
c User preferences

c Save controls created at run time in the Page object¶s ViewState.


c Save objects that provide services to all users in the Application state.
c Save user preferences in SessionState.

What is the main difference between the Button server control and the Button HTML control?
When clicked, the Button server control triggers an ASP.NET Click event procedure on the
server. The Button HTML control triggers the event procedure indicated in the button¶s onclick
attribute, which runs on the client.

How do you get several RadioButton controls to interoperate on a Web form so that only one of
the RadioButton controls can have a value of True/true at any given time?
Set the GroupName property of each RadioButton to the same name.

Why does ASP.NET perform validation on both the client and the server?
Client-side validation helps avoid round-trips to the server. Validating on the client ensures that
the data is valid before it is submitted, in most cases. However, because validation might be
turned off (or maliciously hacked) on the client, data must be revalidated on the server side. This
provides full assurance that the data is valid while avoiding as many round-trips as possible.

What types of validation would you use to verify that a user entered a valid customer number?
You would use a Required’ieldValidator and a RegularExpressionValidator. If you have access
to a list of expected customer numbers, you could replace the RegularExpressionValidator with a
CustomValidator that checked the list.

What is wrong with the following line of code?


Server.Transfer("Default.htm");
You can¶t use the Transfer method with HTML pages. It works only with .aspx pages.

Why can¶t you open a new browser window from within server code?
Server code executes on the server, whereas the new window is created on the client. You need
to use client-side code to do things that affect the client, such as upload files, display new
windows, or navigate back in history.

What steps would you follow and what objects would you use to quickly find the number of
records in a database table?
There are two ways to accomplish this task:

c Use a database connection and a command object to execute a SQL command that re-
turns the number of rows in the table.
c Use a database connection and data adapter object to create a data set for the table, and
then get the number rows in the data set.

How do typed data sets differ from untyped data sets, and what are the advantages of typed data
sets?
Typed data sets use explicit names and data types for their members, whereas untyped data sets
use collections to refer to their members. The following examples show a typed reference vs. an
untyped reference to a data item:
// Typed reference to the Contacts table's HomePhone column.
DataSet1.Contacts.HomePhoneColumn.Caption = "@Home";
// Untyped reference to the Contacts table's HomePhone column.
DataSet1.Tables["Contacts"].Columns["HomePhone"].Caption = "@Home";
Typed data sets do error checking at design time. This error checking helps catch typos and type
mismatch errors, which would be detected only at run time with untyped data sets.

How do you call a stored procedure?


Create a command object, set the object¶s CommandText property to the name of the stored
procedure, and set the CommandType property to StoredProcedure. To execute the stored
procedure, use the command object¶s ExecuteNonQuery, ExcecuteScalar, ExecuteReader, or
ExecutelXmlReader method. ’or example, the following code calls the Ten Most Expensive
Products stored procedure on the Northwind Traders database:
// Create a connection for NorthWind Trader's database.
SqlConnection connNWind = new SqlConnection("integrated security=SSPI;" +
"data source=(local);initial catalog=Northwind");
// Create a command object to execute.
SqlCommand cmdTopTen = new SqlCommand(connNWind);
cmdTopTen.CommandText = "Ten Most Expensive Products";
// Set the command properties.
cmdTopTen.CommandType = CommandType.StoredProcedure;
// Create a data reader object to get the results.
SqlDataReader drdTopTen;
// Open the connection.
connNWind.Open();
// Excecute the stored procedure.
drdTopTen = cmdTopTen.ExecuteReader();

Explain the difference between handling transactions at the data set level and at the database
level.
Data sets provide implicit transactions, because changes to the data set aren¶t made permanent in
the database until you call the Update method. To handle transactions in a data set, process the
Update method and check for errors. If errors occur during an update, none of the changes from
the data set is made in the database. You can try to correct the error and resubmit the update, or
you can roll back the changes to the data set using the RejectChanges method.

Databases provide explicit transactions through the Transaction object. You create a Transaction
object from a database connection and then assign that Transaction object to the commands you
want to include in the transaction through the command object¶s Transaction property. As you
perform the commands on the database, you check for errors. If errors occur, you can either try
to correct them and resubmit the command, or you can restore the state of the database using the
Transaction object¶s RollBack method. If no errors occur, you can make the changes permanent
by calling the transaction object¶s Commit method.

Explain why exception handling is important to a completed application.


When an unhandled exception occurs in an application, the application stops²the user can¶t
proceed, and any work he or she did immediately prior to the exception is lost. Exception
handling provides a way to intercept and correct unusual occurrences that would otherwise cause
these problems.

List two different exception-handling approaches in ASP.NET Web applications.


Exceptions can be handled in exception-handling blocks using the Try, Catch, and ’inally
keywords in Visual Basic .NET or the try, catch, and finally keywords in Visual C#. They can
also be handled using Error event procedures at the Global, Application, or Page levels using the
Server object¶s GetLastError and ClearError methods.

Describe the purpose of error pages and why they are needed.
Because Web applications run over the Internet, some exceptions occur outside the scope of the
application. This means that your application can¶t respond directly to these exceptions. These
types of exceptions are identified by HTTP response codes, which IIS can respond to by
displaying custom error pages listed in your application¶s Web.config file.

Explain why tracing helps with exception handling.


Tracing allows you to record unusual events while your application is running, without users
being aware of it. If an unanticipated exception occurs, your application can write a message to
the trace log, which helps you diagnose problems during testing and after deployment.
Related Articles
c Basic ASP.NET Interview Questions for freshers Part 2
c ’requently asked ASP.NET, C# Interview questions

S 
   !"S#  #
hi
i am freshers candiate. this type of question very useful to perpare interview. i need online
testing for asp.net .

thank you


   !"S#$
%
a

S 
   &!"S#'(
send me asp interview question and answers and coding

S 
    !"S#) # *
thanks to u for providing such questions for freshers,as i am also a fresher i am thank full to
you...coz these types of question can be asked in the interview...they r to d point,and must
known questions,i will be thank full if u provide your great objective questions collection
too..thanks again...

S 
    +!"S##   
Hi, Please some one help me to forward a link to go through the video's of ASP.NET and
implement by own seeing the videos...

S 
   & &!"S#, 
hi plz send the asp.net with c# coding

  -./#&&+!"S# 0 1


give details chapterwise

S 
  &++!"S#! '2 3
S 4
Provide me basic questions of ASP.NET

S 
  &!"S#/
please,give more asp.net question,the give me easy answer.

S 
  &5& !"S#0 - /
Basic ASP.NET Interview Questions for freshers

S 
  && !"S#*,
plz send me all the c#.net and asp.net and sqlserver questions and answers ...plz..plz thank you
in advance

S 
  &&!"S#
Plsssss send me all ASP.NET and C sharp QUESTIONS AND ANSWERS. Thanks Pls send

S 
   6 &!"S#
,. 0 - 
thanks in advance

S 
  +5 !"S# 6,
plz send me the interview questions and answers of .net

S 
  +5!"S#0 / ,  0
plz send me all questions of c#,asp.net,ado.net for freshers..... i m fresher.these quesions r very
useful for me.....

S 
  +&!"S# 
send me asp.net interview question for fresher level

S 
  ++5!"S#7
Hi
I ’inish MCA and searching ’or Job Please Send Interview Question ’or Dot Net ’ull
version.. And Coding ’or Program.(VB.Net,Asp.net)

S 
  +&&!"S#8 0# 
Hi
I ’inish MSC.IT and searching ’or Job Please Send Interview Question ’or Dot Net ’ull
version.(C#,ASP,VB,SQL & ADO.Net). And Coding ’or Program.(VB.Net,Asp.net)

S 
  +!"S# 
plz send me some questions and ans to prepare may self

S 
  +& !"S# 6,
Hi,
i finished GNIIT from niit and i m also searching job in my field. Plz send me asp.net
Questions and answer to prepare my self to get my firs job

Thanx....

S 
  ++5 !"S#  0 
Hi,
thanks for you helping me in this way.

S 
  +5&!"S#- 
0 66#
plz send me recent interview questions in freasher 2010

#, /  , +&55!"S# 6 


typed

S 
  !"S# )0- 
, 
i want to qustion for .net interview in it sector
, 6 , & !"S# )0- , 
please give question for .net interview with answer

S 
  5!"S#0 0
i want .net basic interview questions for use my carrier

S 
   &!"S#0,  6 )
what is state managment

//.  9 : !"S#0,  6 )


intervioew questions of c# for frshers

S 
   !"S#0,  6 )
all Basic ASP.NET Interview Questions with answrs

S 
  +!"S# 
Ya, it's very much useful to me during the interviews

S 
   !"S#- 
please send DOT NET freshers Questions and Answer

S 
  & !"S# 
Wat s delegates and
threading

S 
   5!"S#-
0-  
please send the iis 5.0 architecture life cycle

,/(/ ,  ,6  1-//   !"S#-0- 


 
System.IO.’ileNot’oundException was unhandled by user code Message="Could not find file
'C:\\Documents and Settings\\Administrator\\My Documents\\Visual Studio
2005\\xml\\data.xml'." Source="mscorlib" ’ileName="C:\\Documents and
Settings\\Administrator\\My Documents\\Visual Studio 2005\\xml\\data.xml" StackTrace: at
System.IO.__Error.WinIOError(Int32 errorCode, String maybe’ullPath) at
System.IO.’ileStream.Init(String path, ’ileMode mode, ’ileAccess access, Int32 rights, Boolean
useRights, ’ileShare share, Int32 bufferSize, ’ileOptions options, SECURITY_ATTRIBUTES
secAttrs, String msgPath, Boolean b’romProxy) at System.IO.’ileStream..ctor(String path,
’ileMode mode, ’ileAccess access, ’ileShare share, Int32 bufferSize) at
System.Xml.XmlDownloadManager.GetStream(Uri uri, ICredentials credentials) at
System.Xml.XmlUrlResolver.GetEntity(Uri absoluteUri, String role, Type ofObjectToReturn) at
System.Xml.XmlTextReaderImpl.OpenUrlDelegate(Object xmlResolver) at
System.Threading.CompressedStack.runTryCode(Object userData) at
System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(Try
Code code, CleanupCode backoutCode, Object userData) at
System.Threading.CompressedStack.Run(CompressedStack compressedStack, ContextCallback
callback, Object state) at System.Xml.XmlTextReaderImpl.OpenUrl() at
System.Xml.XmlTextReaderImpl.Read() at System.Xml.XmlTextReader.Read() at
System.Xml.XmlReader.MoveToContent() at System.Data.DataSet.ReadXml(XmlReader
reader, Boolean denyResolving) at System.Data.DataSet.ReadXml(String fileName) at
_Default.GridView1_RowUpdating(Object sender, GridViewUpdateEventArgs e) in
c:\Documents and Settings\Administrator\My Documents\Visual Studio
2005\xml\Default.aspx.cs:line 38 at
System.Web.UI.WebControls.GridView.OnRowUpdating(GridViewUpdateEventArgs e) at
System.Web.UI.WebControls.GridView.HandleUpdate(GridViewRow row, Int32 rowIndex,
Boolean causesValidation) at System.Web.UI.WebControls.GridView.HandleEvent(EventArgs
e, Boolean causesValidation, String validationGroup) at
System.Web.UI.WebControls.GridView.OnBubbleEvent(Object source, EventArgs e) at
System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) at
System.Web.UI.WebControls.GridViewRow.OnBubbleEvent(Object source, EventArgs e) at
System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) at
System.Web.UI.WebControls.LinkButton.OnCommand(CommandEventArgs e) at
System.Web.UI.WebControls.LinkButton.RaisePostBackEvent(String eventArgument) at
System.Web.UI.WebControls.LinkButton.System.Web.UI.IPostBackEventHandler.RaisePostBa
ckEvent(String eventArgument) at
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String
eventArgument) at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint,
Boolean includeStagesAfterAsyncPoint) InnerException:

S 
  +&!"S#
8   -/
I MCA Completed,’resher .NET 3.5 (C#,ASPVB) .NET,Sql Server2008 Interview And
Answers Plz Send me.
S 
  5+!"S#' )
please send me latest interview questions

S 
   &55!"S#. / )
i want single line answers
so plz put it single line and very short and simple answers for easy manor

S 
  &!"S# /8- 
' 
Hi Sir,

I want a Basic ASP.NET Interview Questions for freshers ,so please send me in my e-mail
id.

Thanks

Anil Kumar Rai

S 
   !"S#'0#
thnx buddy these qn. help me alot to prepare for ma interview..................!!!!!!!!

S 
   !"S#) #
8- 
Hi I am fresher and please send me the question related to ajax, silverlight in asp.net . Thanks

S 
  555!"S#;  /
/ 0 
Hello Sir, I am a fresher and need to have test on ASP.net please send me the test paper asap
.......

S 
  &!"S#  ' 
hi sir,

I MCA Completed,’resher .NET 3.5 (C#,ASPVB) .NET,Sql Server2005 Interview And


Answers Plz Send me.
Thanking you sir,
Regards
Anitha

S 
  55!"S#<8<!'
I Need Interview Question About VB.Net,ASP.Net,C#.Net!
Please Send it!

Regards
Sukumar

S 
  5!"S#0 - *
# 6 
how to apply validation's on asp.net

S 
  5 !"S# 0
sir i my MCA fresher and kindly request plz send me sql nd asp.net interview question and
answers

S 
  &!"S#
=
4$

%>'
Need more questions and answer

S 
  &!"S#- -
Sir, I want a Basic ASP.NET Interview Questions for freshers ,so please send me in my e-mail
id. thanks mamta

S 
  &55 !"S# *
im a fresher so i need basic inteview ? for .net

S 
  &5!"S#- 
i need more questions about asp.net.
S 
  ++!"S# ,0 
 *
i m a fresher i need Question

S 
  &5 !"S#'%<?
4'>?
please provide asp.net fresher interview questions in pdf or doc file.

S 
  +5&!"S#.
i need more basic questions in vb.net and asp.net and some frequently asked interview questions

S 
  +!"S#? 
plz send all asp.net ,vb.net question for fresher

S 
  + !"S# 6/0- 
0
The Q & Ans part is execellent & is usefull to me as well as other asp.net programmers. Nice.
Keep it up.

yours
sendhilkumar sk

S 
  !"S# - ), 6
dear sir
i want asp questionsand answers please send me

,/ 6. 


  -#- /+&5!"
S#  
the site is good

S 
  !"S#;@ 0 
66#
hi sir..,
I C.Venkatesh Reddy looking for fresher jobs ..,i need interview questions on whole .net plz
send me thnkng u sir..,

S 
  +!"S#) # -
Sir, I want a Basic ASP.NET Interview Questions for freshers ,so please send me in my e-mail
id. thanks vijay sharma

>A) 1  5+ !"S#@ 0   


' $
Hi Sir... Plz send the Questions & Answers in WC’ & AJAx,

;:A   5!"S#@ 0   


' $
Hi Sir ...

Plz coparate And send the questions And Answers

S 
  +5 !"S#-
please send the interview question on dot net on my mail....

S 
  + + !"S# /
please provide me interview question and answer on asp.net and c#

S 
  +5!"S#' 6
Hi sir
i want basic interview ques with ans in(asp,c#,sql server,vb.net)
thanq
radha

S 
  5 !"S# <=
;%B<$%'7
send me basic asp.net interview question

S 
  &!"S#$/,0- 
plz send asp.net interview question
S 
   !"S#' /0- 
pls send me asp.net,vb.net nd sql server interview ques

S 
   +!"S#' /0- 
pls send me asp.net,vb.net nd sql server interview ques

S 
   &!"S#' )
plz send asp.net interview question

S 
  &5!"S#, 6,0- 
hi sir

sir plz send me basic .net and asp.net interview quetions

S 
  !"S#S, 6
  
Hi....Please send asp.net and ado.net basic interview question for getting a good job

Thanks

S 
   !"S#S, 6
  
Hi....Please send asp.net and ado.net basic interview question for getting a good job

Thanks

S 
  +!"S#S, 6
  
Hi....Please send asp.net and ado.net basic interview question for getting a good job

Thanks

S 
  55!"S#6 
job without interview
S 
   5!"S# 6
hi...... i need asp.net interview question & answer, im fresher

S 
  &!"S#% #

Hi....Please send asp.net and ado.net basic interview question for getting a good job

Thanks

S !   +5 +!"S#'


!% 8'
@
'!
Hi....Please send asp.net and MS-excel,Sql, Acess basic interview question for getting a good
job

S 
  5+!"S# /- #
plase send me asp.net qus&answer

S 
  +!"S#
'0
Sir, I want a Basic ASP.NET,VB.NET,SQL SERVER Interview Questions for freshers ,so
please send me in my e-mail id. thanks. Rekha

S 
  5!"S#06
/ -
Hi
by way of Introduction This is Khurseed Alam
Really Above mentioned questions and answer are quite help full for every Aspirants of the .net.
So please Send more questions to the mentioned Email.
’or that I will be Very thank full to you.

Email: khurseed.46@gmail.com,nayanbharati@gmail.com

Warms Waiting
Khurseed Alam
S 
    !"S#! 
You have posted very helpfull quetions n anws.
Plz send me more Questions with answer. on my email id
manisha10786@gmail.com

Thank u.

S 
  &55!"S# 00 ,
I shall be doing a commerce graduate,I also a Gniit Student,My good command in sql,php,&
asp.net.....

S 
  &5+!"S# )0- 
# 0
Sir, I want a Basic ASP.NET,VB.NET,SQL SERVER Interview Questions for freshers ,so
please send me more questions in my e-mail id. thanks.....ajit my mail id is:
ajitnayak007@gmail.com

S 
  & !"S# 6 
Hi....Please send asp.net and MS-excel,Sql, Acess basic interview question for getting a good
job in good company.... thank you

S 
  &+!"S# 6 
Hi....Please send asp.net and MS-excel,Sql, Acess basic interview question for getting a good
job in good company.... thank you

S 
  &!"S#@ @
8
hi, i'm Vivek .i need c# and asp.net interview question & answer. please send it sir

S 
  + +!"S#! /
hi, i m Meenal, i need asp.net and c# interview questions, cud u plz sed me

S 
  5!"S#8 /
hi, i m Kunal, i need asp.net and c# interview questions, cud u plz sed me
S 
  55!"S# 0 C
Hi,This is Saikat...Please post the interview question on BB & SQL server.

S 
   !"S#) 
hi, i m sujata, i need basic .net , asp.net and c# interview Question & answer

S 
  +5&!"S# 0
could u please send me all the imp. Questions & answers of the asp.net & c#.net. Also overall
imp Questions related to interview. Thanks & Regards, Sarika

S 
  5 !"S# 
plz send me asp.net step by step tutorials

S 
  & !"S#
S -  ! 6 
Am a fresher completing MCA.Plz send asp.net & c#.net interview questions and all important
questions for the interview. Thanks & reguards M.Bramara.

S 
  +5!"S#,0
nmjhkjhk

, D:D9/-- 69 +5!"S#,0


hello sir or mam ,pls send me all those question with answer which i reqired.

thanku..

S 
  +&5!"S# 
hi, i am Neetu, i need basic .net , asp.net and c# interview Question & answer

S 
  55 !"S#  )
plz send me recent interview questions and answer for fresher 2011
S 
  55 !"S# 
im a fresher so i need basic inteview ? for .net

S 
  555!"S# 
im a fresher so i need basic inteview ? for .net

S 
  5+!"S#,#
Im a fresher so i need basic inteview ? for .net

S 
  5+5!"S# /  
Hi..... I am fresher so i need basic inteview ? for .net

S 
  55 !"S#
'% %
Sir,
I am a MCA fresher candidate.
Next week I have a Technical Interview on .NET, So i need some Basic C#.NET
ASP.NET,VB.NET,SQL SERVER Interview Questions. So please send me required questions
and answers to my e-mail id.

Thanks.....

S 
  55!"S# 6,
I m 2010 MCA passout , please send me require question about .NET & Sql. Thank you

S 
  5+  !"S#- 6,
Sir, I am a Diploma fresher candidate. Next week I have a Technical Interview on .NET, So i
need some Basic C#.NET ASP.NET,VB.NET,SQL SERVER Interview Questions. So please
send me required questions and answers to my e-mail id. Thanks.....

S 
  55 !"S#-0- 
sir plese send me more asp.net basic interview question and answer
thank

S 
  5+ !"S#,#
Please send me ASP.net questions from the basic level to ..........

S 
  5 !"S#? 
0- 
hi i am fresher plz send to asp.net interview questions and answers......thanks.

S 
  5  5!"S# 0 
Can I have some more questions. Good questions and answers.

,    6 5   55!"S#% 8'%


Some More advance question and answer which is asked in inteview frequently.

S 
  5+!"S#' 0 
I am a MCA fresher candidate. Next week I have a Technical Interview on .NET, So i need
some Basic C#.NET ASP.NET,SQL SERVER Interview Questions. So please send me required
questions and answers to my e-mail id. Thanks.

S 
  5!"S#-, 0 
i need dot net interview question.(i am fresher).

665!"S#6 6
saddsvs

S 
  5 !"S#% 6
Complete GNIIT from NIIT plz send me Question & answers for .Net

S 
  &5!"S# )0- 
 *
hi . this is sanjeev kumar i have completed my gniit from niit center . please sent me asp.net
interview type questions. for this i will be always faithfull to you. thanks.
S 
  55!"S# 6,  
sir i want to exp interview question...

S 
  55&!"S# 6,  
sir i want to exp interview question...

?D;:
D
  &&!"S# @
hi, i have completed B.E computer science now i am studying .net course so i want above
mention the questions and preffered the interview.pls mail me

Thanks,

siva

9/D:D , 9 !"S#

hi, i have completed B.E computer science now i am studying .net course so i want above
mention the questions and preffered the interview.pls mail me

Thanks,

siva

S 
   !"S# ) * 6 
I am a B.SC.IT fresher candidate. Next week I have a Technical Interview on .NET, So i need
some Basic C#.NET ASP.NET,SQL SERVER Interview Questions. So please send me required
questions and answers to my e-mail id. Thanks.

S ;D;EED
 69/  +&5
!"S#0
Thnx.........

S 
  +5 5!"S#  6
hello sir or mam sir plz send me basic c#.net and asp.net interview quetions
c

You might also like