Search Results

Showing results 1 to 40 of 42
Search took 0.01 seconds.
Search: Posts Made By: msaqib ; Forum: ASP and child forums
Forum: ASP Jan 25th, 2009
Replies: 1
Views: 1,760
Posted By msaqib
The quick solution is to refresh the page again. You will need to upgrade MDAC (Microsoft Data Access Controls) to the latest version. ...
Forum: ASP Oct 18th, 2008
Replies: 2
Views: 2,735
Posted By msaqib
Ok...here is what you need to do.
<script>
function submitIt(myForm) {
var w =...
Forum: ASP Oct 18th, 2008
Replies: 1
Views: 1,262
Posted By msaqib
What I can understand that it might be a problem with File System object, that it can not read the fiels or ASP engine can not access the files in that directory. Check to see it IISUR has the...
Forum: ASP Oct 18th, 2008
Replies: 1
Views: 1,173
Posted By msaqib
Here is the code you need to redirect a user from one page to another using html.


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>HTML Page Title</title>...
Forum: ASP Dec 25th, 2007
Replies: 2
Views: 3,747
Posted By msaqib
As your SQL server is configured to run any query which will be executed with in 300ms. And now in your case, your query's estimated execution time is 353 which is more than the time set by the DB...
Forum: ASP Jun 11th, 2007
Replies: 1
Views: 1,319
Posted By msaqib
What type of text file do you need. Do you want to save the same HTML code in the text file or the search results only?
Forum: ASP Feb 2nd, 2007
Replies: 2
Views: 3,045
Posted By msaqib
Check if the Data provider is present on that machine. Like MS Access Drivers etc...
Forum: ASP Feb 2nd, 2007
Replies: 2
Views: 5,334
Posted By msaqib
Try to find out whether objRS("User_ID") has some records or not? Another thing is the data type of User_ID, is it int?

Mostly this exception occurs if you try to casst different data types of...
Forum: ASP Feb 2nd, 2007
Replies: 1
Views: 2,211
Posted By msaqib
Try
SELECT TOP 5 ID, total, recipe_name
FROM tblrecipes
ORDER BY total DESC, ID DESC

The thing is that you haven't manetioned to sort the ID colums as well. So IDs appear in the order of...
Forum: ASP Dec 31st, 2006
Replies: 2
Views: 4,519
Posted By msaqib
If you knwo the VBA, ou can create a macro in EXCEL and when ever the data is entered into a specified columns then the macro calculates te IRR and put it back into a specified cell. And you can get...
Forum: ASP Dec 31st, 2006
Replies: 3
Views: 4,405
Posted By msaqib
Hi
you can use the XMLHTTP object to get the data from any website and transform it and get the desired information.

Here is a nice tutorial on how to get the data from a website.
...
Forum: ASP Oct 1st, 2006
Replies: 1
Views: 3,000
Posted By msaqib
You can trigger more events on onChange event like

OnChange="fun1();fun2();"
Forum: ASP Oct 1st, 2006
Replies: 2
Views: 11,940
Posted By msaqib
Hello, try using the other driver than MS Access driver. Might be the driver is causing the error.
Forum: ASP Jun 21st, 2006
Replies: 1
Views: 11,033
Posted By msaqib
Hello,
You havent entered any cursor type for the recordset. You try the following line.
objRS.Open "ilizarov", objConn,adOpenDynamic , adLockOptimistic, adCmdTable

I think by default it take ...
Forum: ASP Jun 7th, 2006
Replies: 3
Views: 4,751
Posted By msaqib
Store all the values in a variable and then show them on the page. This would be easy to use and update at later stages.
Forum: ASP Jun 3rd, 2006
Replies: 1
Views: 3,997
Posted By msaqib
Hello,

You can use HASH Encoding to generate the random HEX values from any string of data in ASP. You can find lot of source code regarding Encoding in ASP and you can use any of them to...
Forum: ASP May 31st, 2006
Replies: 3
Views: 1,274
Posted By msaqib
In MS SQL Server there is a wiard named "Import & Export Data". You can use this wizard to import data from any data source to the SQL server.
Forum: ASP May 30th, 2006
Replies: 3
Views: 2,261
Posted By msaqib
Ok here is the actual code which you can use to post the data to the next server. It uses XMLHTTP object in ASP.

Response.Buffer = true
xml = Server.CreateObject("Microsoft.XMLHTTP")...
Forum: ASP May 26th, 2006
Replies: 3
Views: 2,261
Posted By msaqib
Well if the data is not huge then u can use the querystring to forward the data to the next server.

For posting the data you can use XML to post the data. I havent used that but i think it will...
Forum: ASP May 26th, 2006
Replies: 1
Views: 1,547
Posted By msaqib
Now what you haev to do is, just create an asp page with the name "SendEmail.asp" and save it. Then create an HTML form and in the action property of the form <form action="SendEmail.aso"...
Forum: ASP May 12th, 2006
Replies: 1
Views: 1,575
Posted By msaqib
Wel I had been using the ASP Maker software a year ago, but sorry i dont know the URL for that software. You can google ASP maker and can find it easily. Its a good tool for generating the ASP code...
Forum: ASP May 12th, 2006
Replies: 2
Views: 6,515
Posted By msaqib
You must put the CheckBoxes in a Form and must provide the same name to all the check boxes. Then on the next page you will have the collection of checkboxex which were checked. Your code on the next...
Forum: ASP May 12th, 2006
Replies: 1
Views: 3,681
Posted By msaqib
Hello, I think its not possible to debug the ActiveX dll from the asp page. All you can do is use the built in error messages to handle the errors.
Forum: ASP May 6th, 2006
Replies: 2
Views: 2,556
Posted By msaqib
<%
Dim lgn,pas ' Login name & Pasword
lgn=cstr(Request("login"))
pas=cstr(REquest("pass"))
if ((lgn="login") AND (pas="123")) then
session("admin") = True
response.Redirect("somepage.asp")...
Forum: ASP May 6th, 2006
Replies: 3
Views: 1,274
Posted By msaqib
Usually free server dont provide the asp hosting. Check to see if your hosting supports ASP, then the script will work fine.
Forum: ASP May 6th, 2006
Replies: 1
Views: 1,302
Posted By msaqib
Its not possible to read the files on a remote server using the ASP over http.
Yoou can only read/write files on the local machine only.
Forum: ASP Mar 23rd, 2006
Replies: 1
Views: 3,482
Posted By msaqib
Hello,
Here is a simple email function which you can use to send the emails from the web forms. For the spam i would suggest you not to disclose that page to the search bots. You can hide the direct...
Forum: ASP Nov 14th, 2005
Replies: 1
Views: 3,801
Posted By msaqib
Can you please explain what type of formatting do you want. There may be HTML formatting you can do or simple formatting like show the Line breaks and Tab characters?
Forum: ASP Nov 13th, 2005
Replies: 0
Views: 3,133
Posted By msaqib
Hello All,
I am working for a company, recently they bought a Shoping Cart "Evolve Merchant 4.1", Its working fine on the remote server and doing fne. But when i tried to run it on my local system...
Forum: ASP Nov 10th, 2005
Replies: 2
Views: 9,159
Posted By msaqib
Wel they way I use to print the whole page is by using the javascript to hide the things i dont want to appear on the print.
I use this javascript to hide the things, I pass the id of that...
Forum: ASP Nov 10th, 2005
Replies: 3
Views: 3,363
Posted By msaqib
You can use the session variables to store the user related information. That is the most simple way to store information baout a particular user.
Forum: ASP Nov 8th, 2005
Replies: 1
Views: 12,092
Posted By msaqib
Here is how you can attach the image to an email using the HTMLBody property.
.HTMLBody = .HTMLBody & "<img src=""domaine.com/image.gif""><br><br>

I mean by usng the complete remote image path,...
Forum: ASP Nov 8th, 2005
Replies: 2
Views: 3,566
Posted By msaqib
It seems that either your username or passowrd is wrong thats why its givng the authentication error.
Forum: ASP Nov 8th, 2005
Replies: 5
bu
Views: 2,265
Posted By msaqib
yes u canhave a variable incrementing each time the record changes under the loop. Also u can concatinte that variable with the ID coming from the database
like
[code]Dim rd
rd=1
while...
Forum: ASP Nov 7th, 2005
Replies: 5
bu
Views: 2,265
Posted By msaqib
You can get selected one record if u place all the records in a single form and place a radio button with each record with the same name and in the value field u set the ID for that record. Now Place...
Forum: ASP Nov 7th, 2005
Replies: 2
Views: 3,282
Posted By msaqib
Syntax error in INSERT INTO statement.
This commonly occurs when your field name is a reserved word. Adjust your field names and SQL statement accordingly and you should avoid the problem.

If...
Forum: ASP Nov 7th, 2005
Replies: 1
Views: 10,574
Posted By msaqib
Here is a class that parse the RSS XML.

<%
'+---------------------------------------------+
'| RSS Content Feed VBScript Class 1.0 |
'| © 2004 www.tele-pro.co.uk...
Forum: ASP Nov 6th, 2005
Replies: 1
Views: 6,900
Posted By msaqib
Hello here is an article that might help you how to import the data from Excel sheet to Database.
http://forums.codecharge.com/posts.php?post_id=64435...
Forum: ASP Nov 6th, 2005
Replies: 5
bu
Views: 2,265
Posted By msaqib
yes it is possible,
Below is the code you can use.


<table>
<tr>
<td>Name</td>
<td>Telephone</td>
<td>Email</td>
</tr>
Forum: ASP Nov 6th, 2005
Replies: 2
Views: 3,275
Posted By msaqib
Write the code as under... Check where the End If statement is!

<%@ Language="VBScript" %>
<%reg=Request("reg")%>
<%
if reg <> 0 then
%>
<SCRIPT LANGUAGE="JavaScript">
alert("Confirmed. The...
Showing results 1 to 40 of 42

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC