I've got the following script in my code behind that happens after a user clicks a button:

ScriptManager.RegisterStartupScript(Page, Page.GetType(), "scrollToAnchor", 
"document.getElementById(\"addToCartAnchor\").scrollIntoView(false);", true);

The intention is to scroll the page to a certain location to display some messaging.

The code above appears to work, but seems very amateurish to me. Are there any obvious improvements i could make here?

Edit: This button press causes a postback to the server and scrolling should happen when the page gets back to the client.

link|improve this question

Must the button post back the page? – Josiah Ruddell Apr 6 '11 at 17:06
2  
@Equiso - What would moving the string to a resource file accomplish? – Oded Apr 6 '11 at 17:07
@Equiso - If you don't have such a need your suggestion will complicate the code and make it less readable. There are other ways to centerlize hard coded strings (public consts). – Oded Apr 6 '11 at 17:17
@Josiah: Unfortunately yes. I am constrained on a postback here. – Jim B Apr 6 '11 at 17:18
@Esquiso - They require additional syntax to access and use and can obscure meaning. If a simple string does the job, use a simple string. – Oded Apr 6 '11 at 17:29
feedback

3 Answers

up vote 4 down vote accepted

I think this is fine. I have used this in the past but the one suggestion I would make is to move your javascript code into a seperate file and just include a basic function call. It's much easier to reuse the functionality in other areas and it localizes your javascript to not be created all over the place like aspx, .cs, .js, etc... If you ever need to add to the code as well, it is easy adjust without having to worry about formatting in your codebehind and worry about string concat.

Eg:

ScriptManager.RegisterStartupScript(Page, Page.GetType(), "scrollToAnchor",
    "ScrollToAnchor();", true); 

Then in your javascript file:

function ScrollToAnchor() {
    document.getElementById('addToCartAnchor').scrollIntoView(false);
    // easy to add more here / reuse and locate
}
link|improve this answer
feedback

Why are you registering a startup script if this code should execute on user click (which means that page has already been loaded long time ago)? Why don't you execute scrolling directly?

<a href="..."
   onclick="document.getElementById('addToCartAnchor').scrollIntoView(false);void(0);">
   Scroll me down baby
</a>
link|improve this answer
usually you use this method when you need to perform some codehind work and then want the the javascript to fire as soon as the new page is served up. Not just fire some javascript... – Kelsey Apr 6 '11 at 17:16
True; I found that adding it to the client's click event caused it to fire pre-postback; so it was wiped out when the page reloaded – Jim B Apr 6 '11 at 17:19
@Jim B: Ok. I misunderstood your question because you didn't mention any postbacks and it wasn't directly obvious. Because our process is: 1: user clicks a button that consequently posts back your page and 2. page reloads and should be scrolled to some sort of a message... I suppose this is the correct process that you're trying to do here? – Robert Koritnik Apr 6 '11 at 17:29
That's correct; the button click is usually below the fold, as is the messaging that is displayed. The idea is that after postback, we make the anchor tag (placed after the messaging) the bottom of whats displayed – Jim B Apr 6 '11 at 17:36
@JimB: I suppose that is imperative and should be mentioned in your question that there's a postback between your click and scrolling. – Robert Koritnik Apr 6 '11 at 17:44
feedback

Looks OK to me, though you could use single quotes in your javascript instead of escaping double quotes:

"document.getElementById('addToCartAnchor').scrollIntoView(false);"
link|improve this answer
1  
@Downvoter - care to comment? – Oded Apr 6 '11 at 17:13
I don't think your answer helped in any way except removing two backslashes... I can remove the downvote if you prove me wrong. – Robert Koritnik Apr 6 '11 at 17:25
@Robert - True, that's all it did. Personally, I reserve downvotes to answers that are patently wrong and/or actively harmful. – Oded Apr 6 '11 at 17:26
Well that's your decision how you cast up/down votes. I usually upvote answers that are helpful. Yours wasn't and it was voted up, so I downvoted it because it wasn't really helpful. And to tell you the truth I should as well ask my upvoter why my answer got up-voted since I misunderstood the question because there's a postback in between click and scrolling (which wasn't mentioned in the question). Funny isn't it? ;) – Robert Koritnik Apr 6 '11 at 17:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.