Tagged Questions
0
votes
1answer
44 views
ASP Menu auto-adds clear div
I want my header to look like this:
Link | Link | Link Image
-----------------------------------------------------------------------
What I have ...
-1
votes
3answers
81 views
how to Clear textBox after CompareValidator caught wrong datatype? [closed]
and I am a beginner in using asp.net and C# in visual studio 2008
I have a TextBox with the ID = LimitAmount, it is supposed to accepts input of type DOUBLE, therefore I made a CompareValidator ...
0
votes
4answers
157 views
How to force visitor browser to delete cache
How can you force user browser to delete its cache that belongs to your website.
Is this possible ? For example a redirect problem occurs. Later it get fixed. But stupid browser caches redirect due to ...
0
votes
0answers
131 views
Asp.net Ajax Draggable Clear Items On Drop
I have a drag and drop area on the left hand of a website. On the right side a list of documents. The user can drag a document from the right and drop it in the left side. I'm using jquery and ajax ...
0
votes
3answers
242 views
Clearing control values in a page without postback from the server ASP.NET
I have textboxes in a webpage where there are RequiredFieldValidators.
And at the very bottom of these controls are buttons submit and clear
Every time I click the submit button, it triggers the ...
1
vote
1answer
180 views
Checkbox list keep disabled
Trying to use checkbox lists in (calendar booking system). The checkbox should be disabled and red if there are any data in the database against the date and hour. This all work perfectly here is the ...
0
votes
2answers
247 views
Clear server validation message before submit
To replicate the issue:
Create an ASP.NET MVC 3 page with server validation.
Submit with validation error.
Server validation error appears in red.
Correct the validation error and submit again, then ...
1
vote
2answers
463 views
Values Entered in a textbox or radio button list changes after firing an event clear when the event posts back?
In ASP.net I have a simple textbox and radio button list with yes or no options. On the VB server-side I implement OnClick of the radio button and it does things.
<asp:RadioButtonList ID="rbltest" ...
1
vote
4answers
3k views
how to clear gridview without reloading the page
I have a gridview control on my asp.net page(vb.net). I also have a "cancel" button, that when pressed, is supposed to clear the gridview of it's current contents.
However whenever the cancel button ...
1
vote
1answer
330 views
Uploadify onCancel event
I am using Uploadify plugin for asp.net web appication.
I want to let user delete an uploaded file. For this, I used onCancel event of Uploadify.
But, the problem is, if the page ...
0
votes
3answers
823 views
Clear all entered and selected data after click on button
I have asp.net page and it's contain Text boxes ,Drop down lists ,check boxes and grids
the question is :
When i click on save Button , how can I clear All data that entered and selected in this ...
3
votes
1answer
430 views
web.config inheritance: <clear/> causes XML Parsing Error in <system.webServer><modules>
I am trying to add a small asp.net application to a sub folder of my existing website. The issue is that the root web.config file contains modules that break my application. I want to prevent/remove ...
6
votes
2answers
352 views
Is there a way to clear a session cache key for all users?
Is there a way to clear a session cache key for all users?
For example, I am storing the users currently selected shop item under the following session key "currentItem". In the management area of ...
0
votes
2answers
542 views
how to clear all the items and add new item in the asp.net checkboxlist using javascript
I have one checkbox list like
<asp:CheckBoxList id="CheckBoxList1" runat="server" >
<asp:listitem Value="1">Item 1</asp:listitem>
<asp:listitem Value="2">Item ...
0
votes
1answer
1k views
Devexpress: Add Clear All Button in ASPxGridLookup
I have a ASPxGridLookup like this;
<dx:ASPxGridLookup ID="GridLookup" runat="server" Text='<%# Bind("AKTOR") %>'
ClientInstanceName="gridLookup" ...
1
vote
2answers
3k views
How to clear an ASP.NET listbox with Javascript?
I'm trying to clear all of the items in an ASP.NET listbox via javascript, but sadly
document.getElementById("<%= lstNames.clientID %>").items.clear;
does not work.
Any ideas would be ...
1
vote
1answer
772 views
asp.net VirtualPathProvider - clearing Cache using GetCacheDependancy problem
I'm using VirtualPathProvider to return virtual pages from a SQL Server table. This is working pk and the code in my VirtualPathProvider class file is below.
The problem I'm having is that when I ...
3
votes
3answers
9k views
How can I manually clear ASP.NET server cache for a sigle application/web site?
How can I manually clear ASP.NET server cache related to a give application/web site like what can be done on IE to clear browser cache for a give domain? BTW, I am using II7.
Thanks
4
votes
7answers
2k views
How can I dynamically clear all controls in a user control?
Is it possible to dynamically (and generically) clear the state of all of a user control's child controls? (e.g., all of its TextBoxes, DropDrownLists, RadioButtons, DataGrids, Repeaters, etc -- ...
0
votes
3answers
2k views
Clear Asp.Net cache from outside of application (not using source code)
I have a asp.net web application and I'm using cache (HttpRuntime.Cache) to save some stuff from db.
I also update db from time to time so that data in db does not match the data in my application's ...
0
votes
1answer
266 views
How to clear a parent response content from a usercontrol in asp.net?
I have a page that has 4 different usercontrols on it. At a certain point I need to make a redirection using javascript location.replace() and it cannot be made through server. It has to be client ...
