I am using Iframe control in html in that i am refreshing a page for every 30sec. The page also refreshing while refreshing iframe window is blinking. I want to refresh a page every 30 sec without any blinking by using iframe
I have a datagrid control with one checkbox and a dropdown list control.if checking on the checkbox from any row is causing the blinking of dropdownlist in one full columns.how will avoid the blinking of one full columns blinking..i want which rows checkbox is checked ,blinks only that corresponding rows dropdownlist..how it is possible?
I have a Button and, modelpopupExtender on my Masterpage, I want to call that whenever required. But the problem is when I call the ModalPopupExtender.Show(); Masterpage is getting refreshed again. I need to avoid that refreshing the MasterPage when calling the ModalPopupExtender.Show();
I have a textbox with a regular expression , a add button and a cancel button.
On add button click my regular expression is working properly. On cancel button click i am clearing my textbox and i have already set 'Causes Validation= "false"' to my cancel button.
But on my cancel buton click i can see my regular expression validation message is blinking.
I have a textbox with a required field validator and two buttons .One to save and other to cancel the action. On clicking the cancel button i am clearing the text entered in textbox.
The required filed validators is working on the save button if the textbox is empty. But on my cancel button click the required field validators message is blinking .
I have a requirement where a user logs on to a server where exists a website. The user bring up the site on a browser on that server and loads a power point presentation slide. At that time, users using their laptop clicks on the link to that site and sees that particular PPT slide loaded on the server. Then the operator/user on the server clicks on the second slide and the laptop would now see the second slide. Is this possible to do? If yes, then what technology to use? DHTML? or something else.
how can i use the refreshing a part of the web-page without all the web-page am using c#.net, it will be great if there is an example to how you can do that also i need to know how can i use the iframe to do that, or a good way to do that
I have created one web application with forms authentication.Whenever I logged in to the application and hit F5, it takes me to the login page instead refresh.
I am searching for a customer and displaying results on the same form. Now for some reason even If I am searching using correct format of the data the system is showing some predefined error messages. This measn that my previous error message is not refreshing.
This is the code:
if (txtANumber.Text.Length == 0 && txtBNumber.Text.Length == 0 && txtCNumber.Text.Length == 0 && txtDNumber.Text.Length == 0 && txtLastName.Text.Length == 0 && txtFirstName.Text.Length == 0 && txtDOB.Text.Length == 0) { GridViewCustomers.DataSource = null; GridViewCustomers.DataBind(); lblNoResultsMsg.Text = "Please enter search details"; lblNoResultsMsg.Visible = true; valid=false; } else { if (errors== 0) { GridViewCustomers.DataSource = null; GridViewCustomers.DataBind(); lblNoResultsMsg.Text = "Please enter correct format of A Number "; lblNoResultsMsg.Visible = true; valid = false; } else if (errors== 2) { GridViewCustomers.DataSource = null; GridViewCustomers.DataBind(); lblNoResultsMsg.Text = "Please enter correct format of B Number "; lblNoResultsMsg.Visible = true; valid=false; } else if (errors== 3) { GridViewCustomers.DataSource = null; GridViewCustomers.DataBind(); lblNoResultsMsg.Text = "Please enter correct format of C Number "; lblNoResultsMsg.Visible = true; valid=false; } else if (errors == 4) { GridViewCustomers.DataSource = null; GridViewCustomers.DataBind(); lblNoResultsMsg.Text = "Please enter correct format of Date of Birth "; lblNoResultsMsg.Visible = true; valid = false; } else if (errors == 5) { GridViewCustomers.DataSource = null; GridViewCustomers.DataBind(); lblNoResultsMsg.Text = "You need to search by FirstName LastName and DOB "; lblNoResultsMsg.Visible = true; valid = false; } else if (errors == 6) { GridViewCustomers.DataSource = null; GridViewCustomers.DataBind(); lblNoResultsMsg.Text = "Try Again"; lblNoResultsMsg.Visible = true; valid = false; } else { valid = true; } }
I have a web application ...in which i have writtern some try and catch statements.
All of Sudden while compiling solution it gives me error on CATCH ex as exception line . Saying we need to Import System statement.whereas it was working earlier.
Even if i add system reference it is not geeting refreshed.
I have a webform with a gridview displaying records which are selectable thru a "Select" button on the GridView control. Below the GridView, I have a DetailsView control showing details of the selected GridView record. Also, I have a "New" button which allows me to add to the GridView and associated table thru SQL. In the DetailsView, I have a delete button which allows me to delete from the GridView and associated table thru SQL.
The issue I am having is that when I click the "New" button (to add a record), it performs correctly and displays the input-ready DetailsView with 2 fields for input. However, if I cancel that, and click "New" again, the DetailsView does not display at all.I am certain that I am binding the data correctly as I have several tests which implement the same logic with the only difference being that the tests require only one field while I now require 2 fields.
I have a button on my aspx page on clicking which i get a new enquiry no in my textbox. It is working very much fine.But problem is that even when i refresh my page, it will get a new enquiry no.I only want a new enquiry no to be displayed in textbox whenever i click on button.This is my c# code for button_click event-
In a form, I have multiple images. Before saving the record, the image is been saved in a folder named "TransFiles". While saving, I move the image from TransFiles to location to be saved for the record.
For editing a record, when I change the image, it's been changed & saved to TransFiles. While saving also can successfully delete the existing image, save the new image with same name & finally delete the image from TransFiles folder. This all operations are performed perfectly well. In the server's images folder also, I find the newly added image under the name. But the Image control somehow shows the previous image only. On re-starting the app also. After 2-3 events of re-starting the app, it shows the new image.
What can be the reason for this ? The image is being stored in cache for that control or what ! How to show the proper image that's on the server on the Image control?
i have a page which consists of a drop down box.in that drop down box i am having two values namely start and stop. i enable the autopostback property to true. when user selects start or stop from dropdowm box, the page is refreshing.now what i want is...when the user selects stop from dropdown box..the page should nt refresh.
The beauty of any website is to see some rotating devices that display various event also webmaster will always like to maximize the use of web page thereby showing various advert. at a go, one rotating after the other. Then i quickly decided to make a research and put up A TUTORIAL which can show the way of doing this in ASP.NET, i call it WYSIWYG, THE power of asp.net.To start with use adRotator and xml file to get your advert. ready to displaythen let us find a way to display this advert. one after the other without hitting the buttonthen i am sure you will get what other people want to sell for $2550, which can easily rotate your advert at a goWe have the tool,(ASP.NET) let us make the maximun use of it.[URL]
This is my setup: I've got a dropdownlist of people and a linkbutton next to it to add a person. the linkbutton makes an update panel appear. When clicking save, I want the data to be saved and the new person be selected in the dropdown. As far as I can tell, I have done this properly. After I save the data I refresh the dropdownlist and take the new person's value and set it as the selected value. When stepping through, it shows the ddl with the new person and the new person selected! BUT, when the page comes back, the ddl is unchanged, ie NOT refreshed. I thought it might be something with the Update Panel but I got a similar setup to work on another page! It also works on a nested Update Panel (not shown in the following code). Can you think of why this "deception" is happening?