Search Results

Showing results 1 to 40 of 66
Search took 0.01 seconds.
Search: Posts Made By: Baradaran
Forum: JavaScript / DHTML / AJAX 11 Days Ago
Replies: 2
Views: 259
Posted By Baradaran
Great, thank you for the quick reply, working perfect. Thank you again.
Forum: JavaScript / DHTML / AJAX 11 Days Ago
Replies: 9
Views: 362
Posted By Baradaran
I think you have forgotten to close the container div. Your code should work with the div closed!
Forum: ASP 11 Days Ago
Replies: 2
Views: 397
Posted By Baradaran
Dear,
which links do you mean? I had a quick look at the script, seems to be fine. Or maybe I have not understood your problem.

Ali
Forum: JavaScript / DHTML / AJAX 11 Days Ago
Replies: 2
Views: 259
Posted By Baradaran
Hi,
This is probably a very simple problem, but still it is bugging me for a while. I have tried to google for solutions, but I did not find any.

I have a div containing a few text elements like...
Forum: JavaScript / DHTML / AJAX Jul 8th, 2009
Replies: 0
Views: 326
Posted By Baradaran
There are several categories, and in each category there are pictures. When you choose a category, all picture names are listen (as a list using Ajax). I want to make the list draggable, so that I...
Forum: ASP Mar 10th, 2009
Replies: 2
Views: 1,352
Posted By Baradaran
Dear, U tried several times, but the session ID did not change. Please let me know which Firefox version you are using.

In case you have adjusted a short session timeout, then the session expires...
Forum: ASP Mar 10th, 2009
Replies: 1
Views: 924
Posted By Baradaran
Hi,
downloading is absolutely no problem. You simply make a link to the file. Some servers do not serve all files, but in most cases you can download the files.

Uploading can be a little more...
Forum: ASP Feb 25th, 2009
Replies: 7
Views: 1,585
Posted By Baradaran
Hi Anu,
This time I understood more. This is very complicated though. I assume your sites are on different servers. As your referrer is secured, the referrer information is actually not sent. At...
Forum: ASP Feb 24th, 2009
Replies: 1
Views: 799
Posted By Baradaran
Hi,
tell CDO to send the mail as html, then this issue is solved.
Forum: ASP Feb 24th, 2009
Replies: 7
Views: 1,585
Posted By Baradaran
Dear Anu,
I have never experiences such a problem before, therefore I can not explain why IE would not get the referrer data. Anyway, maybe you can bypass the problem by using a form and a hidden...
Forum: ASP Feb 24th, 2009
Replies: 1
Views: 636
Posted By Baradaran
Hi,
just set the following line at the very end of your file:

<% Response.Redirect "gracias.asp" %>


Good luck.
Ali Baradaran
Forum: ASP Feb 23rd, 2009
Replies: 7
Views: 1,839
Posted By Baradaran
Hi,
This has nothing to do with ASP. ASP can only act when the called file is existing.

Some providers offer the option for customized error pages. If you provider does it as well, then you can...
Forum: ASP Feb 23rd, 2009
Replies: 7
Views: 1,585
Posted By Baradaran
Dear Anu,
This is very complicated what you have written. The referer is only shown when a page is referred to by a click. That means, if you click on a link and get to a page, the first page is the...
Forum: ASP Feb 23rd, 2009
Replies: 2
Views: 837
Posted By Baradaran
Hi Mohamed,
First, use global.asa to put every visitor into a table and assign them a unique ID. The count of the records is the number of the total visitors.

Once a visitor logs in, you assign...
Forum: Visual Basic 4 / 5 / 6 Nov 13th, 2008
Replies: 1
Views: 509
Posted By Baradaran
Hi,
this does not seem to be complicated. Please change the command click sub as follows. Please dim both the recordset and the connection before running the code.

Imagine: conn = the...
Forum: ASP Nov 13th, 2008
Replies: 9
Views: 4,913
Posted By Baradaran
Hi,
aside the mentioned restrictions, saving images on your server would be quite difficult. Usually the images are sent to the browser, that means you have to use a virtual browser in order to get...
Forum: ASP Nov 13th, 2008
Replies: 1
Views: 854
Posted By Baradaran
Hi,
once the text file has been created, use
Response.Redirect to get to the second file, where you can send an e-mail.

I think you need to forward some information to the second file, e.g....
Forum: ASP Oct 27th, 2008
Replies: 3
Views: 925
Posted By Baradaran
Hi,
Start -> Run -> firewall.cpl
Then Exceptions, add port 80.

That should open the port.
Forum: ASP Oct 27th, 2008
Replies: 7
Views: 1,445
Posted By Baradaran
Hi,
Everything you select on the left side, must be in the group by clause.

select max(HitId) as [ID], LoginName, Prop_code, Visitdate from HitTable Group by LoginName, Prop_code, Visitdate.
Forum: HTML and CSS Oct 26th, 2008
Replies: 8
Views: 1,372
Posted By Baradaran
Hi,
dynamic width and dynamic number of tables is not possible, just as msaqib said, you have to make the decision about the page break before you put the style into css.

If you want to make both...
Forum: ASP Oct 26th, 2008
Replies: 3
Views: 925
Posted By Baradaran
Hi,
try opening port 80 on your firewall. By typing http://your ip address you should automatically see the IIS page.
Forum: ASP Oct 26th, 2008
Replies: 7
Views: 1,445
Posted By Baradaran
Hi,
you have to use group by in your sql command:

select max(id) as ID, LoginName Prop_code Visitdate from TABLE_NAME Group by LoginName;


This way you only get one record from each LoginName...
Forum: ASP Oct 25th, 2008
Replies: 1
Views: 971
Posted By Baradaran
Hi,
I understood that you have 3 files, which contain some identical data. If you redefine classes, then you get an error. There is no need to have copies of classes, if you wish to include all...
Forum: ASP Oct 25th, 2008
Replies: 7
Views: 1,445
Posted By Baradaran
Hi,
To make it very simple, add a unique ID to the table, then use


select max(id), LoginName Prop_code Visitdate from TABLE_NAME


As every entry gets a higher ID, you automatically get the...
Forum: ASP Oct 25th, 2008
Replies: 7
Views: 1,445
Posted By Baradaran
Hi,
To make it very simple, add a unique ID to the table, then use



select max(id), LoginName Prop_code Visitdate from TABLE_NAME


As every entry gets a higher ID, you automatically get...
Forum: ASP Oct 24th, 2008
Replies: 1
Views: 983
Posted By Baradaran
Hi,
I set up a multi-lingual website by using Laguage IDs, so English has ID 1, German 2 etc.
I implement the language variable in three places:
QueryString
Session Variable
Global Variable...
Forum: ASP Oct 22nd, 2008
Replies: 4
Views: 1,821
Posted By Baradaran
Hi,
There are different methods for using one file (product.asp) to display dynamic content.

One simple method is to select case based on the product ID sent to the page through the address:...
Forum: ASP Oct 11th, 2008
Replies: 10
Views: 2,439
Posted By Baradaran
Oh, I always said include. Please do not use include, but the src of the image.

Good luck!
Forum: ASP Oct 11th, 2008
Replies: 10
Views: 2,439
Posted By Baradaran
Hi,
I would recommend you to create a pure .asp page which shows you the OLEDB data from the database only. OLEDB Data have to be responded differently than other data. Then you include that file in...
Forum: ASP Oct 8th, 2008
Replies: 4
Views: 1,068
Posted By Baradaran
Hi, you can use Jet 4.0 to connect to Access
:

Set conn = server.createobject("adodb.connection")
DSNTEMP = "provider=Microsoft.Jet.OLEDB.4.0;data source=" & App.Path & "\Record.mdb; Jet...
Forum: ASP Oct 8th, 2008
Replies: 1
Views: 637
Posted By Baradaran
Hi,
you can create a session variable and apply levels for the users who sign in. You can define the variables as levels (1,2,3) for each user, 1 = administrator, 2 = manager and 3 = user. You can...
Forum: Visual Basic 4 / 5 / 6 Oct 7th, 2008
Replies: 5
Views: 1,166
Posted By Baradaran
Dear All,
I appreciate your kindness very much. The solution of this problem was in the following SQL Statement:

Select Min(ID) AS ID, CITY From Representatives Where PROVINCE = 'BAVARIA' Group...
Forum: ASP Oct 1st, 2008
Replies: 1
Views: 1,429
Posted By Baradaran
Hi
This might be because you have no space between the " and the checked in line 8.


<td width="4%"><input name="normal_req" id="normal_req" type="checkbox" value="1"<% If...
Forum: Visual Basic 4 / 5 / 6 Oct 1st, 2008
Replies: 3
Views: 1,522
Posted By Baradaran
Hi,
you can use a code like this:

Sub btn_close_click()
Dim Response As Integer
Response = MsgBox("Are you sure you want to close the window?", vbYesNo, "Close Window?")
If Response =...
Forum: Visual Basic 4 / 5 / 6 Oct 1st, 2008
Replies: 5
Views: 1,166
Posted By Baradaran
Dear Jireh,
You are totally right. It does not return all cities, but it returns all cities in that specific province. By all cities I mean it also returns duplicate records. I want it to return...
Forum: Visual Basic 4 / 5 / 6 Sep 30th, 2008
Replies: 5
Views: 1,166
Posted By Baradaran
Hi,

Select ID, CITY from REPRESENTATIVES Where PROVINCE_ID = " & LST_PROVINCE.Text & "


the above sql returns all cities in the table. Now I want to display any occurrence once, even if it is...
Forum: ASP Sep 27th, 2008
Replies: 2
Views: 843
Posted By Baradaran
The sql would look like this

strSQL = "SELECT broker_id, firstname, lastname FROM login_table WHERE trim(lcase(email_address)) = '" & trim(LCase(Request.Form("email_address"))) & "'"
Forum: ASP Sep 27th, 2008
Replies: 2
Views: 843
Posted By Baradaran
Hi,
have you tried to make the compare with either lcase or ucase of both items?
Forum: Visual Basic 4 / 5 / 6 Sep 27th, 2008
Replies: 7
Views: 1,300
Posted By Baradaran
Dear dspnhn,
Thank you for the code. The problem is, this code gets about 4000 records, removes the spaces between the data, compares it to the search term, if it suits, it accepts it, if not, it...
Forum: ASP Sep 26th, 2008
Replies: 5
Views: 1,017
Posted By Baradaran
Hi,
you can use an sql database, which you can access from any site by providing the correct username and password. This is probably the easiest solution.
Showing results 1 to 40 of 66

 


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

©2003 - 2009 DaniWeb® LLC