| Back to Questions Page |
| |
| Question |
about triggers? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ CSC |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Trigger is special kind of stored proceser  |
| Guest |
| |
| |
| Question |
Tell me the best web-sites for Learning the ASP DOT NET.
|
Rank |
Answer Posted By |
|
Question Submitted By :: Veerababu |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | please go through www.w3schools.com.
this is best site for begginners
it contain basic concepts with example  |
| Ashok Kumar |
| |
| |
| Question |
Requirement is:
try
{
\\SQL Query
}
catch(Exception i)
{
print a
}
catch(SQLQueryException e)
{
\\SQL Query
}
Qu)I Got Exception in "try" block. Which "catch" statement
(i.e. 1st catch or 2nd catch ) catches the exception and
Why??? |
Rank |
Answer Posted By |
|
Question Submitted By :: Shaan.sunswift |
| This Interview Question Asked @ 3i-Infotech |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | when the exception is thrown it will search for mostly
likely to least likely exception so it will catch in second
catch  |
| Sabir |
| |
| |
|
|
| |
| Answer | it will give compile time error as, the sequence of
exception class has to be Most Specific => General.  |
| Parikshit |
| |
| |
| Answer | In try block the SQL query will be executed so the exception
will match the SQLException catch because all type of SQL
exception will be match in this SQLException
if we wrote normal query in try block then it will match
Exception catch  |
| Meena |
| |
| |
| Question |
what is Framework? |
Rank |
Answer Posted By |
|
Question Submitted By :: Sai3ram |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | frame work provide to developmant tool to create an
application.  |
| Govind.agarwal |
| |
| |
| Answer | The .NET Framework is Microsoft's platform for building
applications that have visually stunning user experiences,
seamless and secure communication, and the ability to model
a range of business processes. The .Net Framework consists
of:
Common Language Runtime – provides an abstraction layer
over the operating system
Base Class Libraries – pre-built code for common low-level
programming tasks
Development frameworks and technologies – reusable,
customizable solutions for larger programming tasks  |
| Varikuti Srinivasa Rao |
| |
| |
| Question |
How could we achieve Langauge Interoperability
through "CLS"?? Please Expalin in detail with Example..
Thanks for the Help!!!!! |
Rank |
Answer Posted By |
|
Question Submitted By :: Shaan.sunswift |
| This Interview Question Asked @ HCL |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | commom language specification is in .net, which is used to
integrated multilanguage application. and suport common
type system.
int32 is compactibility with VB and C#.
 |
| Govind.agarwal |
| |
| |
| Answer | CLS (Common Language Specification) contains a set of rules
to achieve language interoperability. CLS enables an object
or application to interact with other objects or
applications of other languages. All .NET classes follow
the CLS rules.  |
| Lakshmi |
| |
| |
| Question |
js fn to go to the particular page when enter is clicked |
Rank |
Answer Posted By |
|
Question Submitted By :: Kris |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | function DoPagingOnEnter()
{
var ControlPrefix = $get('<%
=hdnListViewClientID.ClientID%>').value;
if(!
(event.keyCode==48||event.keyCode==49||event.keyCode==50||ev
ent.keyCode==51||event.keyCode==52||event.keyCode==53||event
.keyCode==54||event.keyCode==55||event.keyCode==56||event.ke
yCode==57||event.keyCode==8||event.keyCode == 13))
{
event.returnValue=false;
}
else
{
var number = 0;
var Message;
var PrefixId = $get('<%=hdnNodeID.ClientID%
>').value;
number = $get(ControlPrefix+'txtPage').value;
if(!isNaN(number))
{
if (event.keyCode == 13)
{
var status ='1';
var PageFilter = /^[0-9]+$/;
if(!PageFilter.test($get
(ControlPrefix+'txtPage').value))
{
status='0';
}
else
{
number = parseInt(number);
var MaxPage = 0;
MaxPage = parseInt($get('<%
=hdnMaxPage.ClientID%>').value);
if(1 > number)
{
status ='0';
}
else if(number > MaxPage)
{
status ='0';
}
else
{
status ='1';
}
}
if(status == "0")
{
var mes = "<%
=CommonMessages.InvalidPage%>";
ShowMessage(mes,"<%
=CommonMessages.ErrorHeader%>",'Error');
content_resize();
return false;
}
else
{
__doPostBack
((PrefixId+'$btnPaging'), '');
}
}
<asp:Button ID="btnPaging" runat="server" Text="Button"
Style="height: 26px; display: none"
OnClick="btnPaging_Click" />
then the click event in code behind  |
| Sona |
| |
| |
| Question |
If you change something in web.config file.Do u need to
compile again? |
Rank |
Answer Posted By |
|
Question Submitted By :: Soni |
| This Interview Question Asked @ SMNetserv , Broadridge |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | u dont need to compile but while restarting application it
get compiled automatically ...if u change in web.config
file while the application is runnin then MS visual studio
will give u msg of change occured in config file..  |
| Gaurav |
| |
| |
| Answer | NO, Not required. just restart the application ... even if
you don't the application automatically get restarted once
the web.config file is changed.  |
| Subbu |
| |
| |
| Question |
please tell me the best book of asp.net in the markit.
which explain in simple and detail. |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | 3 mistakes in my life is the best book for asp dot net...
five point someone is also good...
but why u want to learn asp dot net....
its not for u my dear sweety..........  |
| Somu |
| |
| |
| Answer | your system is the best book for you in the market and not
only in the market but also in the world but question is
that if you are a hard worker.  |
| Naresh Cahuhan |
| |
| |
|
| |
|
Back to Questions Page |