Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 30
Search took 0.18 seconds.
Search: Posts Made By: Khaled
Forum: ASP.NET 11-23-2012, 01:14 AM
Replies: 1
Views: 974
Posted By Khaled
Question How to access property of user control with variable ID?

Hello everybody.
I have two instances of same user control.
This user control has a property.
Each instance has different value of this property and different ID.
For example:
<uc:UserControl...
Forum: HTML & CSS 05-16-2011, 09:31 AM
Replies: 4
Views: 1,230
Posted By Khaled
Question display: table-cell equivalent colspan

Assume I have the following simple HTML:
<div id="Table" style="display: table;">
<div id="Row1" style="display: table-row; height: 100px;">
<div id="Cell1" style="display: table-cell;...
Forum: PHP 10-23-2008, 01:18 PM
Replies: 6
Views: 745
Posted By Khaled
Smile Resolved

Thank you _Aerospace_Eng very much.

But..., I don't know why require is work fine instead of include.
Forum: PHP 10-22-2008, 04:10 PM
Replies: 6
Views: 745
Posted By Khaled
Unhappy The function in included file is not recognized.

Hello everybody...

I want to include a file (inc.php) that contain a function (func) in another file (index.php).

while

inc.php code is
<?
function func() {
return "Hello";
Forum: JavaScript programming 08-16-2007, 04:22 PM
Replies: 0
Views: 493
Posted By Khaled
Question I want to get new created object parent.

Hi all...

Suppose:-
1 - There is a DIV and the ID of this DIV is MyDiv.
2 - There is a JavaScript function creates an object called MyObject.
function MyObject() {
ObjectInstance=new Object()...
Forum: JavaScript programming 07-17-2007, 12:49 PM
Replies: 2
Views: 810
Posted By Khaled
Can I rotate image ?

Hello all...
Can I rotate image by JavaScript?
I mean change its angle, like Flash.
Thank you for any help.
Forum: JavaScript programming 05-15-2007, 02:41 PM
Replies: 4
Views: 1,090
Posted By Khaled
Welcome everybody... I think this is your...

Welcome everybody...
I think this is your needs.

<script>
function process1() {
document.getElementById("B1").innerText = document.getElementById("A1").value;
}
</script>
<input id="A1"...
Forum: ASP 03-14-2007, 04:54 PM
Replies: 2
Views: 699
Posted By Khaled
Question Is there a disadvantage of disabling buffering ?

Hello everybody ...

We can use
RESPONSE.BUFFER=FALSE
to display each part of code output immediately when executed, and don't force user to wait on a white page until all the code execute.
...
Forum: ASP 01-15-2007, 07:55 PM
Replies: 4
Views: 4,197
Posted By Khaled
Insert comma in MS Access

Hello everybody...

I am trying to insert a string variable with INSERT SQL statement into MS Access database.

This variable contains a comma(,).

When execute SQL statement, it cause a syntax...
Forum: ASP 11-28-2006, 02:41 PM
Replies: 1
Views: 1,057
Posted By Khaled
Session doesn't work on server although it works fine on localhost.

Hello all ...
The problem is when browsing the site on the localhost, the session works fine.
But ... when I publish this site on the server and browse it, the session doesn't work.
Although this...
Forum: ASP 11-12-2006, 10:14 AM
Replies: 1
Views: 903
Posted By Khaled
Progress bar

Hello all...
I want to make a uploading progress bar.
The problem is how I can get the transferred size of file, or get transfer speed.
I am using Pure ASP File Upload, I get it from...
Forum: ASP 08-13-2006, 03:59 PM
Replies: 3
Views: 990
Posted By Khaled
Thumbs up I solved it

Hi everybody ... :)
I solved the problem :thumbsup:
The problem was that the currency type must not arrounding by qoutes.
The computer was give me error message :

because the computer...
Forum: ASP 08-06-2006, 01:49 PM
Replies: 1
Views: 5,738
Posted By Khaled
Can I clear all array contents in one step ?

Hi all...
Can I clear all array contents in one step ?
Thank you for help...
Forum: ASP 08-06-2006, 12:34 PM
Replies: 3
Views: 990
Posted By Khaled
Copy data from Access to SQL Server problem

Hi all...

I am trying to fill SQL database with data on Access database.

I am using SELECT statement to get all rows from all tables in Access database ,and using INSERT statement to insert...
Forum: HTML & CSS 06-24-2006, 01:10 PM
Replies: 9
Views: 943
Posted By Khaled
Hello tevz, how are you? I think you must use a...

Hello tevz, how are you?
I think you must use a table like the following:
<table width="100%" style="border : 1px solid #000000;">
<tr>
<td valign="top">Some text.
<td...
Forum: HTML & CSS 06-24-2006, 12:50 PM
Replies: 7
Views: 635
Posted By Khaled
Hi paulley, welcome to the forum. Try to use...

Hi paulley, welcome to the forum.
Try to use this.
& #0163;
but delete the space between & and #.
Forum: ASP 06-23-2006, 03:50 PM
Replies: 3
Views: 1,375
Posted By Khaled
Hi Evellon, how are you ? Thank you for your...

Hi Evellon, how are you ?
Thank you for your response, but of course I know that.
I want to make that dinamically, I mean that I want code to know where the primary key.
Forum: ASP 06-21-2006, 06:02 PM
Replies: 2
Views: 687
Posted By Khaled
Thumbs up Thanks God, I solved this problem.

Hi all...
Thanks God, I solved this problem.:thumbsup:

IF RS("Table_Type")="TABLE" THEN
RESPONSE.WRITE(RS("Table_Name"))
END IF

Note : I am using SQL Server 2000
Forum: JavaScript programming 06-21-2006, 05:43 PM
Replies: 2
Views: 624
Posted By Khaled
Hi rulian, how are you ? The problem is the...

Hi rulian, how are you ?

The problem is the second line executed while sendform function is in proccessing and don't wait for ending processing.
The solution is putting the second line in the end...
Forum: ASP 06-20-2006, 06:09 PM
Replies: 2
Views: 687
Posted By Khaled
How I can differ between tables and queries?

Hi all...
When I retrieve tables names from a database by this code
SET RS=CON.OpenSchema(adSchemaTables)
It retrieving the tables names and the queries names together.
How I can know is it a...
Forum: ASP 06-20-2006, 05:50 PM
Replies: 3
Views: 1,375
Posted By Khaled
How I can know primary key field name ?

Hi all...
Now, I can retrieve table fields names.
But I need to know which field is the primary key.
Is there a property of the fields show if it is a primary key or not ?
OR
Is there a method...
Forum: ASP 05-17-2006, 03:00 PM
Replies: 2
Views: 1,581
Posted By Khaled
Using semi-colon in SQL statement in SQL server 2000

Hi everybody...:)
Can any one tell me any information about using semi-colon in SQL statement in SQL server 2000.
Thank you for any help.
Forum: ASP 05-14-2006, 05:09 PM
Replies: 1
Views: 987
Posted By Khaled
Get page title or URL

Hi all...
How I can get page title or page URL with ASP ?
Thank you for any help.
Forum: ASP 05-13-2006, 11:10 AM
Replies: 3
Views: 666
Posted By Khaled
Hi miranda, how are you ? The error message is...

Hi miranda, how are you ?
The error message is only
error '8004020f'
And onother line contains file name and line number of code which contains the .Send method
Forum: ASP 05-11-2006, 06:02 PM
Replies: 3
Views: 666
Posted By Khaled
Send email with variable address

Hi everybody...
I am making a webpage that sending an email, this page works fine when email addresses are constant like :
MSG.To="name@domain.com"
where MSG is the CDO.Message object.
But the...
Showing results 1 to 25 of 30

 
Forum Jump

All times are GMT +1. The time now is 02:10 AM.