عاااجل جدا ....ارجو المساعده

    • عاااجل جدا ....ارجو المساعده

      السلام عليكم اساتذتي المبرمجين,عندي واجب مطلوب تصميم منتدى بشكل مبسط
      في الحقيقة مغرز نوعا ما واجهتين صعوبه في كتابة الكود الختص باضافة موضوع وبعدها نرسل هذا الموضوع للسيرفر(باستخدام asp).يا ليت لو تساعدوني بكون مدين لكم بالشكر .

      Addtopic.asp:
       Users can access the document only after logging in; otherwise, they will be redirect to login.asp document with appropriate error message.
       Uses an XHTML form to receive message topic and content from the user and send author name (username), topic, and message content to submitnewtopic.asp.

      Submitnewtopic.asp:
       Users can access the document only after logging in; otherwise, they will be redirect to login.asp document with appropriate error message.
       Receive new topic information from addtopic.asp program performs the following to tasks
      (a) Uses ASP code to create an XHTML document for the message:
       File name should be unique name. Therfore, use SQL query to find the maximum message ID (maxID) in Discussion table (before adding the topic). Then, set file name as (maxID +1) .html.
      (b) Adds message information (author, topic, and filename) to Discussion table in the database.
      (c) Displays message information in the client browse.