0
votes
10answers
790 views
How can web form content be preserved for the back button
When a web form is submitted and takes the user to another page, it is quite often the case that the user will click the Back button in order to submit the form again (the form is an advanced search …
5
votes
4answers
592 views
How do you stop RadioButtonList Label text from wrapping under the button
I have a radio button list and some of the labels are quite long so they wrap and the second line appears underneath the radio button. Ideally I would like the text to wrap with the second line …
0
votes
1answer
31 views
Adding IntelliSense for XSL in Web Form Designer for ASPX Page
I have an ASPX page that contains XHTML 1.1 and XSL. I want to add IntelliSense for XSL in the Web Forms designer for Visual Studio 2008. I also want the XHTML and XSL validated using the "Target …
1
vote
7answers
837 views
How do I remove items from the query string for redirection?
In my base page I need to remove an item from the query string and redirect. I can't use
Request.QueryString.Remove("foo")
because the collection is read-only. Is there any way to get the query …
0
votes
1answer
57 views
Web form data structure alternatives
Once I created a form builder where user could select any number of fields for a web form. The tool then produced a code snippet which user could copy in the JSP.
The submitted form data was stored …
2
votes
3answers
476 views
DataTable Wrapper or How to decouple UI from Business logic
I am using web forms, C#, Asp.net.
As we all know, in this model UI and business logic are often mixed in. How do I separate these effectively?
The example I would like to use is:
I have a GridView …
2
votes
2answers
94 views
How do I get data from a web form?
As a pet project I want to build a program that translate from English to Hebrew.
The way I want to make the translation itself is using a web site called morfix.
In this site can enter an English …
3
votes
2answers
781 views
Best way to track onchange as-you-type in input type=”text”?
In my experience, input type="text" onchange event usually occurs only after you leave (blur) the control.
Is there a way to force browser to trigger onchange every time textfield content changes? If …
7
votes
7answers
477 views
Is there a centralized list of country names that can be used for web drop down boxes (and validation)
There are examples online with web select boxes that have a huge list of countries and that probably will be good enough for me to use. However, by Murphy's law, there's bound to be some random …
