Warning: Trying to access array offset on value of type bool in /home/nqetassd/shashidharkumar.com/wp-content/themes/Divi/epanel/custom_functions.php on line 629
by Shashi Dhar Kumar | Nov 8, 2008 | ASP, Programming, SQL Server
How to connect database in ASP (Active Server Page)? SQL Server 2005 This is a compiled connection strings reference list on how to connect to SQL Server 2005. SQL Native Client ODBC Driver Standard security Driver={SQL Native...
Warning: Trying to access array offset on value of type bool in /home/nqetassd/shashidharkumar.com/wp-content/themes/Divi/epanel/custom_functions.php on line 629
by Shashi Dhar Kumar | Dec 12, 2007 | ASP
ASP – Dictionary The Dictionary object In order to learn how Dictionary object works we will create a small script which will translate number 1 to 10 from English to Spanish. translate.asp <% SET MyDictionary=CreateObject(“Scripting.Dictionary”)...
by Shashi Dhar Kumar | Dec 12, 2007 | ASP
Displaying the Current Date and Time The date and time described in this section are those that are on the server. Date To display the current date by itself in a Web page, type: <% =date %> at the point where you want it to appear. When you view the page in...
by Shashi Dhar Kumar | Dec 12, 2007 | ASP
Cookies method is very similar to Session method: the basic difference is that with Cookies method the information is save in the clients computer and not in the server, so it is more suitable for sites with a lot of visitors. This method implies sending information...
by Shashi Dhar Kumar | Dec 3, 2007 | ASP
In this tutorial we will create a regular HTML page with a small javascript code, and we will use this javascript code to include in the page new information from a “.asp” file. First, let´s check this two pages: <br> javascript.html <html>...
by Shashi Dhar Kumar | Nov 24, 2007 | ASP
Introduction Working with Arrays Filtering values from a array Creating a table from data in a string Simple keyword search Introduction Instead of having our information (variables or numbers) in variables like Mydata1, Mydata2, Mydata3 etc, by using arrays our...