Jump to content

aspnetguy

Members
  • Posts

    6,787
  • Joined

  • Last visited

Everything posted by aspnetguy

  1. only way is javascript, you might have to go to transistional
  2. I wrote (almost finish ) a blog software package, it wasn't that bad...the only thing I actually had to think about was getting the posts to show up in the archives properly.that is a good idea
  3. have you tried using the pdf as the src for an iframe...I have never tried it so I don't know if it will work
  4. it will have to be REALLY good to make me switch completely from ASP.Net...but I do program with PHP too so if I like I will add it to my bag of tricks and use it when I need it.
  5. Hmm...it is says only Red Hat and Suse. I wonder if it will work on Unbuntu? I'll give it a try, thanks a lot.
  6. Dan I don't get it. You are comparing learning how to work as a team to visiting a shrink?
  7. one last question. Does CF run on windows only or can it be run on Linux?
  8. Thanks good to know...I was starting to panic..sorry .Yeah I guess I will install it to learn and if I decide to actually make something live I will have to look for some server space cuz it would cost too much to worth while for me to have it for my server.
  9. Alot of AJAX sites are letting the users drag content boxes around to format the page the way they want and then save their preferences. It is a nice feature although alot of work and maybe not so practical for something like a guestbook.Overall the point of this project is to, yes, produce a working usable product but it is also to learn and understand the processes of a real life project and how to cordinate between team members.
  10. What does this mean...can I install is on my server and deploy CF websites? What does it mean by 2 IP connections? only 2 concurrent users?Is this what I have to have? http://www.adobe.com/products/coldfusion/buy/ ..... $1300 just to be able to develope and deploy CF websites...thats nuts. I am I reading that right? Can't I just get a compiler and develop in Notepad? For free?EDIT: I think I had the wrong idea...coldfusion is its own server? I cannot install it on IIS and still run ASP.Net and PHP. Am I right? Unfortunately that is a huge turnoff for me, plus the cost. wow.
  11. what do you mean by alternate text??? Like in an img tag? alt="some text"?
  12. This is awesome. A CF forum.Skemcin or anyone where is a good CF tutorial and can I download the CF compiler (or whatever it is) for free to install on my IIS6 server?
  13. Set objCmd= new ActiveXObject("ADODB.Command")objRS= new ActiveXObject("ADODB.Recordset");objCmd.commandText ="UpdateCompWebStatus";objCmd.commandType = 4objCmd.ActiveConnection= objConn;objParam = objCmd.CreateParameter("@del_inqid",200,1,20);objCmd.Parameters.append objParam;objCmd("@inquiryid")=inquiryidCheckCommandParams( objCmd, "UpdateCompWebStatus")objRS=objCmd.execute
  14. topic closed! please do not double poast your questions. be patient!reply to this topic http://w3schools.invisionzone.com/index.php?showtopic=6683
  15. aspnetguy

    ishost.exe

    you'll have to upload it somehow...but most free hosts won't let you upload exe files.Send it to me and if I receive it I'll put it on my server for everyone to download
  16. aspnetguy

    ishost.exe

    you can send the zip to me...I mail zips to myself all the time.vchris what email host are you using that doesn't allow zips?
  17. aspnetguy

    ishost.exe

    .zip rarely does, I doubt .rar would be a problem.
  18. Well the project will be broke down into roles. There will be a group of Server-Side programmers, there will be a group doing graphics, javascript, xhtml, css...etcWhat ever the needs of the project it will be broken into teams based on the volunteers skills.
  19. The admins desided against any new forums or categories. They want to stick to only discussions about w3schools tiopics.I know what you mean...I was on the losing side :)I do have a forum on my site that some mebers from here have joined...feel free to chat there.
  20. the link stopped working...I can't get to it.
  21. hmmm...works for me...well here it is anyways CREATE DATABASE DotNetEngineGOCREATE TABLE DotNetEngine.dbo.Site( SiteID INT NOT NULL IDENTITY PRIMARY KEY, SiteName VARCHAR(255) NOT NULL, Domain VARCHAR(255) NOT NULL, DefaultTemplate VARCHAR(255) NOT NULL, DefaultMenu INT NULL , ImagesPath VARCHAR(255) NOT NULL, DocumentsPath VARCHAR(255) NOT NULL, Online BIT NOT NULL, Homepage INT NOT NULL )CREATE TABLE DotNetEngine.dbo.Page( PageID INT NOT NULL IDENTITY PRIMARY KEY, SiteID INT NOT NULL REFERENCES Site(SiteID), PageName VARCHAR(255) NOT NULL, MetaKeywords VARCHAR(255) NULL, MetaDescription VARCHAR(255) NULL, Approved BIT NOT NULL, StartDate DATETIME NOT NULL, ExpiryDate DATETIME NOT NULL)CREATE TABLE DotNetEngine.dbo.Text( TextID INT NOT NULL IDENTITY PRIMARY KEY, PageID INT NOT NULL REFERENCES Page(PageID), TextName VARCHAR(255) NULL, Text TEXT NULL, TextOrder INT NOT NULL)CREATE TABLE DotNetEngine.dbo.Image( ImageID INT NOT NULL IDENTITY PRIMARY KEY, PageID INT NOT NULL REFERENCES Page(PageID), ImageName VARCHAR(255) NOT NULL, ImageAlt VARCHAR(255) NULL, ImageSrc VARCHAR(255) NOT NULL, ImageOrder INT NOT NULL, ImageUrl VARCHAR(255) NULL)CREATE TABLE DotNetEngine.dbo.MenuType( MenuTypeID INT NOT NULL IDENTITY PRIMARY KEY, MenuTypeName VARCHAR(255) NOT NULL)CREATE TABLE DotNetEngine.dbo.Menu( MenuID INT NOT NULL IDENTITY PRIMARY KEY, PageID INT NOT NULL REFERENCES Page(PageID), MenuName VARCHAR(255) NOT NULL, MenuTypeID INT NOT NULL REFERENCES MenuType(MenuTypeID))CREATE TABLE DotNetEngine.dbo.MenuItem( MenuItemID INT NOT NULL IDENTITY PRIMARY KEY, MenuID INT NOT NULL REFERENCES Menu(MenuID), MenuItemName VARCHAR(255) NOT NULL, MenuItemUrl VARCHAR(255) NOT NULL, MenuItemImage VARCHAR(255) NULL, MenuItemBullet VARCHAR(255) NULL, MenuItemOrder INT NOT NULL)ALTER TABLE DotNetEngine.dbo.SiteADD CONSTRAINT FK_MenuID FOREIGN KEY (DefaultMenu) REFERENCES Menu(MenuID)ALTER TABLE DotNetEngine.dbo.SiteADD CONSTRAINT FK_Homepage FOREIGN KEY (Homepage)REFERENCES Page(PageID)
  22. this has already been discussed here http://w3schools.invisionzone.com/index.php?showtopic=5790
  23. it is to suggest ideas for a web app (in PHP,ASP, or .Net, or whatever you guys decide).Justsomeguy, here is the schema for my template engine db http://www40.brinkster.com/aspnetguy2/create_schema.txtAs you can see it will handle multiple websites, each page imports a template (text file with html template code), will have GUI to change text, images, and menus
×
×
  • Create New...