asp-stuff.blogspot.com
ASP Stuff: Change File/Folder permissions on godaddy web server
http://asp-stuff.blogspot.com/2008/01/change-filefolder-permissions-on.html
Monday, January 28, 2008. Change File/Folder permissions on godaddy web server. Following is the process to set up permissions on a godaddy account:. Login using your user name/account number and password. Click on My Account. Click on Hosting Account List. Click on Open (the web hosting package you want to open). Scroll down to content and Click File Manager. Select the domain folder you want to set permissions for and click permissions button on the upper control bar. December 17, 2008 at 6:57 PM.
asp-stuff.blogspot.com
ASP Stuff: XML Path Conventions
http://asp-stuff.blogspot.com/2008/01/xml-path-conventions.html
Friday, January 25, 2008. Server.MapPath(" abcsitename registration")&" xyz.xml". Server.MapPath(" registration")&" xyz.xml". Subscribe to: Post Comments (Atom). Change File/Folder permissions on godaddy web serv. View my complete profile.
asp-stuff.blogspot.com
ASP Stuff: Displaying records from an excel file
http://asp-stuff.blogspot.com/2007/09/displaying-records-from-excel-file.html
Tuesday, September 18, 2007. Displaying records from an excel file. Aim of this articles is to display records from an Microsoft Excel in an ASP. We could use general SQL command while retreving data from an excel sheet. All we need to know how to connect Excel file. Here is the excel database connection string :. Connection String for Excel. StrConnection = "DBQ=" and Server.MapPath("customer-list.xls") and "; DRIVER={Microsoft Excel Driver (*.xls)};". Sql="select * from sales in 2005;". Set rs = nothing.
asp-stuff.blogspot.com
ASP Stuff: Reading & Writing to an excel file
http://asp-stuff.blogspot.com/2007/09/reading-writing-to-excel-file.html
Tuesday, September 18, 2007. Reading and Writing to an excel file. You can store data in a Microsoft Excel Spreadsheet and then use ASP to extract the infromation. The spreadsheet acts like a database and you can use standard SQL statements to query the data. The process is fairly simple and I will break it down into three steps:. STEP-1: Create an Excel Spreadsheet. STEP-2: Define named ranges in the spreadsheet. STEP-3: Write ASP code read the file. Now that we have created a spreadsheet, its time to d...
asp-stuff.blogspot.com
ASP Stuff: Methods and properties of Microsoft.XMLDOM
http://asp-stuff.blogspot.com/2007/07/methods-and-properties-of.html
Friday, July 20, 2007. Methods and properties of Microsoft.XMLDOM. Asyncboolean: specifies whether asynchronous download of the document is permitted. SetProperty ) [ie]The following (2nd level) properties can be set:. For example: xmlDoc.setProperty("SelectionLanguage", "XPath");selection = xmlDoc.selectNodes("/ Customer");. CreateNode [ie] (type, name, nameSpaceURI). CreateProcessingInstruction (target, data). LoadXML [ie] (xml string). NodeFromID [ie] (id string). Subscribe to: Post Comments (Atom).
asp-stuff.blogspot.com
ASP Stuff: Create & Save an XML file using ASP
http://asp-stuff.blogspot.com/2007/07/create-save-xml-file-using-asp.html
Thursday, July 19, 2007. Create and Save an XML file using ASP. Create and Save an XML FileStoring data in XML files is useful if the data is to be sent to applications on non-Windows platforms. Remember that XML is portable across all platforms and the data will not need to be converted! ASP CODE STARTS NOW. Dim xmlDoc, rootEl, child1, child2, p'Create an XML document. Set xmlDoc = Server.CreateObject("Microsoft.XMLDOM")'Create a root element and append it to the document. ASP CODE ENDS HERE.
asp-stuff.blogspot.com
ASP Stuff: January 2008
http://asp-stuff.blogspot.com/2008_01_01_archive.html
Monday, January 28, 2008. Change File/Folder permissions on godaddy web server. Following is the process to set up permissions on a godaddy account:. Login using your user name/account number and password. Click on My Account. Click on Hosting Account List. Click on Open (the web hosting package you want to open). Scroll down to content and Click File Manager. Select the domain folder you want to set permissions for and click permissions button on the upper control bar. Friday, January 25, 2008.
asp-stuff.blogspot.com
ASP Stuff: July 2007
http://asp-stuff.blogspot.com/2007_07_01_archive.html
Friday, July 20, 2007. Methods and properties of Microsoft.XMLDOM. Asyncboolean: specifies whether asynchronous download of the document is permitted. SetProperty ) [ie]The following (2nd level) properties can be set:. For example: xmlDoc.setProperty("SelectionLanguage", "XPath");selection = xmlDoc.selectNodes("/ Customer");. CreateNode [ie] (type, name, nameSpaceURI). CreateProcessingInstruction (target, data). LoadXML [ie] (xml string). NodeFromID [ie] (id string). Thursday, July 19, 2007. Set child2 =...
asp-stuff.blogspot.com
ASP Stuff: September 2007
http://asp-stuff.blogspot.com/2007_09_01_archive.html
Tuesday, September 18, 2007. Displaying records from an excel file. Aim of this articles is to display records from an Microsoft Excel in an ASP. We could use general SQL command while retreving data from an excel sheet. All we need to know how to connect Excel file. Here is the excel database connection string :. Connection String for Excel. StrConnection = "DBQ=" and Server.MapPath("customer-list.xls") and "; DRIVER={Microsoft Excel Driver (*.xls)};". Sql="select * from sales in 2005;". Set rs = nothing.