If you want your aliases to be there the next time you visit, you will need to store them somewhere, preferably in the form of a database. From looking at your example, an MS Access database would be sufficient. Also, the data should be displayed using some sort of data presentation control. I think a DataList would be simple enough for this.
Take a look at the following links: ASP.NET DataList Control<http://www.w3schools.com/aspnet/aspnet_datalist.asp> Binding to a DataList Control (MS Access)<http://www.w3schools.com/aspnet/showasp.asp?filename=demo_dbconn_datalist> That should get you off in the right direction. /Ryan On 12/28/05, Jeff Anderson <[EMAIL PROTECTED]> wrote: > > I have no idea where I'm supposed to be storing my aliases. > ----- Original Message ----- > From: Ryan Olshan > To: [email protected] > Sent: Wednesday, December 28, 2005 1:18 PM > Subject: Re: [AspNetAnyQuestionIsOk] Supposed to be easy. > > > Where are you storing your aliases? A database? > > /Ryan > > > On 12/28/05, Jeff Anderson <[EMAIL PROTECTED]> wrote: > > > > > > Goodness, this was really supposed to be easy. The concept behind my > > webpage was to be able to allow me to put in aliases for myself. > (seven > > hours later) I now turn to you professionals. > > For example: > > > > Type in the alias I want here. > > > > Post the alias I made down here and keep it. > > So next time I come back it is already there > > and I can add another alias. This is what I have > > here so far. The webpage name I am working with is gosh.aspx > > > > > > > > <html> > > <head></head> > > <body> > > <form runat="server" method="POST" action="gosh.aspx"> > > Enter your aliases:<br /> > > <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> > > <asp:Button ID="Button1" runat="server" Text="Button" /> > > <br /> > > eg: cot-coc n;w;n;n;e;n;n;enter<br /> > > <br /> > > Your aliases will be added to this list:<br /> > > <br /> > > cot-coc n;w;n;n;e;n;n;enter<br /> > > potions get potion;drink potion<br /> > > <br /><br /> > > </form> > > </body> > > </html> > > > > > > [Non-text portions of this message have been removed] > > > > > > ------------------------------ > > YAHOO! GROUPS LINKS > > > > > > - Visit your group "AspNetAnyQuestionIsOk< > http://groups.yahoo.com/group/AspNetAnyQuestionIsOk>" > > on the web. > > > > - To unsubscribe from this group, send an email to: > > [EMAIL PROTECTED]< > [EMAIL PROTECTED]> > > > > - Your use of Yahoo! Groups is subject to the Yahoo! Terms of > > Service <http://docs.yahoo.com/info/terms/>. > > > > > > ------------------------------ > > > > > > -- > Thank you, > Ryan Olshan > Website - http://www.StrongTypes.com <http://www.strongtypes.com/> > Group - http://groups.yahoo.com/group/StrongTypes > Blog - http://blogs.dirteam.com/blogs/ryan/ > > > [Non-text portions of this message have been removed] > > > > SPONSORED LINKS Basic programming language Computer programming > languages Programming languages > Java programming language > > > > ------------------------------------------------------------------------------ > YAHOO! GROUPS LINKS > > a.. Visit your group "AspNetAnyQuestionIsOk" on the web. > > b.. To unsubscribe from this group, send an email to: > [EMAIL PROTECTED] > > c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of > Service. > > > > ------------------------------------------------------------------------------ > > > > [Non-text portions of this message have been removed] > > > ------------------------------ > YAHOO! GROUPS LINKS > > > - Visit your group > "AspNetAnyQuestionIsOk<http://groups.yahoo.com/group/AspNetAnyQuestionIsOk>" > on the web. > > - To unsubscribe from this group, send an email to: > [EMAIL PROTECTED]<[EMAIL PROTECTED]> > > - Your use of Yahoo! Groups is subject to the Yahoo! Terms of > Service <http://docs.yahoo.com/info/terms/>. > > > ------------------------------ > -- Thank you, Ryan Olshan Website - http://www.StrongTypes.com Group - http://groups.yahoo.com/group/StrongTypes Blog - http://blogs.dirteam.com/blogs/ryan/ [Non-text portions of this message have been removed] ------------------------ Yahoo! Groups Sponsor --------------------~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/KIlPFB/vlQLAA/TtwFAA/saFolB/TM --------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspNetAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
