|
Sorry, you are going to need to give more information.
I know you are not asking for a way to implement a login with only HTML/JavaScript because that is obviously impractical and could never be secure or dynamic.
Are you using Apache , IIS, no web server? I know you are not using PHP or any other server side language so you don;t have many choices at all. Please explain more about your website.
Brad
Australian
- Captain See Sharp on "Religion"
any half intelligent person can come to the conclusion that pink unicorns do not exist.
|
|
|
|
|
You can use php just for connection and login too, then after you can let all on html
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my answer is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
Hi,
Really sorry when i said "No PHP" I simply meant that i am not currently using it. i have no objections to using PHP if that’s what you guys think is best
I am a Delphi app developer and have never ventured into the website side of things. but i have made a very simple website using just Html CSS and would like to host it. I would like a login screen but I have no knowledge of website database connections or how to host a site subsequently I am fumbling about a lot !
So please don’t be offended by my naivety !
and any tips you could share that would help me down the right path would be fab
Thanks again
John
|
|
|
|
|
I think php is very friendly language and also easy to implement. And also you can do it after knowing some basic of it.
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my answer is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
In order to connect to a DB and verify your login, you're going to need some kind of server side code to run...
It's just a matter of picking one that you know a bit of and writing a very simple bit of code...
|
|
|
|
|
Mate I am going to suggest that you purchase a small space on a web server (i can recommend one if you contact me by email) and then have them worry about the server itself. This leaves you to practice to your hearts content and means you wont have to know how to install the different pieces of software you need.
Please contact me using the email link if you want advice on this matter.
Brad
Australian
- Christian Graus on "Best books for VBscript"
A big thick one, so you can whack yourself on the head with it.
|
|
|
|
|
Paddy Boyd wrote: need some kind of server side code to run
That's right.
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my answer is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
Hi,
Thanks for your replies they have been most helpful!!!
I have been looking into buying some space on a web server but there are so many!!! and they all offer such a wide array of things !! !! hence this email
I would be most grateful if you could recommend one as i feel like me searching alone is like feeding time for the lions!
I am really looking forward to having a play with PHP. From the few sites i have read it sounds really good ! Incidentally are there any good sites that you would recommend ?
Thanks again for all your help its saved me days of fumbling around hehe
John
|
|
|
|
|
So Which language you think to use??
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my answer is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
Hi,
I think PHP sounds good !!
so i will take a look on google and see if i can find a good tutorial.
Does anyone know any good sites ?
Thanks Lots to everyone
John
|
|
|
|
|
Thats good, Try google and also ask Brad. He can give you some links for good sites of php.
Yet if you have any doubt in connection or login then again ask we will try to help you our best.
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my answer is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
I hope you got the answer.
--------------------------------------------------------------------------------------------------
Hiral Shah
India
If you think that my answer is good enough and can be helpful for other then don't forget to vote.
|
|
|
|
|
Hi,
I am using ASP for developing on web application.
Here i am using a object of a third party control(for menu items) say objitem.
for directing from one page to another page
we are using like
objitem.url=page.asp
my need is, i want to open a new window from this object
like
objitem.url="window.open(page.asp)";
here window.open is a javascript.
I want to invoke a javascript from asp code.
how i do this?
All I ever wanted is what others have.... CrazySanker
|
|
|
|
|
You can't invoke JavaScript from ASP directly. You could use Ajax..
Brad
Australian
- Captain See Sharp on "Religion"
any half intelligent person can come to the conclusion that pink unicorns do not exist.
|
|
|
|
|
I am trying to get a lead capture to work with a version of Suger CRM (I have tried their forums to only be greeted with no answer at all). The version is 4.51 and I am using it with Apache and Mysql. It is set up and I can log into the main page with no problem. The problem lies that apparently it created no database for the users and when I try to capture leads on our website they never actually get captured.
My question I guess would be is there a better free lead capturing method (preferably easy to install and use) that will capture all the names and emails of clients and display them in a why we could use them to send news about our product with? Or does anyone know how to properly get Sugar CRM to function correctly?
I really need to get this to work asap. Also what is a good book that may help with these php scripts?
|
|
|
|
|
|
Hopefully someone can help me out here. I'm looking a pre-designed web forum written in C#.
Kinda of like you can get with vBulletin or a phpBoard.
If you can point me in a direction to anything like that. I'm not to concerned whether it is free or not.
Thanks In Advance!!
Bob
|
|
|
|
|
|
Thanks alot Richard. I really appreciate the quick response.
|
|
|
|
|
|
Try this:
http://www.agileprogrammer.com/dotnetguy/archive/2002/03/09/4487.aspx
-------------------------
Don't worry, be happy )
|
|
|
|
|
Thanks alot Dmitry. I really appreciate the quick response.
|
|
|
|
|
Thanks alot guys I really appreciate it... I'm going to try both of them out.
|
|
|
|
|
Hi everyone,
I'm having trouble with a datagrid that is supposed to insert data. But one row has to insert data in the data base using Radio button. So I created two buttons one of Bad Mood then the other one is Good mood. when one is selected, the data is to be inserted into the database. this is working well. But the problem comes when it comes to images, thes images are smilies. When good mood is selected I want a smiley to be inserted into the database too. So I created the smilies but when and made them invisible so I wrote this code to be able save them in the database but I'm getting two errors. Where could I be wrong?
document.getElementById("imggm").style.visibility = "hidden";
function ChangeSmile()
{
if (document.getElementById("rblmood_0"))
{
document.getElementById("imggm").style.visibility = "none";
document.getElementById("imggm").src = "laughing.gif";
}
else
{
document.getElementById("imgbm").style.visibility = "visible";
document.getElementById("imgbm").src = "sad.gif";
}
}
The errors are:
Invalid token '(' in class, struct, or interface member declaration
Invalid token '=' in class, struct, or interface member declaration
(This error appears on the line: document.getElementById("imggm").style.visibility = "hidden";)
Thanks.
|
|
|
|
|
Your image buttons if the are server controls get different names in the html. So if you are planning on accessing them you need to know what the ClientID is.
I just wrote an article that uses javascript to try the enter key press. You can look at that article on how to pass in a controls ClientId so javascript knows how to find it.
http://www.codeproject.com/useritems/EnterKeyToButtonClick.asp[^]
Hope that helps.
Ben
|
|
|
|