Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Reply
 
Thread Tools Display Modes
Old Sep 28th, 2006, 10:01 PM   #11
pal
Programmer
 
pal's Avatar
 
Join Date: Mar 2005
Location: Washington
Posts: 90
Rep Power: 4 pal is on a distinguished road
Actually, using Visual Studio .NET or Visual Web Developer Express, is pretty easy, you can get genuine database up and running in no time without extensive coding. You can simply drag and drop .NET components into the design. Cool thing about it is that you could also have full control over your ASP.NET code. You can use C# or VB.NET for the programming language, I use C#. If you're a beginner on server-side scripting languages like php or perl, you could consider using ASP.NET with visual studio, you don't really have to learn alot about the language itself. Check out www.asp.net, they have some good asp.net tutorials using both VB.NET and C#. If you want to run ASP.NET on the server you'll need IIS (or windows server) or probably Mono (if the server is linux).
pal is offline   Reply With Quote
Old Sep 28th, 2006, 10:11 PM   #12
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
I'm thinking he's primarily going to have to use what they have, and I'm guessing it's not a .NET-centric suite....

What is a "genuine database"?? I thought the ones mentioned were.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote
Old Sep 29th, 2006, 5:31 PM   #13
George Harrison
Newbie
 
George Harrison's Avatar
 
Join Date: Jul 2006
Location: Pepperland
Posts: 16
Rep Power: 0 George Harrison is on a distinguished road
hmm.. well today didn't go that well but I saved myself by throwing together a small gui in windows forms/C# with buttons that don't execute anything but it was just to show off what it could look like I guess. I grew impatient and ran out of time with the php stuff, I googled and googled yet only came up with php-gtk but I might have been making my searches too specific. I also skimmed the php docs lightly but not too much, just using ctrl+f with a search for "gui" but found little.

The server at school is apache 1.x and mysql but I forgot the version number. I was reading around that C# apps can run under apache with ease. mysql is a little bit trickier but it can be done I guess. I don't really like the idea of asp at the moment, from tutorials I think I can use html without asp, just a <form> like this:
 
<html>
<form action=http://127.0.0.1/cgi-bin/new.exe>
<input type=submit value=search>
</form>
</html>
but now I'm baffled on actually coding the app, drag/drop was easy but I have to first code the buttons and then add source to where it 'talks' to the mysql software on our servers. I'll google around a bit and overall learn areas of C#, hopefully this won't take longer than 2 weeks. btw, if I am completely wrong about the asp and IIS stuff please tell me because I don't really know, these are primarily assumptions and other people's explanations through tutorials. Also, I could very well be not looking in the correct places for the php gui stuff as well so if anyone could point me in the right direction that would be quite nice. Thanks.
George Harrison is offline   Reply With Quote
Old Sep 29th, 2006, 7:36 PM   #14
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
If your user interface is a browser, as you suggest, GUI stuff on the server side will do you no good. The GUI will have to be implemented on the browser with HTML. Java could be used, but that's a steep curve for you. The HTML that the client receives in order to render the GUI can be written by you directly, or indirectly, using server-side code, such as PHP. You're not trying to put a GUI on the server, but on the client.

I'm not sure you understand the workings of a client-server under HTTP. It is not a direct connection; there is no true interaction. It is more like a pair of walkie-talkies than like a telephone. The client initiates the request. The addressed server, if found, returns a response. This response normally includes HTML, which the browser uses to render the visible page. The connection is then dropped. The process is stateless. The concept of continuing sessions is purely artificial.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote
Old Sep 29th, 2006, 8:08 PM   #15
Wizard1988
Professional Programmer
 
Wizard1988's Avatar
 
Join Date: Oct 2005
Location: Chitown
Posts: 417
Rep Power: 3 Wizard1988 is on a distinguished road
Send a message via AIM to Wizard1988
Basically you will be using HTML forms to get all your data.
HTML alone can't work with databases, and this is why you need a server side language. You might want to look at this.
I hope this helps
__________________
JG-Webdesign
Wizard1988 is offline   Reply With Quote
Old Sep 29th, 2006, 9:01 PM   #16
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
Here's an example of an HTML-generated user interface in two user-caused states. The whole site is database driven, using PHP and mySQL. The cart and order pages look more like tables, of course. Anything that is not in inventory disappears and can't be purchased. The pages are redacted and presented as images so as not to represent advertising for my client.
Attached Images
File Type: jpg Image1.jpg (18.6 KB, 31 views)
File Type: jpg Image2.jpg (19.4 KB, 27 views)
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote
Old Sep 29th, 2006, 11:07 PM   #17
George Harrison
Newbie
 
George Harrison's Avatar
 
Join Date: Jul 2006
Location: Pepperland
Posts: 16
Rep Power: 0 George Harrison is on a distinguished road
ok, I think I'm finally understanding the technical details now and although I feel enlightened I kind of feel dumb as well, but I get it now so it's all good. A word of thanks goes out to dawei for source examples and everyone else that provided links and opinions, wizard's link especially helped considering the tut dealt specifically with order forms - you're a good googler. Anyhoo, you guys are cool thanks for helping out.
George Harrison is offline   Reply With Quote
Reply

Bookmarks

« Previous Thread in Forum | Next Thread in Forum »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
School Project (Need Help) Digit Visual Basic 9 Apr 28th, 2006 5:20 AM
How to meet these cross-platform project goals? mattengland C++ 1 Apr 3rd, 2006 4:01 AM
School Project Ideas? bigguy Visual Basic 19 Mar 26th, 2006 3:24 PM
NCAA Bracket School Project Cipher Visual Basic 2 Mar 20th, 2006 9:07 AM
My Database Project emdiesse Visual Basic .NET 14 Jan 6th, 2006 9:05 AM




DaniWeb IT Discussion Community
All times are GMT -5. The time now is 1:32 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC