| Back to Questions Page |
| |
| Question |
how to convert from sql2000 numeric to int in asp.net with
sqlparameter? |
Rank |
Answer Posted By |
|
Question Submitted By :: Manishn19j |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | sqlParameter objpara=new sqlParameter();
objpara=objDataadapter.UpdataCommand.Parameter.Add("@Age",SqlDbType.Int);
objpara.SourceColumn="Age";
objpara.SourceVersion=DataRowVersion.Current;  |
| Manishn19j |
| |
| |
| Question |
can I use session variable in App_code Class page?? |
Rank |
Answer Posted By |
|
Question Submitted By :: Bhaskar.joardar |
| This Interview Question Asked @ Wipro |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Yes, Using HttpContext.Current.Session
["SessionName"].ToString().  |
| Bhaskar.joardar |
| |
| |
| Answer | Yes  |
| Swapna |
| |
| |
|
|
| |
| Question |
How to Open any web page by clicking any Any ASPControl
like (Checkbox,radio button or Button) without calling its
event and without going to Siverside code?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Om Sambosankara |
| This Interview Question Asked @ LG-Soft |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | In Asp.net for most of the Controls have OnClick property
will be available in (.net 2.0/VSS 2005) by using the
Onclick property at the ClientSide we can open the Webpage
without going to Sever
OnClick Event: This is a property is available for Dropdown
list ,TextBox,CheckBox,RadioButton,Button,LinkButton etc..)
by using this property when ever the user click the Control
this property will be called.This all operations are done at
the Client Side
only
<asp:button id="btn"
onclick="window.open('Default.aspx?bck=1','cal','width=250,height=150,left=225,top=125')"
text="CLICK" runat="server" CssClass="href"
"></asp:button>
(or)
<script language="javascript">
function fnopenpage()
{
window.open('Default.aspx?bck=1');
return true
}
</script>
<asp:button id="btn" onclick="return fnopenpage();"
text="CLICK" runat="server" CssClass="href"
"></asp:button>
bck=1 after the page is not mandatory its a qury string if
requried we can pass any qurystrings like that....
 |
| Om Sambosankara |
| |
| |
| Question |
what is advantage of developing in asp.net.why the same
can't be developed in Java or other web developemnt
tool.what are advantages of developers. |
Rank |
Answer Posted By |
|
Question Submitted By :: Krisan.ss |
| This Interview Question Asked @ IBM |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | ASP.NET Support multi language support like VB.NET, C#, C++
ASP.NET have easy development IDE
Website can be created much faster in ASP.NET as compared
to Java
Debugging is very effort-less,so can fix the bugs quicker  |
| Rami Reddy.k |
| |
| |
| Answer | ASP.NET supports multilanguages and User Friendly environment and can support many types of languages having the feature of CLR and MSIL ..  |
| Sanjay |
| |
| |
| Answer | application created using .NET platform works faster as
it's compiler based unlike JAVA which is interpreter based.  |
| Ravishankar T.r. |
| |
| |
| Answer | asp.net is allmost designed for developing webbased
applicatioelonS.it supports code behind technique,automatic
code generation(means no need to write the code for
designing and placing the controls in IDE) and it reduce
the burden on the developer.AND parallel development is
also possible.(means designing and logic part will be
placed into different pages.one is ".aspx" page and another
one is ".aspx.cs")and we may also provide the security for
the logic part.
and development is very faster compare to java and other
programming languages.  |
| Sanjay Dutt |
| |
| |
| Question |
I create small website, i want accept all the browser this
website? what will do? |
Rank |
Answer Posted By |
|
Question Submitted By :: Muralisivam |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | You have to write a Cross Browser scripting on Page load.
Also you have to written a W3C standard code to avoid the
errors.  |
| Kingworld |
| |
| |
| Question |
how can i inharit multiple classes? |
Rank |
Answer Posted By |
|
Question Submitted By :: Manishn19j |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | use intefaces...cool  |
| Ajith Krishnan |
| |
| |
| Question |
how to use html code in asp source code? |
Rank |
Answer Posted By |
|
Question Submitted By :: Manishn19j |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Use asp.net Literal control.  |
| Mr. D |
| |
| |
| Question |
What is deff. saop and disco? |
Rank |
Answer Posted By |
|
Question Submitted By :: Manishn19j |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | SOAP
simple object access protocol
That is with state protocol that maintain all the
information but http is not store any information this is
stateless protocol  |
| Amit Bhardwaj |
| |
| |
| Question |
what is mean by framework? |
Rank |
Answer Posted By |
|
Question Submitted By :: Saravanavelu |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | A software framework, in computer programming, is an
abstraction in which common code providing generic
functionality can be selectively overridden or specialized
by user code providing specific functionality. Frameworks
are a special case of software libraries in that they are
reusable abstractions of code wrapped in a well-defined
API, yet they contain some key distinguishing features that
separate them from normal libraries.  |
| Kiran |
| |
| |
| Answer | FrameWork has Clr  |
| Guest [None] |
| |
| |
| Question |
what is the difference between console.writeline
&console.output.writeline? |
Rank |
Answer Posted By |
|
Question Submitted By :: Sailaj08 |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | console.output.writeline give the farmated out while in
console.writeline in string not farmated  |
| Prabhash Yadav |
| |
| |
| Answer | Console.Output.Writeline-> Gives the formatted output
Console.Writeline->Gives the output in String  |
| Karthik |
| |
| |
|
| |
|
Back to Questions Page |