Hi,
Did you include a doctype in your html file?
User Profile
Collapse
-
http://www.dynamicdrive.com/dynamicindex17/floatbar.htm
You might find that script helpful. This example shows the bar on the top. I am sure if you play around with the script, you can keep it to the right as well....Leave a comment:
-
-
Leave a comment:
-
Code:<% Dim fs,fo, dte Set fs=Server.CreateObject("Scripting.FileSystemObject") Set fo=fs.GetFolder("c:\test") dte = ("Folder created: " & fo.DateCreated) Response.Write(DateValue(dte)) set fo=nothing set fs=nothing %>
Leave a comment:
-
Leave a comment:
-
Did it work in firefox too? Because if its working in IE, it might not be a standard sometimes and will not work in other browsers.Leave a comment:
-
No Problem. If there is anything else, just post here. Some one will help you out.
Happy Scripting.Leave a comment:
-
Hi,
I am not from PHP. But assuming that you know how to connect to the database and retrieve information, I'll explain to you how the drop down box should be filled.
---------------------------
Open Database connections
retrieve data
<select name="" id="">
loop i to the end of file
<option value="value of the option (most of the time the id)">option...Leave a comment:
-
Your form tag should be:
<form method="post" action="url">
Then Javascript will submit the form by POST method.Leave a comment:
-
Hi,
I found the MSDN that comes with SQL Server the most useful till date.
Apart from that, there is a book that I would suggest - Professional SQL Server Programming By WROX press. It explains every little detail of SQL server for beginners.
You might want to wait for others opinions before going ahead and buying the book. Read other reviews also....Leave a comment:
-
SELECT TOP 1 sal FROM <table>
WHERE sal not in
(SELECT TOP 2 sal FROM <table> group by sal order by (count(sal)) desc)
group by sal
order by (count(sal)) desc
If you have unique salaries, you can take out the group by and count. If you have any doubts about this query, post back....Leave a comment:
-
Hi,
Since you haven't specified which sql you are using, I am writing this query in t-sql syntax. Please change it accordingly.
SELECT TOP 1 ManagerID
FROM <table>
GROUP BY ManagerID
ORDERBY (COUNT(ManagerI D)) DESC...Leave a comment:
-
You need to decrease the contents in the right panel. You need to increase contents in the panel below the menu.
You will need to check the net for resources to learn to code html pages with div and css.Leave a comment:
-
It might mean that your database is open and was not closed properly the last time you accessed it.
If you are using Access, go to the folder where the MDB file is present and see if there is a lock sign on it. If its there, then the database is open and you have to close it.
For more info, please see http://tutorials.aspfaq.com/8000xxxx...05-errors.htmlLeave a comment:
-
Hi,
Though I haven't used classes in ASP, I guess it is possible.
This article is a good one to start with. http://www.asp101.com/articles/richa...sp/default.asp
Chapters 12 & 13 relate to classes in this:
http://www.softwareprojects.org/asp-oop-12.htm...Leave a comment:
-
Hello Seshu,
You can find some free tools to help you do this.
Try this link
http://www.thefreecountry.com/progra...uthoring.shtml...Leave a comment:
-
You can try this:
window.parent.[top_frame_name].document.[form_name].[text_name].value
the items in [ ] should be replaced and the [ ] should be removed.Leave a comment:
-
Hi,
By "Click", do you mean rollover or when the page is showing that menu item? Eg: Do you want the "Service1" menu item to change when the "Service1" page is opened?
You can check for different kinds of menu at: http://www.dynamicdrive.com/style/cs...y/category/C2/Leave a comment:
-
The problem is with the table layout. This is a common problem. Unless you increase the number of lines in "Contents" part, the menu part will have more space.
Div's are more reliable for such "non-tabular" layouts.Leave a comment:
No activity results to display
Show More
Leave a comment: