Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 2
1
2
>
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
How to access property of user control with variable ID?
Views:
974
Posted By
Khaled
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
display: table-cell equivalent colspan
Views:
1,230
Posted By
Khaled
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
The function in included file is not recognized.
Views:
745
Posted By
Khaled
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
The function in included file is not recognized.
Views:
745
Posted By
Khaled
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
I want to get new created object parent.
Views:
493
Posted By
Khaled
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
Can I rotate image ?
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
Input to auto write
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
Is there a disadvantage of disabling buffering ?
Views:
699
Posted By
Khaled
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
Insert comma in MS Access
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
Session doesn't work on server although it works fine on localhost.
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
Progress bar
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
Copy data from Access to SQL Server problem
Views:
990
Posted By
Khaled
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
Can I clear all array contents in one step ?
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
Copy data from Access to SQL Server problem
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
Image align in the paragraph
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
got problem with displaying £ signs in a page
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
How I can know primary key field name ?
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
How I can differ between tables and queries?
Views:
687
Posted By
Khaled
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
help slowing a function
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
How I can differ between tables and queries?
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
How I can know primary key field name ?
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
Using semi-colon in SQL statement in SQL server 2000
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
Get page title or URL
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
Send email with variable address
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
Send email with variable address
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
Page 1 of 2
1
2
>
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
02:10 AM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.