Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

ASP.NET Forum


You are currently viewing our ASP.NET Forum as a guest. Please register to participate.
Login



Reply
Old 04-10-2006, 10:58 PM Web Desktop
atomicshockwave's Avatar
Experienced Talker

Posts: 38
Trades: 0
Hi I am new to this and need some help.

1. I have dhtml popup in the webpage, is there some way to minamize a javascript popup to a corner of the screen.

2. this thing ( the web desktop) i want to be customizable, I think this needs to be done with an ASP portal, am I right about that? have any recomendations?

thanks in advance
atomicshockwave is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 04-11-2006, 05:37 AM Re: Web Desktop
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
1/ yes, just set the window properties to suit

http://www.mozilla.org/docs/dom/domr...indow_ref.html

2/ No idea. It will depend on server technology, what "it" actually is and how "it" needs to work.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 04-11-2006, 09:38 AM Re: Web Desktop
atomicshockwave's Avatar
Experienced Talker

Posts: 38
Trades: 0
I am on a MS Hosting, But ASP might be to constricting, I might move to a linix host.

The popups I was talking about are not browser windows but rather like these:
http://www.dynamicdrive.com/dynamici...htmlwindow.htm

This is not the window I am using, but the coding is simaler to mine.
atomicshockwave is offline
Reply With Quote
View Public Profile
 
Old 04-11-2006, 10:11 AM Re: Web Desktop
atomicshockwave's Avatar
Experienced Talker

Posts: 38
Trades: 0
Ok I found the code to minamize the windows :-)

Just cant seem to understand how this whole thing works with user customizable pages ???????
atomicshockwave is offline
Reply With Quote
View Public Profile
 
Old 04-11-2006, 12:38 PM Re: Web Desktop
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
It would probably help if we knew more about what you are asking about.

Guessing isn't a good idea.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 04-11-2006, 02:02 PM Re: Web Desktop
atomicshockwave's Avatar
Experienced Talker

Posts: 38
Trades: 0
I am creating a web desktop. In HTML, javascript, Java, and flash. In the next version AJAX. the backround needs to be changable, there will be widgets (clocks, notepads, news feeds...) that users will need to be able to add, and delete.
atomicshockwave is offline
Reply With Quote
View Public Profile
 
Old 04-13-2006, 03:07 PM Re: Web Desktop
atomicshockwave's Avatar
Experienced Talker

Posts: 38
Trades: 0
OK is there any way to automate account creation on your websit, then when an account is created a folder is created with there personal web page, all pasword protected, then when the person logs in they are directed to there web page?
atomicshockwave is offline
Reply With Quote
View Public Profile
 
Old 04-13-2006, 07:28 PM Re: Web Desktop
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Yep
just need to create a entry in the database with all the appropriate details
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 04-13-2006, 07:38 PM Re: Web Desktop
atomicshockwave's Avatar
Experienced Talker

Posts: 38
Trades: 0
How would I go about dooing that????
atomicshockwave is offline
Reply With Quote
View Public Profile
 
Old 04-14-2006, 04:06 AM Re: Web Desktop
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
And there was me thinking you were coding this project!

No idea, are you still on ASP (we have an ASP forum)

what database type are you using?
what database management tools have you got?
do you need to create the tables from code?
have you designed a DB schema for the project?
can you code in ASP using ADO?
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Old 04-14-2006, 08:35 AM Re: Web Desktop
atomicshockwave's Avatar
Experienced Talker

Posts: 38
Trades: 0
Well I am coding this thing, I have never programed server side. but then again 2 weeks ago I dident even know how to programe HTML and now I am wrighting my own java script without any assistence.

I have a SQL database.

I have code changing code in my site, so insted of saving the changes to a persons page on my site. It changes the code, that is the reason I am looking for a way to automate folder creation with the default files in it. Cant say much moor then that ( it would give away to meany details)
atomicshockwave is offline
Reply With Quote
View Public Profile
 
Old 04-14-2006, 07:11 PM Re: Web Desktop
chrishirst's Avatar
Missing! presumed drunk.

Posts: 41,517
Name: Chris Hirst
Location: Blackpool. UK
Trades: 0
Give too much away??
Man, anyone who can answer your question is already going to know exactly what is needed to accomplish the project.

anyway
A function to create a folder
Code:
Function CreateFolder(FolderName)
Dim objFSO 
Set objFSO= Server.CreateObject("Scripting.FileSystemObject")
'Create the folder
If objFSO.FolderExists(foldername) then
  CreateFolder = False
  else
  objFSO.CreateFolder(foldername)
  CreateFolder = True
End If
End Function
A function to open a template and replace a placeholder with a value.
Code:
function SetDefaultDoc()
dim Body
Body = ReadText("/templates/def_inc.asp")
Body = Replace(Body,"[catid]",strNewCatID)
WriteFile(body)
end function
A function to create a default document in a folder.
(used in the function above)
Code:
function WriteFile(strText)
'write default doc file
dim objFSO, OpenFile
set objFSO = CreateObject ("Scripting.FileSystemObject")
set OpenFile = objFSO.CreateTextFile(Server.MapPath( strFolder) & "/" & DefaultDoc ,true)
OpenFile.Write strText
OpenFile.Close
set OpenFile = Nothing
set objFSO = Nothing
end function
Notes:
DefaultDoc is a constant that is a string value for the file name (default.asp)
strFolder is a variable set in the calling page for the folder where the files is to be created
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
chrishirst is offline
Reply With Quote
View Public Profile Visit chrishirst's homepage!
 
Reply     « Reply to Web Desktop
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.37368 seconds with 12 queries