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                      
tip   SiteMap shows list of All Categories in this site.
Google
 
 Categories  >>  Software  >>  Microsoft Related  >>  ASP.NET       
Suggest New Category 
 


 

View Page with Answers
  Question  Asked @ Answers Views     select
 
Describe and In Process Vs Out of Process component. Which is faster? Syntax-Softtech  2  2966
What is the difference of a LEFT JOIN and an INNER JOIN statement? What is a Cartesian product? What causes it? Syntax-Softtech  1  1134
How do you get records number from 5 to 15 from a dataset of 100 records? Syntax-Softtech   1  1312
How do we get only edited/deleted/inserted records from a Dataset? Syntax-Softtech  1  1206
What is versioning in .NET? Syntax-Softtech   1  2042
What is shadowing? Syntax-Softtech  2  1925
In what order do the events of an ASPX page execute. As a developer, why is it important to understand these events? Syntax-Softtech   5  1747
Explain what a diffgram is and a good use for one? Syntax-Softtech  1  1210
Briefly describe different techniques for ASP.NET State Management? Syntax-Softtech   2  1651
If I'm developing an application that must accommodate multiple security levels though secure login and my ASP.NET web application is spanned across three web-servers (using round-robin load balancing) what would be the best approach to maintain login-in state for the users? Syntax-Softtech  7  495
What is the difference between Server.Transfer and Response.Redirect? Why would you choose one over the other? Syntax-Softtech  24  3301
What does the "EnableViewState" property do? Why would I want it on or off? Syntax-Softtech   1  1357
Explain how server control validation controls works? Syntax-Softtech   2  1587
For Web services where you can browse on the Internet?  1  1091
To call a Web service SOAP which transport protocol you use?  2  1363
E-Mail New Answers        Answer Selected Questions        Post New ASP.NET Question
 
Prev    1   ... 6   ... 11   ... 16   ... 21   ... 26   ... 31   ... 36   ... 41   ... 46   ... 51   ... 56   ... 61   ... 66    70   [71]    72   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 ? 134 DELL
what is use of doctype tag in asp.net 15 Wipro
How do you initiate validation on the server manually? What are two situations when you might you want to do that? 24  
what is meant by sitemapnode ? 86 Netsweeper
Where we create sessions for Banking Applications and how to create? expalin with code? 69 Wipro
I have a component with 3 parameter and deployed to client side now i changed my dll method which takes 4 parameter.How can i deploy this without affecting the clent?s code ? 114 Satyam
What should you do is you want to remove an existing component but would like to make some funtionalities? 29  
how to write html code with ssl 119 DCI
Types of instancing properties and explain each. Tell the difference between multiuse,singleuse and globalmultiuse and which is default ? 110 DELL
what are the different ASP.NET Application Folders? 102  
How does the regular expression validator work? What are two situations when you might want to use one? 23  
Using code explain Configuration Management 124  
How to send a DataReader as a parameter to a remote client ? 156 Digital-GlobalSoft
benefits of migration from asp to asp.net hi frnds, i have to give presentation to a client about how useful would be migrating their project from asp to asp.net .plz give me some points which i should incorporate in my ppt thanks 100  
We are using Jscriopt validations and at clint site javascript is not running that time validation would work? if yes then how it would behave? 132  
Write a standard lock() plus double check to create a critical section around a variable access? 340  
What Is ASPNET_WP.exe? What Is The Use Of It? In Which Place Inproc Session Stored ? Explain Session State ? 93 Phoenix-Technologies
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> 87 InfoCom
How Response.flush works in server.Execute ? 131 Keane-India-Ltd
i develop a web application and i gave security setting i.e autherization and athentication now it work properly on my local system , now question is ,is this security setting ie autherization and athentication which i gave in web.config will it be enough strong to secure my application on internet or i have to use some 3rd party tool or software to get security .if yes --how ? if no--what is the alternate? 103  
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