Whenever I do a postback to "/", I get a 405 error. However, when I post back to "Default.aspx", things work fine.
As I am somewhat new to web devleopment, I haven't the foggiest idea on how to debug this. The issue driving me particularly nuts because I'm testing submitting a form on the front page of the site I'm working on.
Some e...
If I have the DecryptionKey and ValidationKey set to AutoGenerate in the machineKey section of the machine.config, how do i look up from .NET the actual generated keys which have been created?
We wish to use the same keys to encrypt and validate our own cookies.
Any clues/tips gratefully received.
...
is there a grid for asp.net mvc that acts just like the asp.net webforms datagrid
the behavior that I need is to pass to the grid a DataTable without specifying the amount of columns
...
I have a class that implements IHttpModule in a separate assembly from a website. The module implementation intercepts requests and rewrites urls for the website.
The mappings are stored in a class with the requested url and the destination url.
Is the second example, MTSingleton, from http://devhood.com/Tutorials/tutorial_details...
Hi All,
I have a textbox and a dropdown list on an aspx webform. The user would type in a number and then submit and the dropdown would be populated with values relevant to the typed word. If the user types a new term in the text box, I want to truncate the dropdown and when the user submits, it would submit only the text and no dropdow...
I'm trying to build a form which generates itself as it is used. I have created a really simplistic example, loosely related to what I'm trying to do below, but which demonstrates the problem.
The user types a word in the text box, clicks the Button and a new TextBox is loaded into a Panel, with the value in the original TextBox that t...
I have a site that is being converted from classic asp to asp.net webforms. The old version of the website maintained to separate versions of the site, one for the US and one for Canada.
The US version sat at the root of the domain and the Canadian version sat inside a folder named "canada".
The new asp.net version of the application, ...
I'm trying to create Command Buttons dynamically, but clicking the button in question doesn't seem to raise the corresponding CommandButton_Click event. I noticed that in the examples on SO a property is set for Button.OnCommand as well as the CommandName and CommandArgument but it isn't an option in intellisense.
So the question is, wh...
I have a simple contact form that I knocked up in a few minutes using NMS FormMail.pl. But the customer has requested that I have a second email address entry field, and validation that kicks them back if the two addresses are different. I could add the validation to FormMail.pl, but before I do, I thought I'd ask if there is a better ...
I know this is probably rather trivial but i have had a lookt at previous questions and i've tried them but they still issued an error unfortunately :s
My issue is the following, i have an html.erb file and i want a certain body text to be display given a condition or another if it is false
i have
<% if [email protected] do %>
more cod...
i.e. Is MVP still the next best choice when MVC is not an option?
I thought I'd ask this here as I'm sure there are others like me who don't have the luxury of being on a green-field project and want to refactor a webforms UI to better separation of presentation from business objects...
I'm working on a legacy application tasked with a...
We are designing a data capture process with many questions (using ASP.NET), which can repeat (e.g. enter all your vehicles). In rare cases this could be over 100 repeating groups.
Therefore I've stated that rather than having one huge form that we split the application into multiple forms, using logical points for page splits (e.g. ...
Hi,
I would like to have a tool with which I can easily develop(dragNdrop) front-end for mysql table and publish it to web. I am not sure whether I can try oracle forms, as my database is MySQL. Even if I can use Oracle forms to connect to MySQL, I would like to know any other third party tool which can do the job easily & quickly.
Th...
We have been working on our application for about a year now and today we performed a manual stress test with about 70 users. Our SQL server and WinForms application ran smooth, however, once the web application hit around 20 users, the server started acting strange.
One error that we received multiple times was when a stored procedu...
Do you have any suggestion for a product/solution that allow clients to create web forms online?
This is the scenario:
Superuser creates web forms and publish them for further usage (for other users of the site).
I need asp.net or asp.net MVC. It would be good if it is possible to buy licence with source code, so I can customize and ad...
Hi,
i am pretty sure, that i've seen such a feature on a website somewhere in the web.
i want to give the user a form, where he can input some data and attach the current clipboard content (very likely a screenshot) to the form and then submit it as an image file.
after all, i don't want the user to go through all the hassle: take a ...
I want to reset the value of a web page using JavaScript reset function. Which operation is the JavaScript performing first: the reset or a clear? And what is the difference in between the two?
Also, how can I retrieve a value using reset function?
...
I'd like to replace a multiple select box like:
<select multiple="multiple" name="options">
<option value="option1">option1</option>
<option value="option2">option2</option>
...
</select>
with an arbitrary number of simple select boxes:
<select name="options1">
<option value="option1">option1</option>
<option value="o...
I enabled URL rewriting on my PHP site with Apache (http://example.com/index.php?param=12 becomes http://example.com/index/param/12).
I have a few forms which are in GET instead of POST.
After subitting the form, the resulting URL is not rewritten.
Is it possibile to keep rewritten URLs after submitting a GET form?
UPDATE: I found th...
i'm generating HyperLinks, all of them (depending on the circunstance, could be 1, 2 or 1000) send to the same webform:
from default.aspx
to envia.aspx
i can't use session, or anything i already know, because i can't create as many methods i want (that would not be good, due to possible large numbers)
example, there are three lines i ...