Posted on May 7, 2008 by balanagaraj
document.all
Internet Explorer 4 introduced the document.all DOM (document object model) to allow access to the various parts of the web page. Soon after that the standard DOM method getElementById was introduced and is therefore available in all version 5+ browsers. This means that the document.all references are only needed to support IE4.
document.all doesn’t work mozilla [...]
Filed under: Javascript, Mozilla Firefox, Web Application | Tagged: Internet Explorer, Javascript browser compatibility, Javascript Differences in Mozilla Firefox and Internet, Javascript does not working in mozilla firefox, Mozilla Firefox, Mozilla Firefox and internet explorer, Mozilla Firefox bugs, Mozilla firefox does not supports DOM, Mozilla Firefox does not supports javascript functions | 8 Comments »
Posted on January 7, 2008 by balanagaraj
How can get the user’s country name using IP address in Classic ASP and Javascript?
http://www.webservicex.net provides web services for get the country name based on ip address.
In ASP using javascript we can achieve the task.
Step1 : Refer the webservice using SOAPClient object
var strUrlForwebservicex = http://www.webservicex.net/geoipservice.asmx?wsdl
var objSoapClient = Server.CreateObject(’MSSOAP.SoapClient30′
objSoapClient.ClientProperty(”ServerHTTPRequest”
= true;
objSoapClient.MSSoapInit(strUrlForwebservicex);
Step2 : Get user’s IP address
var strIPAddress [...]
Filed under: ASP, Javascript, Web Application, WebService | Tagged: Get User's Country Name Using IP Address, Get User's Country Name Using IP Address in ASP, Get User's Country Name Using IP Address in ASP and Jav, Get User's Country Name Using IP Address in Javascript, Get user's IP adress in ASP, Refer the WebService in ASP, Using SOAPClient in ASP and Javascript | 4 Comments »
Posted on December 13, 2007 by balanagaraj
· Differences
1. Difference between Classic ASP and ASP.Net?
Answer:
§ ASP is Interpreted language based on scripting languages like Jscript or VBScript.
§ ASP has Mixed HTML and coding logic.
§ Limited development and debugging tools available.
§ Limited OOPS support.
§ Limited session and application state management.
§ Poor Error handling system.
§ No in-built support for XML.
§ No fully distributed data [...]
Filed under: .NET Interview Questions and Answers, .NET resources, ASP.NET, C#, Microsoft, Microsoft Visual Studio, Web Application, Windows Application | Tagged: .net interview, .NET Interview Questions and Answers, asp.net interview questions, asp.net interview questions and answers, C# interview questions and answers, IIS interview questions and answers, sql server interview questions and answers, vb.net interview questions and answers, XML interview questions and answers | 7 Comments »
Posted on December 7, 2007 by balanagaraj
Environment :
ASP.NET 1.1v
Visual C#
SQL Server2000
MS Excel2003
Microsoft Visual Studio2003
1. Create one webapplication using visual studio.
2. Just put the button text as “Exports to Excel” in webform1.aspx.
3. Use the following namespaces for this application
using System;
using System.Collections;
using System.ComponentModel;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
4. In button(Exports to Excel) click event
SqlConnection conn = new SqlConnection(ConfigurationSettings.AppSettings["PubsConnection"]);
SqlCommand [...]
Filed under: ASP.NET, C#, Microsoft Excel, Microsoft Visual Studio, Web Application | Tagged: convert dataset to excel, dataset and excel, dataset converts excel in asp.net, Dataset to excel, Export excel sheet data from dataset in ASP.NET, exports dataset to excel sheet | 10 Comments »
Posted on May 25, 2007 by balanagaraj
Microsoft Expression Studio Free Trial
Please try Microsoft® Expression® Studio for free now!
Microsoft® Expression® products Expression Web, Expression Blend™, Expression Design and Expression Media are downloadable for a 60-day trial. This information is subject to change.
Download Here
Expression Web
We are pleased to present a trial version of Microsoft® Expression® Web. This fully functioning version will expire 60 [...]
Filed under: Web Application | No Comments »
Posted on April 30, 2007 by balanagaraj
Microsoft Web Developement Learning Resources
(The fastest way to increase the price on your head)
Microsoft® Web Development Learning Series, sponsored by Microsoft and Dr. Dobb’s. Choose from more than 60 learning modules designed to leverage the Web development skills you’ve already mastered. The modules are organized by tracks and include Virtual Labs and webcasts for PHP, [...]
Filed under: Web Application | No Comments »
Posted on April 17, 2007 by balanagaraj
How to develope index based searching in ASP.NET web application?
Lucence.NET(formerly DotLucence) is the fastest open source search engine for .NET.
http://www.dotlucene.net/
download from here
http://www.dotlucene.net/tools
online demo
http://www.dotlucene.net/demo/
tools ,demo and samples
http://www.dotlucene.net/tools
now dotlucence.net was closed but dont worry,But all Dotlucence library updated versions available on sourceforge.net
http://sourceforge.net/project/showfiles.php?group_id=119263
codeproject offers implement index based searching in our ASP.NET web application
check here : http://www.codeproject.com/useritems/Search_with_in_documents.asp
Filed under: Web Application | No Comments »