| Thread | Last Post | Replies |
|
| problem with dropdownlists in gridview | 30 Jul 2007 23:44 GMT | 2 |
There are two dropdownlists in two EditItemTemplates of a gridview. They are populated programmatically (see code below). This works. But now, the selected value of the first ddl (dropdownlist1) takes always the selected value of the second ddl (dropdownlist2) , and the new value
|
| AJAX, Intercept Submit before it happens | 30 Jul 2007 23:07 GMT | 7 |
I have an update panel with a Submit Button. ( AJAXified ) Is there a way, good way, of Intercepting a submit before it happens? I would like to do something in JavaScript before proceeding with the submit process.
|
| asp labels -- how to avoid a databind() call? | 30 Jul 2007 23:01 GMT | 2 |
I have a question about asp.net's labels and the DataBind method. I have a method in a code-behind page (this is VisualStudio 2003 btw) that (simplified) looks like this: public string GetName()
|
| Where to put Form tag | 30 Jul 2007 22:37 GMT | 4 |
I have pages that are identical except for the middle of the page to the right where I do all my work. <html> <head>
|
| Globalization | 30 Jul 2007 22:31 GMT | 1 |
I'm working on a multilingual CMS. I have a number of controls and labels that are generated based on the number of languages the CMS supports (ie. for the section management portion of the app, we could have dynamically generated control labels "English Section Name",
|
| DetailView | 30 Jul 2007 22:23 GMT | 1 |
I am having a problem cahnging default mode in the code.What i am trying to do is: on page load event: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
|
| AJAX .NET timeout problem | 30 Jul 2007 22:17 GMT | 2 |
In my application, I use session to store some postback value. So, I solved the standard ASP.NET session timeout issue by doing these: 1. In web.config, I used <sessionState> and set it to 12 hours with mode set to "inproc"
|
| Question on Ajax vs. plain javascript | 30 Jul 2007 22:15 GMT | 7 |
I have a asp.net form where if the user checks a check box I need to disable some of the fields. I don't need to make a trip to the server for anything at this point so is this is a case of using javascript to disable the fields or should I be using Ajax do that? As probably ...
|
| Ajax & Large Listbox | 30 Jul 2007 22:14 GMT | 2 |
I've got a very large listbox that gets populated using ajax. The listbox and a button are in a panel inside an update panel. The button click of the button sets the panel visible property to false. Everything works nice and snappy except for when I click the button. The ...
|
| Directory permission for disk I/O from web service | 30 Jul 2007 22:10 GMT | 2 |
I have an ASP.Net 2.0 web service on Win2003 server that needs to write to a shared directory on the same machine. The web.config file is using "None" as the authentication mode. I am referencing the directory using UNC naming (\\WEBSERVER\Folder\.....)
|
| Handling validation errors on the page level | 30 Jul 2007 21:07 GMT | 3 |
I've created an n-tier app where validation rules reside in the business layer. When a webform is saved, a business object examines its state, and if some property is invalid, throws a custom exception (ValidationException)
|
| question about UpdateParameters.Add | 30 Jul 2007 20:55 GMT | 7 |
this code updates a table with the new values with the event RowUpdating of a gridview. Protected Sub GridView1_RowUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewUpdateEventArgs) Handles
|
| GridView and a button (asp.net2) | 30 Jul 2007 20:32 GMT | 3 |
1)how do i add a button to a grid view (in a column of its own)? 2)how do i change the text that appeaers on the button RowCreated Event ? 3)with which event can i change the text on the button when the button is pressed and how?
|
| Loading Controls dynamically | 30 Jul 2007 19:50 GMT | 2 |
I am using asp.net 1.1 and am creating my pages with different looks where the middle right is where my actual changing content will go. It seems to work pretty well except for some strange behavior and this seems to be caused from the placement of the my Panel objects. I am ...
|
| opening a window in a different browser | 30 Jul 2007 19:47 GMT | 12 |
asp.net 2.0, ie6, opera 9.22 For various supportability reasons, we need to redirect a page to a url and require that the target url should open in an Opera browser. The call is simple
|