ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
 Categories  >>  Software  >>  Microsoft Related  >>  ASP.NET       
Suggest New Category 
 


 

View Page with Answers
  Question  Asked @ Answers Views     select
 
What is binding in web service ? TCS  0  78
Does the following statement executes successfully: Response.Write(?value of i = ? + i); TCS  4  2279
How does dataset acts in a disconnected fashion ? TCS  3  1465
Types of caching ? TCS  3  2373
What are various authentication mechanisms in ASP.NET ? TCS   3  2505
What is difference between ASP and ASP.NET ? TCS   3  1731
Uses of CLR ? TCS  2  2396
What is dataset and uses of dataset ? TCS   4  1965
What is CTS, CLS and CLR ? TCS   4  5354
What is JIT, what are types of JITS and their purpose ? Infosys  3  3216
What is SOAP, UDDI and WSDL ? Infosys  1  2987
What is caching and types of caching ? Infosys  2  2518
What is dataset ? Infosys   10  2870
How do you set language in web.cofig ? Keane-India-Ltd  3  3226
How many web.config a application can have ? Keane-India-Ltd  5  2389
E-Mail New Answers        Answer Selected Questions        Post New ASP.NET Question
 
Prev    1   ... 6   ... 11   ... 16   ... 21   ... 26   ... 31   ... 36   ... 41   ... 46    50   [51]    52  ... 56   ... 61   ... 66   ... 71    Next
 
 
 Visual Basic interview questions   Visual Basic Interview Questions  C Sharp interview questions   C Sharp Interview Questions  ASP.NET interview questions   ASP.NET Interview Questions
 VB.NET interview questions   VB.NET Interview Questions  COM+ interview questions   COM+ Interview Questions  ADO.NET interview questions   ADO.NET Interview Questions
 IIS interview questions   IIS Interview Questions  MTS interview questions   MTS Interview Questions  Crystal Reports interview questions   Crystal Reports Interview Questions
 BizTalk interview questions   BizTalk Interview Questions  Dot Net interview questions   Dot Net Interview Questions  Exchange Server interview questions   Exchange Server Interview Questions
 SharePoint interview questions   SharePoint Interview Questions  Microsoft Related AllOther interview questions   Microsoft Related AllOther Interview Questions
 
 
 
Un-Answered Questions
 
 Question Views Asked at   Select
 
If Instancing = Single use for ActiveX Exe, how will this be executed if there are 2 consecutive client requests ? 135 DELL
Can we make activex dll also ti execute in some process as that of client ? How can we do? 113 DELL
hi wrever i go thy r asking depth abt 3-tier architecture i.e, hw to deploy 3 layers into 3 servers i do nt have much idea on deployment. can any one send me the tips or code if u hav kindly mail me. 11 Wipro
What ?ll u do in early and late binding ? 91 DELL
what are the different ASP.NET Application Folders? 102  
I am trying to implement sorting facility from client side code in GridView Control. So how can I fill up an Array inside client side code (using JavaScript), i want to assign my DataSet object declared and filled up on Server side(in code behind) to the array (on client side) 124 HCL
how to implement some securty aspect in our application i.e 1.cookie poisioning. 2.data encryption. 3.forcefull browsing 4.sql/code injection 5.securing web app by using web services ........my question is how to implement these thing in our application is this done by hard coding or by help of some tool 108  
Hi this is the coding for adding data in to an xml table i want the coding for update and delete Try Dim emp_xml_doc As New XmlDocument If System.IO.File.Exists(Server.MapPath("emp.xml")) Then emp_xml_doc.Load(Server.MapPath("emp.xml")) Dim myrow_element As XmlElement myrow_element = emp_xml_doc.CreateElement("EmpDetails") Dim str As String str = "<EmpID>" & TxtEmpId.Text & "</EmpID>" & _ "<Empname>" & TxtName.Text & "</Empname>" & _ "<EmpSalary>" & TxtSalary.Text & "</EmpSalary>" myrow_element.InnerXml = str emp_xml_doc.DocumentElement.AppendChild(myrow_element) emp_xml_doc.Save(Server.MapPath("emp.xml")) Response.Write("Record Saved") Dim ds As New DataSet ds.ReadXml(Server.MapPath("emp.xml")) GridView1.DataSource = ds GridView1.DataBind() Else Response.Write("File does not exist.") End If Catch ex As Exception Response.Write(ex.ToString) End Try *********************** this is the xml file <?xml version="1.0" encoding="utf-8" ?> <Employee> <empdetails> <empid>100</empid> <empname>xxx</empname> <empsalary>2000</empsalary> </empdetails> <EmpDetails> <EmpID>yyy</EmpID> <Empname>dddd</Empname> <EmpSalary>77777</EmpSalary> </EmpDetails> <EmpDetails> <EmpID>rrrr</EmpID> <Empname>rrrr</Empname> <EmpSalary>6666</EmpSalary> </EmpDetails> <EmpDetails> <EmpID>qaqa</EmpID> <Empname>sini</Empname> <EmpSalary>50000</EmpSalary> </EmpDetails> <EmpDetails> <EmpID>errrrrrrrr</EmpID> <Empname>rrrrrrrrr</Empname> <EmpSalary>677777</EmpSalary> </EmpDetails> <EmpDetails> <EmpID>rrr</EmpID> <Empname>rrr</Empname> <EmpSalary>33</EmpSalary> </EmpDetails> </Employee> 88 InfoCom
Where we create sessions for Banking Applications and how to create? expalin with code? 69 Wipro
Write a standard lock() plus double check to create a critical section around a variable access? 341  
Can we store PROGID information in database and dynamically load the component ? 112 Digital-GlobalSoft
where can i gather the materials for MCP certification 526  
Can any body provide me the sample web application in asp.net 64  
can we remote debug applications with the remote debugger installed with vs.net 2002, with vs.net 2003? 110  
What are ASP.NET Web Forms? How is this technology different than what is available though ASP (1.0-3.0)? 185  
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0. 76 Netsweeper
Using code explain Configuration Management 124  
Difference between .NET and previous version? 78 Microsoft
Name the application folders present in asp.net 2.0? 98  
Securitywise What are the Enhancements in 2.0? 57 Microsoft
E-Mail New Answers        Answer Selected Questions
 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com