The code has two ListBoxes in fact, one a "source" and the other a "destination". As you can tell above the ListBoxes are MyList_lstAll and MyList_lstSelected. These are rendered in the browser as <select> elements, as you'd expect.
The jQuery is working great, the items are moving from one ListBox to the other, the DOM is updated but when I submit this form (not using jQuery), the ListBoxes don't reflect this change on postback.
I realize my modifications via jQuery aren't available in ViewState but I thought since the DOM was updated these changes would be part of the postback data? But in the codebehind after postback the ListBox contents haven't changed. Does anyone know what might be going on and what I can do about it?
have an ASP.Net page with two ListBox components, rendered in the browser as <select> lists. I'm using jQuery to move elements from one list to another by manipulating the DOM. I then select all elements with the mouse and postback the form. That way, all the list elements are posted with the form.When I submit the form, in my button_save() event handler, the Request.Form[<<listbox ID>>] values are correct. However the ListBox controls themselves, specifically their Items collections, do not reflect my changes.I've also used Fiddler to modify the select items and submit the form. Same as above, the ListBox values are no different, though the Request.Form values are. Would anyone know what's going on or what incorrect assumptions I'm making?
I'm trying to access the innerHTML of a span tag modified by jQuery using C#. This is my first project shunning the AJAX libs in favor of jQuery, so I'm not sure how I can get the codebehind to recognize the manipulated innerHTML. I've set all the spans I want to tap into with runat="server", but all I pull are the values I've set when the page was designed.
What steps should I be taking to enable communication between the client-side and my codebehind, and am I even using the best practice here?
I have a keyboard-controlled menu which I did with jquery (When I press down, it marks second option and so on...)
But after I select the option I need, I want to click enter to call the button's OnClick method as if the user really clicked it. Which means I have to do a postback.
I am loading an aspx page into a div using jquery.load(). The aspx page loaded into the div has a datalist. Each datalist item has a linkbutton. My problem is that the linkbutton is not causing a postback though. Strangely, if I change the linkbutton to a button, it does postback. Also, when loading the page normally (not from a jquery.load event), the linkbutton performs correctly. What is it that causes the linkbutton to not cause a postback when loaded this way? And is there a better way to handle this?
I have added a datetime field to my db and added the default value binding to (getutcdate()), (allow null=false) how can I have the date/time added to my db when the user is adding his data ?
I have an ASHX handler or an ASPX page (the problem happens in both cases).
The web client sends a request containing If-None-Match and/or If-Modified-Since headers but context.Request.Headers.Get("If-None-Match") or context.Request.Headers.Get("If-Modified-Since") is null in the handler.
The same script works in my local development machine but it doesn't work in the online machine (both are running IIS7 on Win 2008, .NET 3.5)
I keep a label on the master page of my site that indicates when the site was last updated. I wanted to know if there was a quick and easy way to have the system update the date in the label everytime i compile the solution so the last updated field is always correct even if i happen to forget to update it manually.
I am using an instance of DirectoryInfo to browse and retrive the files and some file attributes on a physical directory. This is displayed in a html table. But if you have for example text files (.txt) or word dokuments (.docx) How can I display the correct icon that is associated with the file in my html table? And further on how can I reach the user who modified the file the last time? Where is that info saved?
Is the DirectoryInfo the object I should use for this purpose? or are there other objects or functions that I should looking at?
I am using a grid, with udpate panel, ajax controls etc.So in my code behind everytime the hit my grid page I am clearing the previous session value stored.I do this:
[Code]....
But sometimes when i navigate to other pages and come back to this page it errors out saying:
" Collection was modified after the enumerator was instantiated."
I'm developing a blog application shared by non-profit organizations. I want each organization to be able to change their own blog settings. I have taken a singleton pattern (from BlogEngine.net) and modified it. (I understand that it is no longer a singleton pattern.) I have tested this approach and it seems to work fine in a development environment. Is this pattern a good practice? Are there issues, which may arise when this is placed in a production environment?
public class UserBlogSettings { private UserBlogSettings() { Load(); } public static UserBlogSettings Instance { get { string cacheKey = "UserBlogSettings-" + HttpContext.Current.Session["userOrgName"].ToString(); object cacheItem = HttpRuntime.Cache[cacheKey] as UserBlogSettings; if (cacheItem == null) { cacheItem = new UserBlogSettings(); HttpRuntime.Cache.Insert(cacheKey, cacheItem, null, DateTime.Now.AddMinutes(1), Cache.NoSlidingExpiration); } return (UserBlogSettings) cacheItem; } } }
I am getting this error after I add <head runat="server"> The Controls collection cannot be modified because the control contains code blocks (i.e. <% ... %>).
I'm using the ASP:Fileupload feature to upload and store PDF files to a database. I'm using the code below to store information about the file into the database.
[Code]....
But, I also need to store the last modified date of the file in the database as well. How would I accomplish this?
I recently purchased the source code of an existing DotNetNuke module in order to make a few modifications. The source of the module contains various .ascx, ascx.resx and .ascx.vb files. as well as a main.dll file. Lets call them:
I've made a few changes to "myfile.ascx.vb". When I rebuild "my_module" via Build --> Rebuild my_module, I get confirmation that there are no errors in the Error List. I then upload a fresh copy of "mydll.dll" from the "/obj/release/" folder on my local machine up to the "/bin/" folder on my DotNetNuke site.
The issue that I'm having is that the changes that I made to "myfile.ascx.vb" are not appearing on my DotNetNuke site. Are there additional files that need to uploaded? I've checked timestamps on all of my local files and the only files that are updated after the build is "mydll.dll".
We are using membership and roles.. is there anyway to setup a user that cannot be deleted? We need to setup a default admin account and dont want it displayed in list of user to modify, or if it has to be displayed, it cant be deleted or edited thru the pages that is, if they need to, they can do it thru the website admin section to manage it.
i am populating a grid view from one table, if any changes made in the particular table the particular modified cell should be highlighted... how can i do this.. ?
I'm trying to connect to a MS Access database, loop through all db tables and read the 'modified' timestamp, how to achieve that. Using 'Microsoft.Jet.OLEDB.4.0' driver and C#.
I am creating a asp.net project that have one master page for all pages?Why my object's name for example my div with ID="div1" is changed to ctl00_ div1 when this object is in master page?
In my applications need to seach files in particular directory based on modified date .i have to view in selected dates whats are files are modified in particular directory .