Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3600564
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:30:41+00:00 2026-05-18T20:30:41+00:00

I am asp.net developer I need to know about how does scrapbook works in

  • 0

I am asp.net developer
I need to know about how does scrapbook works in orkut?
I need to make an application in which the user can reply to each other
Upto the limit of 1000 characters

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T20:30:42+00:00Added an answer on May 18, 2026 at 8:30 pm

    Its a very broad question so my answer is going to have to be quite broad in scope,

    First things first we’re gonna need a database to contain the data, I don’t know what else is going into your site so lets go with a basic 2 table model. You’ll probably want to add more fields depending on your requirements.

    Tables  users         ScrapbookPost
    Fields  UserID (pk)   SBPID    (pk)
            UserName      ToUser   (fk)
            Password      FromUser (fk)
                          PostText
                          CreateDate
    

    With that basic structure we can have users leaving each other Scrapbook posts

    This SQL code would retrieve all posts on a users wall where @userPage is the userID of the current users page.

    Select 
        u.UserName, PostText, CreateDate
    From 
        users u inner join
        scrapbookpost sb on u.UserID = sb.FromUser
    where
        sb.ToUser = @userPage
    order by
        CreateDate desc
    

    Seeing a conversation between two users would mean querying like this

    Select
        u.UserName, PostText, CreateDate
    From
        users u inner join
        scrapbookpost sb on u.UserID = sb.FromUser
    where
        (ToUser = @userID1
        and
        FromUser = @userID2)
        or
        (ToUser = @userID2
        and
        FromUser = @userID1)
    order by
        CreateDate desc
    

    That’s the basic data structure and queries you need!
    Give the users a webform to write posts and validate on the server side to make sure the posts are less than 1000 characters and don’t contain any nasties like cross site scripting or sql injection

    For their scrapbook pages use either Stored procedures or construct your query manually then bind your results to an ASP Repeater for output.

    To beautify things a bit you could consider allowing them some HTML formatting with a control like this or rich text editing with a control like this.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am asp.net developer I need to know about how does scrapbook works in
I need to develop a generic jQuery-based search plugin for the ASP.NET MVC application
As a classic ASP developer about once a year since ASP.NET came out I
I'm an ASP.NET developer that has never done Winforms/WPF, but I need to create
I am an asp.net web application developer and I always have used Enterprise Library
I'm an ASP.NET developer who has used Microsoft SQL Server for all my database
I am a ASP.NET Developer trying to learn Rails and RESTful approach. To understand,
I am ASP.NET developer from last 5 years and still loving it. There are
I've been a longtime ASP.NET developer in the web forms model, and am using
This is probably a simple question but I am not an ASP.NET developer and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.