submitted by CrazyJ on Tuesday, November 14 2000 at 12:54 AM
here ya go folks. The Wolf Web v2.0. I have taken a lot of user input over the last few months and this is what I came up with. Its still not quite ready to go, but I wanted to get some general user input on the changes. There are several tweaks that need to be done to the backend to get this beast flowing smoothly.
So what do ya'll think?
posted by CrazyJ on Tuesday, November 14 2000 at 12:54 AM
I wish those sideboard menus stayed up while you browsed the boards and stuff. That way, you can see who's online and jump to different boards without having to go back and forth through the pages.
Is there a way we could have a list of users on some page? I realize we now have 800 something users, though, so maybe that's out of the question
But, on the whole, I do like the new layout, and the Wolf Web in general. This new layout's slick, and it's got a lot of good info on there. It's much easier to browse than the old version. Keep up the good work.
[Edited by Maverick on 11/22/2000 at 8:43:05 PM. Reason: .]
We should add an Instant Messenger option that sends an IM to all users that are logged in (like WinPopup for NT) i don't know how hard that would be it could be a little applet or build upon Aol IM (maybe it check on who is connected then checks on who isn't away and then sends that message to the people who are available)... It should be made available to those users which have been hear for a certain buffer time period to prevent ppl like mullet from coming in and abusing it.... the first immediate use for it i can think of is like my idea to go to dinner each week or just in general... so lets say i am going to dinner now...then i would send a message inviting anyone else who wants to go to come along
<TABLE> <TR> <TD>left column bullshitTD> <TD><% Dim varAction
varAction = Request.Querystring("action")
Select Case varAction Case "Story" WriteStory Request.QueryString(varAction)' the url would be something like default.asp?action=story&story=12 Case "EditInfo" WriteEditInfo End Select %> </TD><TD>Right Column</TD></TR></TABLE>
That was a response to Maverick's post. I'm sure Jake understands and knows what I was typing. I, like so many of the other users on this site, was simply stating something that my intended audience probably already knew. Most of that wasn't HTML; it was ASP. I was demonstrating a table divided into three columns with static content on the outside columns and dynamically created content, based on the page's URL, in the center column -- makes it easy to update an entire site's "theme" by modifying one template.
It'd make things kind of handy, and probably more compatible with the source generated that way. For instance, even with 1024x768 resolution, I still have to scroll down to view the IFRAME of the message responses. And, in that IFRAME, it reloads the original, so I can continue to open nested IFRAMEs and probably, type replies in each of those.
Lets say that the default.aspx page stayed open (I'm talking in ASP terms here, since I haven't touched ASP.NET) and the topics appeared in the center column as they do for the home page; if a user chose to reply to a topic and this nicely formatted table appeared to them, with the topics following -- no IFRAME, the user could still, perhaps with less effort, scroll down to see the previous postings. It would also work with Netscape. That's kind of what I was getting at. I actually felt rude after posting it -- like I was insulting Jake's intelligence. I've noticed that the most competent people in the field do this though; we'll tell each other stuff we already know, because there's so much information out there, we might occasionally pick up on a new trick or a new way of looking at a problem.
crazyj, maybe its me but ive been to the change password screen, just tried it again, i enter my old pw then enter and confirm a new one, hit submit changes then try to log in and i still need to use my old password. dont know what the deal is.
ECUalumn, The left and right columns are separate "pagelets" (this is the ASP.NET terminology). I've used includes and server.executes in the other ASP pages on the site to create consistent templates. They problem is that I can't use the ASP.NET pagelets with ASP and I can't use the ASP templates with ASP.NET. That is, unless I would do several HTTP requests inside each page. Its getting pretty hairy having ASP.NET and ASP pages on the same site. There are a lot of provisions that I am having to put in place to make it all interoperate correctly.
You also mentioned stripping out the outer pagelets on the IFRAME request. Unfortunately this addresses what I consider one of the major weaknesses of ASP.NET. You can't conditionally include pagelets. There is some stuff I could do to make this work, but it would get pretty messy on the backend. You will see that I did strip out the top and bottom templates on the message board reply iframe.
Gizz, did you check the "Change Password" box? I doubt it... I just did it and it worked
Everything I know about .NET I've learned from you; now I've got another word in my vocabulary, and can infer that a pagelet is an element that's included in a page. I was suggesting that the Iframe be eliminated all together, and to just have the table with the smileys, text box and 'Post Comment' button followed by the messages table, not that the elements be stripped.
I see what you're getting at though, about mixing content. It makes sense.
[Edited by ECUAlumni on 11/24/2000 at 3:51:05 PM. Reason: .]