Best Programming/Code for Small Corp. Site???

A question for anyone who feels up to answering, & mucho
thanks in advance!
Whats the best way to go (HTML, ASP, PHP, etc.) for a
corporate website with the following parameters:
#1 The company has 400 products.
#2 Each product will have it's own page with approximately 3
lines of text, 1-2 images & a PDF spec sheet.
#3 A product search box which will pull pages by prod# is
needed.
Thanks again.
PJ

Is the company looking to code the site in-house with their
own developer?
Is the company hosting the site themselves, and what server/s
do they have
for this purpose?
How does the company currently store the product info'?
Does the company currently have a site using any application
server coding?
If so, what flavour?
Does the company have a trusted developer they would like to
keep using? If
so, what coding flavour/s does that developer feel confident
using?
Is the company site likely to need to play nicely with other
sites and
applications in the future?
What is the company's budget and timeframe?
There are quite a few different ways to achieve what the
company is after
and it might come down to answers to the above questions,
amongst others.
"prjcms" <[email protected]> wrote in
message
news:f6e5um$bj3$[email protected]..
>A question for anyone who feels up to answering, &
mucho thanks in advance!
>
> Whats the best way to go (HTML, ASP, PHP, etc.) for a
corporate website
> with
> the following parameters:
> #1 The company has 400 products.
> #2 Each product will have it's own page with
approximately 3 lines of
> text,
> 1-2 images & a PDF spec sheet.
> #3 A product search box which will pull pages by prod#
is needed.
>
> Thanks again.
> PJ
>

Similar Messages

  • How to see programming Code for UCCX Script

    Hi All,
    How can I  see the programming Code for UCCX Script? I have a script and want to see its Code , something like :
    int sum = 0;
    boolean alternate = false;
    boolean isValid = false;
    try {
    int i = 0;
    for (i = ccnumber.length() - 1; i >= 0; i--) {
      int n = Integer.parseInt(ccnumber.substring(i, i + 1));
      if (alternate) {
       n = n * 2;
       if (n > 9) {
        n = (n % 10) + 1;
      sum += n;
      alternate = !alternate;
    isValid = (sum % 10 == 0);
    } catch (Exception e) {
    return -1;
    return (isValid == true ? 1 : 0);
    thanks,
    Hamed

    You're not going to find code per se, unless you have some java class you wrote and then you would only see the code if you had the source java file.  The script is the only interface you get for "code".
    david

  • Generation of program code for the ABAP Query

    Dear all,
    In the creation of the ABAP query, in the final step of SQ01, Query- more functions- generate program is made.
    Why the program code is generated for the ABAP query? please  give the logical explaination for the same.
    Thanks and Regards,
    Prash

    Prash,
    a) Do you mean Program code does not have significance in query creation?
    No it does not mean this.  All queries run based on an ABAP program.  In the standard query editing process, when you save and execute the query, you will automatically re-build the existing ABAP program as necessary.  You do not need, though, to execute the menu steps you outlined in order to build, maintain, or execute the query.  It is only there for special purposes, as outlined above by Jürgen
    b) Can we see the program code generated in any transaction?
    From any screen, System > Status.  Place your cursor on the field in "Program (screen)".  Double click.
    Rgds,
    DB49

  • Program code for Vizio VSB210WS soundbar

    Just received the new voice command remote from Comcast, and need a code for the Vizio VSB210WS soundbar.  The codes in the online guide will control volume and turn off, but will not turn on (power) when I hit all power.  All the lights come on the soundbar like it is stuck.  If I manually power off then back on I can use the remote, but this is not optimal.  Any help would be appreciated.  Its as if it should delay in coming on until the signal gets to it.

    see this thread from may DVR CABLE BOX AND NO SOUND[ New ] OptionsMark as NewBookmarkSubscribeSubscribe to RSS FeedHighlightPrintReport Inappropriate Content05-30-201011:02 PMOK, here is some help for all those people who bought a VIZIO SOUND BAR for their HD TV and lost thier sound.  I have a comcast DVR MOTOROLA DX3400.  I hooked up a HMDI CABLE and ended up with the lights flashing errors on my soundbar and NO SOUND. YOU HAVE TO PUT THE CABLEBOX DVR ON PCM.  you would also have to do this for any sound system besides tv speakers, because the HMDI CABLE RUNS THE SOUND AND THE VIDEO.  You would NOT HAVE TO CHANGE THIS SETTING if you are using the COMPONET OUT HOOKUP CABLE, because there is a separate RCA CABLE that runs the audio out. HOW TO CHANGE TO PCM...   1. LEAVE YOUR TV ON   2. ON YOUR CABLE BOX REMOTE TURN OFF YOUR CABLE BOX   3. HOLD THE MENU BUTTON DOWN UNTIL THE FACE OF YOUR DVR SAYS 16:9   4. LET UP ON THE MENU BUTTON   5. PRESS AND HOLD THE MENU BUTTON AGAIN UNTIL YOU SEE A MENU COME UP ON YOUR TV.   6. SCROLL DOWN TO WHERE IT SAYS ADVANCED HMDI SETTINGS HIT ENTER   7. SCROLL DOWN TO SOUND AND HIT ENTER ON SETTING NAMED....  AUTO   8. THIS WILL TURN YOUR SETTING TO PCM.... THEN YOU WILL HAVE SOUND... HOPE THIS HELPS SOMEONE... I KNOW IT HELPED MY COMCAST REPRESENATIVE... who started to tell me I had to hook up extra RCA CABLES ALONG WITH MY HMDI CABLE.... no not sooo....!!!!wimmy 

  • Best Programming Practice for CompareTo

    Hi, I am currently writing a small program that deals with an array of objects, where some of the objects can be null. I want to sort the array by a variable of the objects, so I implement compareTo(). My problem is that since some of the objects in the array can be null, when I call Arrays.sort() I get a NullPointerException.
    My question is, which is better programming practice:
    1. modify the program to make a new array containing only the non-null objects, then sort that.
    2. decide what to do with non-null objects, e.g. return -1 in the compareTo() so that the array is sorted with the nulls at the end.
    3. something else??
    Thanks for your time.

    I have an array that represents a timetable. The objects in the array are classes, so if there is no class at a particular time slot then the object is null. I then want to sort the classes by their average attendance and generate a report, so this means I don't want the null objects after sorting.
    So far my code is:
        public int compareTo(FitnessClass other) {
                     double thisAverageAttendance = this.getAverageAttendance();
                 double otherAverageAttendance = other.getAverageAttendance();
                 if(thisAverageAttendance < otherAverageAttendance){
                      return 1;
                 else if(thisAverageAttendance == otherAverageAttendance){
                      return 0;
                 else
                      return -1;
        }And the array sorting is done by:
         public FitnessClass[] getSortedClassList(){
                   //Create an array of all the non-null fitness classes.
              FitnessClass [] nonNulls = new FitnessClass[totalClasses];
              int i = 0;
              for(int index = 0; index < MAX_CLASSES; index++){
                   if(classList[index] != null){
                        nonNulls[i] = classList[index];
                        i++;
                   //Sort the array by average attendance, making use of the compareTo method from FitnessClass.
              Arrays.sort(nonNulls);
              return nonNulls;
         }And basically my question is, would this be considered to be acceptable programming practice, i.e. creating another array to get rid of the null objects? Or would I be better handling null objects in my compareTo method such that the resulting array would have all of the nulls at the end, then when it comes to creating my report I can just use the objects that are non-null.

  • What are the best archiving methods for small colleges?

    Hi Folks,
    Im thinking a few terabyte hard drives will be my best option for a hundred dollars each.
    We have a small operation here at a New England college with two editing systems that get a good amount of student use and use by myself for college needs. Some of the student work will get deleted at the end of each semester, but I need to save all the college's video.
    What are the best ways to archive? Some of my concerns are cost and space. I can afford a few externals, do any of you have a nice cheap solution?
    I understand if I am to go the route of archiving on externals I should have a backup of my backup, do any of you guys have any feedback on ghosting your backups, is that common?
    thanks
    Mike

    If it's JUST for backup (not operation), you can get bare drives and either an enclosure for 1 or 2 drives with no tools trays (like the ones from Sansdigital: about $120 for a 1 drive enclosure) or a device like the UltraDock from Wiebetech (I use the latter). Physically install (or connect in the case of Ultradock) a bare SATA II 3.5" drive, connect it via USB 2, Firewire, esata, initialize/erase it, and then copy your files.
    Then store the drive carefully in the foil anti-static bag it came in a dry location where it won't get jostled about by errant students (or kids in my house).
    The savings in not getting full drive enclosures in the cost of multiple power supplies and interfaces. You pay for that once with the mountable enclosure / drivedock, and thereafter, just buy bare drives.
    I also like another reply: have the students provide drives on which to back up their projects. A friend of mine has a ProTools audio studio, and part of his "set up" charge, is $100 for a bare drive that he will archive for 5 years, or the client can take with him at the end of the project (when the bill is paid).
    Eddie O

  • Program code for inbound proxy

    Hello,
    I would like to ask for your help. I am creating an abap program for an inbound proxy to update tables.
    It doesn't get the value listed in the file. In the method section, I have created the following codes:
    DATA:  receipt TYPE zgiserdata-receipt,
                material_slip TYPE zgiserdata-matslip,
                plant TYPE zgiserdata-plant,
                material_number TYPE zgiserdata-matno,
                new_serial TYPE zgiserdata-new_serial,
                old_serial TYPE zgiserdata-old_serial,
                warrex_date TYPE zgiserdata-warrexdate,
                posting_date TYPE zgiserdata-postdate.
    Convert input parameters
      receipt = input-GOODS_ISSUE_SERIALIZED_CREATE-GOODS_ISSUE-reciept.
      material_slip = input-GOODS_ISSUE_SERIALIZED_CREATE-GOODS_ISSUE-material_slip.
      plant = input-GOODS_ISSUE_SERIALIZED_CREATE-GOODS_ISSUE-plant.
      material_number = input-GOODS_ISSUE_SERIALIZED_CREATE-GOODS_ISSUE-material_number.
      new_serial = input-GOODS_ISSUE_SERIALIZED_CREATE-GOODS_ISSUE-new_serial.
      old_serial = input-GOODS_ISSUE_SERIALIZED_CREATE-GOODS_ISSUE-old_serial.
      warrex_date = input-GOODS_ISSUE_SERIALIZED_CREATE-GOODS_ISSUE-warrex_date.
      posting_date = input-GOODS_ISSUE_SERIALIZED_CREATE-GOODS_ISSUE-posting_date.
    Debugged on 'receipt', the value I got is 'This is a string 1' instead of the record that is in the file.
    'This is a string 2' for 'material_slip', so on and so forth.
    Checked on the XI side that the records in the file is being transmitted without any errors. I tested this through SPROXY. Got the message that is executed with no errors, however, I got the values mentioned above instead of the values in the file being sent to XI.
    Can you please help me what needs to be checked in order to have the values that are in the file being sent to XI?
    Thank you.

    Hi Jho,
    >>>Debugged on 'receipt',
    How did you try to debug the proxy? I belive you tried debugging the proxy using SPROXY transaction code. If you use SPROXY transaction code by default the values are filled as 'This is a string 1 .. n so on..
    I would suggest you to copy the xml payload from XI and then in SPROXY transaction code paste the payload and then trigger the proxy in debugging mode.
    Or search in sdn how to debug proxy. You can use that guide to debug proxy real time. Guide is also available in some SAP Note. Dont remember the Note number.
    If there is anything else you want to know let us know.
    Regards,
    Sumit

  • What is the best program language for mass email (PHP,  ASP, Coldfusion)?

    I want to be able to send mass email (from a SQL db) with
    stability and reliability.
    I've used Coldfusion for some time (CFmail tag) and have not
    been impressed.
    It seems, at times, it has a mind of it's own, and is a
    little unreliable, especially
    when sending hundreds of emails at one shot. I'm not dogg'n
    Codfusion,
    that's what I program in, I just am looking for a method that
    I can build on.
    My question is this: What is the best and most reliable
    coding when sending mass email?
    Is it PHP, ASP, XML, Coldfusion....what?
    You would think there has to be an optimum option out
    there...right?
    Thanks for the knowledge!

    Beezy wrote:
    > say ...500-5,000, maybe larger. Any ideas?
    >
    I've used CF to send out as many as 50,000+ emails in a
    single blast and
    haven't ever had any problems with it. Particularly with CF
    Enterprise,
    CF is an extremely high-performance mail generation engine.
    Remeber
    that CF itself doesn't send the mail so you're dependent upon
    the speed
    of your mail server as a large part of the equation as well.
    Matt
    Matt Woodward
    [email protected]
    Adobe Community Expert - ColdFusion

  • Best business process for "small recurring purchases"?

    Hi
    How is YOUR best practice for procurement of "small recurring goods/services"? Overall we want as easy a business process as possible, although still adhering to basic business control objectives.
    Basically we think we have two options:
    - MM-based flow with a PReq, PO, GR/SE, invoice reg
    - FI-based flow with invoice registration (including our own sap custom developed workflow for GR and cost approval)
    Examples of the goods/services in question are recurring costs, such as:
    - phone
    - cell phone
    - broad band services (DSL)
    - gasoline
    - subscriptions of magazines and likewise
    All characterized by being recurring services, almost fixed amount, multiple GR/SE and not "large costs".
    Our internal controls (internal audit!) demand that TWO persons should be involved before paying an invoice.
    - In MM-flow we do this by having a PReq/PO release procedure (value-based individual limits) plus a GR-requirement. If the invoice then matches PO and GR/SE, accounts payable will simply pay! If not, then AP will contact PO-creator. One of the big advantages of the MM-flow is that the statistics are much better compared to a FI-flow.
    - In FI-flow, we have our own workflow functionality, that sends an invoice to the "goods receiver" for GR/SE; and subsequently send it to the "cost responsible for cost approval.
    We have been looking at various options:
    A. PO of type frameorder with item category B (limit). However, our problem is that GR is NOT allowed. So only "one person" is involved, if the invoice price matches the PO.
    B. PO of type frameorder with item category D (service). GR is technically allowed, so everything is OK. Question is how can we help to NOTIFY the requisitioner? A phone bill comes every calender quarter. How to make the service entry "easy to do"?
    C. FI invoice (with our own sap workflow to enable GR requirement). However, this way every invoice need approval. There is no timesaving, in case that the invoice matches... And no statistics anyway. We are doing this now ... but it does NOT seem optimal.
    D. Individual PO - one for each invoice - same as Z., but of course statistics ok. Takes too much time!
    How do YOU handle this business process? Everyone HAVE these purchases, so please comment on this ...
    Thanks

    You can start by reading this:
    http://macrory.com/blog/2006/04/bookkeeping_on_the_mac.html
    As for which on is better that depends on what your business needs are... you can always download a trial and see if you like the apps before you buy

  • What's the best program structure for multi-channel Averaged FFTs?

    I have been successfully using a 8-channel FFT analyzer using a separate Averaged FFT Spectrum (Mag-Phase) VI for each channel, but I now need to expand my channel count from 8 to 16. All channels are simultaneoulsy read in to a buffer to maintain phase relatioships. Do I need to have 16 copies of the Averaged FFT Spectrum VI in my diagram to maintain the averages of each channel or can I utilize one FFT VI somehow within a For Loop? If a For Loop can be used, how can the averaged spectrums be maintained for each of the 16 channels?

    You should be able to use a single FFT vi in a for loop. If your data is in a 2D array representation with each row representing a channel and you leave the indexing enabled you can pass your data array into the loop and it will strip off each row automatically. You could then pass each row of data to the FFT and pass the results out to the boundary of the for loop. This will then build an array containing the FFT results for each row (channel).
    Marc
    Marc

  • C# code for a start button

    Hi,
    I'm trying to write a program/code for a start button. Basically the code will work in junction with an Adam module and all i need is for when inout 0 of the adam module is on, output 0 will turn on - otherwise a message will appear. Sp far i have:
    private void button1_Click_1(object sender, EventArgs e)
            if (IO[0] == 1)
                   Out[0] = 1;
            else
             MessageBox.Show("Safety circuit not ok");

    Hi,
    According to yout description, I am afraid your problem is out of support in C# forum. For Adam problem, you should go to the link to post your thread:
    http://support.advantech.com/support/new_default.aspx
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey. Thanks<br/> MSDN Community Support<br/> <br/> Please remember to &quot;Mark as Answer&quot; the responses that resolved your issue. It is a common way to recognize those who have helped you, and
    makes it easier for other visitors to find the resolution later.

  • What is the best program to create a HD 1080p slideshow?

    A little advice on what the best program is for creating high quality HD (1080p) slide shows from hires jpegs.  I'm not at all interested in burning the slideshows to DVD.
    Until now I've used iMovie HD 6, iMovie '09, and  iPhoto on our mac mini that runs SnowLeopard. 
    With iMovie  HD 6 the transitions (cross dissolve and overlap) come out quite un-smooth look bad.  Also HD 6 will not do 1080p, only 1080i.
    With iMovie '09  photos that are portrait oriented (as opposed to landscape) often get poorly cropped. 
    iPhoto simply does not have the editing flexibility I need.
    I've tried the demo version of Fotomagico and although the resulting slideshow is stunning, on my machine the program is almost impossible to work with because of its sluggishness.  It is painfully slow in responding to all mouse moves. Dragging an image on the Stage is very difficult because the image lags behind the mouse so by the time the little green alignment guides come on to show center or edge alignment -- the image is already past that point.  There is also a huge lag changing images on the stage.   Also the spinning color wheel appears way too frequently.
    Photo to Movie, based on their website, Photo to Movie can produce HD quality video.  Does anyone have any experience in comparing Photo to Movie with any of the iMovies?
    Other than FCP, what do you folks think is best slideshow program for producing 1080p shows?

    Ditto what Matthew said about Photo to Movie.
    There are many ways to produce slide shows using iPhoto, iMovie or iDVD and some limit the number of photos you can use (iDVD has a 99 chapter (slide) limitation).
    If what you want is what I want, namely to be able to use high resolution photos (even 300 dpi tiff files), to pan and zoom individual photos, use a variety of transitions, to add and edit music or commentary, place text exactly where you want it, and to end up with a DVD that looks good on both your Mac and a TV - in other words end up with and end result that does not look like an old fashioned slide show from a projector - you may be interested in how I do it. You don't have to do it my way, but the following may be food for thought!
    Firstly you need proper software to assemble the photos, decide on the duration of each, the transitions you want to use, and how to pan and zoom individual photos where required, and add proper titles. For this I use Photo to Movie. You can read about what it can do on their website:
    http://www.lqgraphics.com/software/phototomovie.php
    (Other users here use the alternative FotoMagico:  http://www.boinx.com/fotomagico/homevspro/ which you may prefer - I have no experience with it.)
    Neither of these are freeware, but are worth the investment if you are going to do a lot of slide shows. Read about them in detail, then decide which one you feel is best suited to your needs.
    Once you have timed and arranged and manipulated the photos to your liking in Photo to Movie, it exports the file to iMovie  as a DV stream. You can add music in Photo to Movie, but I prefer doing this in iMovie where it is easier to edit. You can now further edit the slide show in iMovie just as you would a movie, including adding other video clips, then send it to iDVD 7, or Toast,  for burning.
    You will be pleasantly surprised at how professional the results can be!
    To simply create a slide show in iDVD 7 onwards from images in iPhoto or stored in other places on your hard disk or a connected server, look here:
    http://support.apple.com/kb/HT1089

  • What is some simple program code to set up a database

    Could someone provide some simple data base program code for the HP50G with comments on procedure by the programmer? 

    Hi there,
    Have you tried animating the Clip property in the timeline? You'd probably want each clipping rectangle in its own symbol, and then control the symbol playback from the click event on the symbol instance.
    If that won't work for your purposes, there's a slight error in your code.
    Rather than:
    sym.$("clipTangle2").css("clip:rect(0, 159px, 0, 0)");
    Try:
    sym.$("Rectangle").css("clip", "rect(0, 159px, 0, 0)");
    hth,
    Joe

  • Need code for PR and me49

    hi all
    i need the z program code for printing pr that is ME51n and also the code for the z prorgram for price comparision list me49

    Hi
    i need source code of  program to print th e pr generated via me51n . In standard sap this is not possible to take out the print of the PR as it is an internal document now pepole say  that try to convince the Client .............but i need that code if somebody can please share that here

  • WLC code for point to point bridging

    What is the best WLC code for point to point and point to multipoint bridging on a 2504 with 2602 APs? 7.2-7.4 had transparent vlan issues and I'm not sure if they were fixed in 7.5-7.6. We have 5-6 vlans that we are needing to bridge between a large open area. Also, are there any bugs with wireless mesh and ISE?

    You do not have many choices now, only 7.0.250.0, 7.4.121.0 & 7.6.110.0 codes are supported by Cisco. All other codes have been deferred by them.
    I do not have configured those set-up to advise you specific to that. I would think 7.6.110.0 may have fixed whatever the known bugs in previous versions.
    HTH
    Rasika
    **** Pls rate all useful responses ****

Maybe you are looking for

  • Photoshop Elements 13 on Windows 8.1, window freezes on startup

    I bought Photoshop & Premiere Elements a few weeks ago to run on a new Windows 8.1 computer.  I entered the serial numbers of both programs during installation.  Premiere has been working all along.  Photoshop worked for a few days, then the window s

  • Sumbitting Forms in Adobe Reader

    I am unable to submit my form using Adobe Reader.  When I hit the submit button, I am prompted to choose a desktop mail application or internet mail application.  I choose desktop and my Outlook account opens.  I see the file attached; however when I

  • HDMI vs Component cables

    I burned a dvd using idvd.  When I play it on my Samsung BluRay DVD player using the HDMI cables to the flatscreen tv, the "theme" plays, but no other added slideshows or clips will play.  The counter on the dvd player shows something is playing.  Ho

  • Where is the best place to find iSync / Entourage HELP ?

    Can anyone pease point me to the best best place for Entourage help - I am having trouble with SyncServices from 11.2.3 Thanks I have a million duplications and no way of removing them !

  • IntialContext issue on .exe execution

    Hi, I have a Javafx2.2 application which works well as Netbeans 7.2 standAlone application. I then created a self contained deployment application and generated the bundle as per the tutorial provided. However, when I click the .exe file , my applica