2
votes
2answers
162 views

ASP.Net, VB: Clearing fields on the webpage

I am developing a website using ASP.Net and VB. On one of the pages, there are certain fields (TextBoxes and a DropDownList). User is supposed to fill out those fields and click 'Submit' button. ...
1
vote
2answers
181 views

Why HTML standard Reset button cannot reset asp.net form's value?

Why can't the HTML reset button reset an ASP.NET form directly? Why do we need to write extra code to achieve the Reset function for an ASP.NET form? I am looking for an explanation behind this.
0
votes
3answers
400 views

How to Prevent Session Value Reset of Global.asax file in asp.net?

I have about 10 Session variable for storing the File Download Counts of each different 10 Categories wise. I dont know why? but my session variable that is set into Global.asax get RESET ...
0
votes
1answer
568 views

Clear Enabled textboxes in form using jquery

I need to clear/reset the textbox value when it is set to read only = true or Enabled = false . I used reset function in my code but this doesnt work . My code as function resetForm($form) { ...
0
votes
2answers
149 views

How Reboot(Restart) vps with c# codes?

I want to write some codes for a server that can Reboot(Restart) all vps s or one of them inside that server! VPS = VIRTUAL PRIVATE SERVER i have some questions about that: how can i write those ...
0
votes
1answer
425 views

input type=“reset”isn't working in google chrome 17

This is my code for a page I'm building. It is a form built using visual C#. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html ...
0
votes
2answers
222 views

In my webapplication i got error->getting error 503 service unavailable

error 503 service unavailable I deply asp.net webapplication. it run well but 2-3 days i get problem i get error error 503 service unavailable . I reset the iis then problem is solve but not resolved ...
0
votes
1answer
636 views

Is there a way to reset all data in an asp:Wizard on Back button?

I have an <asp:Wizard> tag with a few pages, each Step page with a Back button allowing to go back to the previous wizard page. This causes me problem because of this flow: 1 - user is in ...
0
votes
4answers
398 views

Reset Function in Javascript

Hi I am developing a user control with dropdown controls in asp.net. The requirement is that I display the data from the database into the dropdown such that when selected a value, it should display ...
12
votes
5answers
9k views

Reset an asp.net validation control via javascript?

How do I reset an asp.net validation control via JavaScript? The current code sample clears the error message text but does not reset the validation control for the next form submission. var cv= ...
2
votes
3answers
2k views

Can I configure the ResetPassword in Asp.Net's MembershipProvider?

I have an C# asp.net app using the default Sql MembershipProvider. My web.config has a few settings that control how I'm using this Provider: enablePasswordRetrieval="false" ...
0
votes
2answers
885 views

How do I reset an ASP.NET dropdown, on the click of a link, using Javascript? No JS Frameworks

How do I reset an ASP.NET dropdown, on the click of a link, using Javascript? No JS Frameworks. Edit: reset, as in set the selected value to the first one in the list, as it would be when the page ...
3
votes
1answer
757 views

Change Web.config connectionStrings without resetting sessions

How can <connectionStrings> in Web.config be changed without resetting sessions of logged in users? I'd like to keep using <connectionStrings> instead of creating a custom section because ...
1
vote
2answers
2k views

How to reset ASP.NET Form? aspnetForm.reset() causes Event Validation invalid postback error

I need to reset an ASP.NET form. I am trying to use document.aspnetForm.reset() but then whenever I try to do anything after that I get an event validation error. How can I reset my form without ...
7
votes
4answers
3k views

How do I control the format MembershipUser.ResetPassword()

Is it possible to control the format of the password that is automatically generated by a call to MembershipUser.ResetPassword()? I want to be able to allow or not allow certain special characters in ...