| 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 |
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 the difference between vb and vb.net
|
Rank |
Answer Posted By |
|
Question Submitted By :: Devaki |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Vb is Procedural Language or Event Based Language
vb.net is Object Oriented Language  |
| Aasma |
| |
| |
|
| |
|
Back to Questions Page |