active questions tagged asp.net - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:50:06Z http://stackoverflow.com/feeds/tag/asp.net http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1812307/please-suggest-a-good-net-webservice-book 0 please suggest a good .NET Webservice book Wondering 2009-11-28T11:29:15Z 2009-11-28T11:44:21Z <p>Dear All, can u please suggest a good .NET webservice book? I do have basic knowledge in web service.</p> http://stackoverflow.com/questions/1811916/deploy-asp-net-app-in-subdomain-folder 0 deploy asp.net app in subdomain/folder Brij 2009-11-28T07:51:31Z 2009-11-28T11:41:44Z <p>I have an asp.net application, It is working fine on my local machine. I have a hosting for ASP.NET site. There is already a running asp.net site. I want to deploy my app in separate folder. I don't want to modify main site content(web.config).<br/> Let me know what to do for this.<br/> Is it require to give virtual directory permission to the folder? Is there any alternate way to do this? Do I need to modify paths(Image/script sources) in the app to run in folder?</p> <p>Thanks</p> http://stackoverflow.com/questions/1811834/new-to-wcf-web-services 1 New to WCF Web Services. Erica 2009-11-28T07:06:24Z 2009-11-28T11:34:19Z <p>Hi,</p> <p>I am new to WCF and I want to know if it is possible to create a WCF service on it's own application and host it on IIS. Then another ASP.NET application will consume it. So far all the examples i have seen have the WCF service inside the same ASP.NET solution. If so, can you please provide some hints about how to do it? I want to create a simple example that retrieves the person last name based on the id and then consume it from a separate ASP.NET application.</p> <p>thank you.</p> http://stackoverflow.com/questions/1812159/in-asp-net-is-there-a-function-to-validate-an-email-address 0 In asp.net is there a function to validate an email address? Anthony 2009-11-28T10:10:50Z 2009-11-28T11:31:00Z <p>I've noticed that if you try to send an email to an invalid address, an exception is raised:</p> <pre><code>MailAddress To=new MailAddress("invalidemailaddress","recipientname"); </code></pre> <p>throws:</p> <pre><code> "The specified string is not in the form required for an e-mail address" </code></pre> <p>This means that there must be a .Net function which is executed in MailAddress to check if the email address is valid or not. Is there a way to call this 'validate' function directly? This way I won't need to create my own IsValid function.</p> http://stackoverflow.com/questions/1812112/passing-value-from-one-page-to-another-using-master-pages 0 Passing value from one page to another using master pages naidu 2009-11-28T09:46:00Z 2009-11-28T11:26:59Z <p>Hi everybody, my problem is i want to pass value of a label and hidden control which are resides in a datalist say in page1.aspx and i want to access these value in page2.aspx. How can i get the values to another page while clicking on submit button. Is there any better option we have without using sessions, server.transfer, request.querystrings etc. Pls. help. I am using master pages. Can we use previouspage? if so how. Suggest me a better solutions. Thanks in advance.</p> http://stackoverflow.com/questions/1811986/datetime-nightmare-any-thorough-module-or-control-in-c-to-help-ease-the-pain 0 Datetime nightmare, any thorough module or control in C# to help ease the pain? Ayyash 2009-11-28T08:29:01Z 2009-11-28T11:10:41Z <p>once again I have to create a date module, and once again i live the horror of perfecting it, is it me or are date and time the filthiest animals in programming profession, its the beast lurking behind the door that I wish I never have to deal with :(</p> <p>does anyone know of a great source I can learn from that deals with dates in the following aspects:</p> <ul> <li>user enters datetime and time zone</li> <li>system translates to universal time and saves in data source</li> <li>system retrieves universal time converted to local time chosen by developer (not by server or client location which may not be the right zone to display)</li> <li>system should consider daylight time saving differences</li> <li>cannot rely on "DateTime" parsing as it parses bohemiangly with respect to local server time</li> <li>must give ability to developer to deal in both shapes: datetime and string objects</li> </ul> <p>i looked at blogengine.net to see how they deal with but its too nieve, they save the time difference in hours in the settings datasource, it is absoluteley inaccurate... any sources to help?</p> <p>i already went far in creating the necessary methods that use CultureInfo, TimeZoneInfo, DateTimeOffset ... yet when i put it to the test, it failed! appreciate the help</p> <p><strong>EDIT:</strong></p> <p>After squeezing some more, i narrowed it down to this:</p> <pre><code>public string PrettyDate(DateTime s, string format) { // this one parses to local then returns according to timezone as a string s = TimeZoneInfo.ConvertTimeBySystemTimeZoneId(s, "AUS Eastern Standard Time"); CultureInfo Culture = CultureInfo.CreateSpecificCulture("en-au"); return s.ToString(format , Culture); } </code></pre> <p>problem is, I know the passed date is UTC time because im using </p> <pre><code>DateTimeOffset.Parse(s, _dtfi).UtcDateTime; // where dtfi has "yyyy-MM-ddTHH:mmzzz" as its FullDateTimePattern </code></pre> <p>when i call the function on my datetime, like this:</p> <pre><code>AuDate.Instance.PrettyDate(el.EventDate,"yyyy-MM-dd HH:mm zzz"); </code></pre> <p>on my machine i get:</p> <pre><code>2009-11-26 15:01 +11:00 </code></pre> <p>on server I get:</p> <pre><code>2009-11-26 15:01 -08:00 </code></pre> <p>I find this very peculiar! why is the timezone incorrect? everything else is in place! have i missed something?</p> http://stackoverflow.com/questions/1810649/response-flush-only-works-with-firefox 1 Response.Flush() only works with Firefox Dawkins 2009-11-27T21:14:02Z 2009-11-28T11:00:20Z <p>I am trying to send some content to the client before doing some lengthy work:</p> <pre><code>Response.Write("Processing..."); Response.Flush(); System.Threading.Thread.Sleep(5000); Response.Write("Finish"); Response.End(); </code></pre> <p>In Firefox it works as expected but in IE8, Safari and Chrome it waits until all the code is processed and then shows the whole text.</p> <p>I have tried sending a better formed HTML like the below sample but I get the same results:</p> <pre><code>Response.Write("&lt;html&gt;&lt;head&gt;&lt;title&gt;test&lt;/title&gt;&lt;/head&gt;&lt;body&gt;Processing...&lt;/body&gt;&lt;/html&gt;"); Response.Flush(); System.Threading.Thread.Sleep(5000); Response.Write("Finish"); Response.End(); </code></pre> <p>Thank you!</p> http://stackoverflow.com/questions/1807985/executing-script-asp-net-application 0 executing script ASP.NET application Shital 2009-11-27T10:35:42Z 2009-11-28T10:15:04Z <p>In my ASP.NET application default page is Login.aspx.<br> In this page I check the Query string, if it is empty I load the page, but if query string has parameters I want to launch the application on client.<br> This is working when first I browse my application without parameters (<code>http://localhost/myApps</code>), and then browse the application with some parameters (<code>http://localhost/myApps?ID='test'</code>).<br> But if I directly browse the site with <code>http://localhost/myApps?ID='test'</code>, it is not working.</p> <p>Following is the code of my Global.asax page</p> <pre><code>public class Global : System.Web.HttpApplication { protected void Application_BeginRequest(object sender, EventArgs e) { System.Web.HttpContext httpCurrent; httpCurrent = System.Web.HttpContext.Current; string currentURL; if (Request.QueryString.Count == 4) { string PID = Request.QueryString["PID"].ToString(); string sid = Request.QueryString["acc_no"].ToString(); string uid = Request.QueryString["userID"].ToString(); string uname = Request.QueryString["username"].ToString(); currentURL = "ViewImages.aspx?PID=" + PID + "&amp;acc_no=" + sid + "&amp;userID=" + uid + "&amp;username=" + uname; httpCurrent.RewritePath(currentURL); } else { currentURL = "Login.aspx?"; httpCurrent.RewritePath(currentURL); } } } </code></pre> http://stackoverflow.com/questions/1811909/how-to-get-an-selected-value-fora-dropdown-control-inside-detailsview-contro 0 how to get an selected value fora dropdown control inside detailsview control. when it is in edit mode prince23 2009-11-28T07:47:48Z 2009-11-28T09:53:48Z <p>hi, i have an detialsview control with item template and edititemtemplate. when user clciks the edit button in detailsview all the control are replaced with textbox control and dropdown control. but in dropdown control i have an issue <strong>in the read mode of detailsview control item template field is having value="India"</strong> when i click edit mode here now i am getting dropdown control with populating all the countries. <strong>as for this record the selected value should be "india"</strong> and then rest all the countries names should be coming in dropdown control</p> <p>my code looks like this</p> <pre><code>public DataSet PopulateDropDownList() { SqlConnection myConnection = new SqlConnection(ConfigurationManager.ConnectionStrings["MyDatabase"].ConnectionString); SqlDataAdapter ad = new SqlDataAdapter("SELECT * FROM country", myConnection); DataSet ds = new DataSet(); ad.Fill(ds, "country"); return ds; } &lt;ItemTemplate &gt; </code></pre> <p>' runat ="server" > " DataTextField="Phone" DataValueField = "PhoneID"> </p> <p>so in edit mode how can i show user the the this selected value in the dropdown should comefirst then follwd by other countries name</p> <p>how can i achive this one here. looking for this solution from past 2 days any help would be great thank you </p> http://stackoverflow.com/questions/1812059/regular-expression-neeed-help-for-url-rewritting 0 Regular expression : neeed help for url rewritting Ajax2020 2009-11-28T09:13:14Z 2009-11-28T09:46:11Z <p>Hi </p> <p>I am using <a href="http://urlrewriter.net" rel="nofollow">urlrewriter.net</a></p> <p>my intended url is like /articles/3/name_of_article/articles.aspx </p> <p>&amp; actual is articles.aspx?article =3; </p> <p>(3 is just taken, it can be any number)</p> <p>i am using regex like this </p> <pre><code> &lt;rewriter&gt; &lt;rewrite url="^/articles/(.+)/(.+)" to="/articles.aspx?article=$1" /&gt; &lt;/rewriter&gt; </code></pre> <p>it does not work, also if i delete module dll from references then also no exception is thrown.</p> <p>1) how can ensure that module is loaded (via code) ?</p> <p>2) is my regex correct ? </p> <p>my web.config contains this : </p> <pre><code>&lt;configSections&gt; &lt;section name="rewriter" requirePermission="false" type="Intelligencia.UrlRewriter.Configuration.RewriterConfigurationSectionHandler, Intelligencia.UrlRewriter" /&gt; &lt;/configSections&gt; </code></pre> <p>&amp; </p> <pre><code>&lt;httpModules&gt; &lt;add type="Intelligencia.UrlRewriter.RewriterHttpModule, Intelligencia.UrlRewriter" name="UrlRewriter" /&gt; &lt;add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/&gt; &lt;/httpModules&gt; </code></pre> <p>plz help!</p> http://stackoverflow.com/questions/1812074/asp-net-crystal-reports-insert-hyperlink 0 ASP.Net Crystal reports insert hyperlink Ryan 2009-11-28T09:20:27Z 2009-11-28T09:20:27Z <p>I have created a crystal report on VS 2005. I have also created a aspx page and inserted a crystal report viewer in it and linked it to the report I had created. Everything is working fine. But when I navigate through the report I have to click back button of the browser again and again so as to return to my original page. Is there a way to insert a hyperlink in the cyrstal report to navigate to another page. I have tried inserting it in the aspx page but it does not get displayed on execution.</p> http://stackoverflow.com/questions/1804282/grouped-gridview 0 Grouped Gridview Sam_Cogan 2009-11-26T15:22:32Z 2009-11-28T09:19:38Z <p>I am in the process of transitioning an Access DB to a Web application. The Access DB currently produces reports using grouping e.g.:</p> <pre><code>Country ------------------------------------------------------- County ------------------------------------------------------- City Name | Population | Post Code | </code></pre> <p>I'm trying to reproduce this using asp.net. I guess I could manually code up a table to do this, but it seems like there should be a better way. By the looks of it this is not possible with a Gridview, without alot of hacking. I had thought a listview would do what I want, but it seems the grouping in that only lets you group by number of records, not by a parent field.</p> <p>Is there anyway to do this using a .net control or should I be concentrating on doing it manually with a table and code in the aspx page.</p> http://stackoverflow.com/questions/1812070/why-sql-membership-database-tables-created-by-aspnetregsql-have-no-primary-keys 0 Why SQL Membership Database tables created by aspnet_regsql have no primary keys Stato Machino 2009-11-28T09:19:36Z 2009-11-28T09:19:36Z <p>This question is about the tables created by aspnet_regsql for the ASP.NET 2.0 Membership database.</p> <p>I am incorporating these tables and procs, etc from the database into my application database for ease of manageemnt and integration with the application data.</p> <p>I notice that none of the tables have primary keys. This is a difficulty with the tools I use to create and manage entities, dto's, repository classes and validation.</p> <p>Does anyone know why these tables do not have primary keys and whether adding primary keys to these tables will interfere with the operation of the baked-in stored procs that this database includes?</p> <p>Thanks,</p> <p>Kimball</p> http://stackoverflow.com/questions/1811895/how-to-use-request-headers-add-in-asp-net-with-c -1 How to use Request.Headers.Add(); in asp.net with c# anirudha Gupta 2009-11-28T07:38:39Z 2009-11-28T08:11:58Z <p>how i can use it Request.Headers.Add(); in asp.net with c#</p> http://stackoverflow.com/questions/1018764/why-can-i-not-get-application-object-in-classic-asp-when-i-add-a-net-wildcard-ma 0 Why can I not get application object in classic ASP when I add a .NET Wildcard mapping to directory? Ron 2009-06-19T16:03:26Z 2009-11-28T08:00:04Z <p>We're migrating a site from classic asp to .NET. In the process, I need to use .NET authentication to secure the classic asp pages. This works great with wildcard mapping...unless the classic asp pages try to use something like the Application object. </p> <p>I have tried adding an HTTPHandler to pass the request to the asp.dll, but to no avail. </p> <p>Is what I am trying to do even possible?</p> http://stackoverflow.com/questions/1811878/alternative-to-response-redirect-to-effect-a-subdomain 0 Alternative to Response.Redirect to effect a subdomain rism 2009-11-28T07:28:29Z 2009-11-28T07:28:29Z <p>I have a site that is hosted in shared hosting environment. They use a wildcard subdomain setup and suggest using Response.Redirect to achieve the illusion of a subdomain.</p> <p>Is there a way of doing this such that the "switch" takes place on the server rather than bouncing back down to the browser first?</p> <p>Server.Transfer only works if I transfer to an actual resource. So redirecting from sub1.mydomain.com to www.mydomain.com/public/ does not work. I'd have to redirect to www.mydomain.com/public/mypage.aspx instead which i dont want to do.</p> http://stackoverflow.com/questions/1811829/asp-net-health-monitoring-how-to-check-requests-queued 1 ASP.Net Health Monitoring - How to check Requests Queued James 2009-11-28T07:00:49Z 2009-11-28T07:00:49Z <p>I have just discovered ASP.Net Health Monitoring - it looks awesome. I have been developing ASP.Net apps for years, and have even taken the Microsoft certs and have never seen it before. I can't believe it is so hidden. It must be one of the best kept secrets of .Net... anyway, I digress. Here is my question:</p> <p>I would like to use ASP.Net Health Monitoring to do the following (below). I am having trouble working out exactly how I would achieve this. Any advice appreciated!</p> <p><strong>Goal 1:</strong></p> <ul> <li>Receive an email once a day</li> <li>Email to contain a list of the number requests that were queued at 5 minute intervals throughout the day</li> </ul> <p>E.G: I would like to receive an email like the following</p> <p>~~Daily Request Queue Summary~~</p> <ul> <li>0:00 am - 2</li> <li>0:05 am - 10</li> <li>0:10 am - 7</li> <li>...</li> </ul> <p><strong>Goal 2:</strong> I would like to receive a warning email if the number of queued requests goes over X amount</p> <p>Thanks in advance for any help</p> http://stackoverflow.com/questions/1093610/linkbutton-click-event 0 LinkButton Click Event Deepa 2009-07-07T17:19:23Z 2009-11-28T07:00:03Z <p>Hi everybody,</p> <p>I have this problem .. I have one "Login" linkbutton and one "UserList" linkbutton on one masterpage. When the user is logged in, and he clicks "UserList" linkbutton, the UserList Page which has the masterpage mentioned above, opens.(This i have achieved).</p> <p>but if the user is not logged in and he clicks "UserList", the "Login" linkbutton's click should be called. how can i achieve this? Please Help..</p> http://stackoverflow.com/questions/1808378/extend-the-dropdown-for-item-tooltip-asp-net-c 0 Extend the DropDown for Item ToolTip,Asp.net,C# Vin 2009-11-27T12:07:10Z 2009-11-28T06:54:38Z <p>Hi,</p> <pre><code>i need to extend the DropDownList For adding toolTip For DropDown Item On mouseOver. </code></pre> <p>If(Dropdown size is samller than Dropdownlist item then it will be useful for seeing the item as tool tip)</p> <p>For that i came to know, We need to create ServerControl project in VS2008 but i dont know how to add a property like ItemToolTip </p> <p>which need to be worked as (DataTextField, DataValueField in drop down list) in that class .</p> <p>tell me any link for ServerControl project sample which resembles my requirement.</p> <p>I tried using below code but dropdown property itself not working..</p> <p>namespace DropDownItemToolTip</p> <p>{</p> <pre><code>[DefaultProperty("Text")] [ToolboxData("&lt;{0}:ServerControl1 runat=server&gt;&lt;/{0}:ServerControl1&gt;")] public class ServerControl1 : System.Web.UI.WebControls.DropDownList { [Bindable(true)] [Category("Appearance")] [DefaultValue("")] [Localizable(true)] public string Text1 { get { String s = (String)ViewState["Text"]; return ((s == null) ? "[" + this.ID + "]" : s); } set { ViewState["Text"] = value; } } protected override void RenderContents(HtmlTextWriter output) { output.Write(Text1); } } </code></pre> <p>}</p> <p>Send me any sample project link, which done like this.. </p> <p>Thanks &amp; Regards </p> http://stackoverflow.com/questions/1794785/data-retrival-in-gridview-asp-net 0 Data retrival in gridview asp.net anay 2009-11-25T05:10:44Z 2009-11-28T06:43:43Z <p>hey...</p> <p>i have three tables </p> <pre><code>subject(sub_id(PK),sub_desc) questions(q_id(PK),q_desc,sub_id(FK)) answers(ans_id(PK),q_id(FK))ans_desc,istrue) </code></pre> <p>for each question entry in question table there are four entries in answers table and istrue bit will be set 1 for correct ans</p> <p>like for question 1 with corr_ans 1 four entries will be</p> <pre><code>(1,1,djhjfj,1),(2,1,hdjfsh,0),(3,1,hsssh,0),(4,1,jfsh,0) </code></pre> <p>now i have to retrive this data in a grid view as per the sub_id which user will select from a combobox.. in the format </p> <pre><code>----------------------------------------------------------------- |question(q_desc) | options(ans_1,ans_2,ans_3,ans_4)|correct_ans| ----------------------------------------------------------------- | | | | | | | | ----------------------------------------------------------------- </code></pre> <p>pls help..thnx</p> http://stackoverflow.com/questions/1811658/how-do-websites-find-out-which-browser-is-visiting-them 2 How do websites find out which browser is visiting them anirudha Gupta 2009-11-28T05:18:01Z 2009-11-28T06:37:22Z <p>How do websites find out which browser is visiting them</p> <p>how i can do this</p> <p>Are you give answer for asp.net c#</p> http://stackoverflow.com/questions/1811744/how-to-set-the-http-headers-when-sending-http-request-to-a-server-so-that-the-ser 0 how to set the http headers when sending http request to a server so that the server thinks the requests are coming from firefox anirudha Gupta 2009-11-28T06:08:32Z 2009-11-28T06:19:27Z <p>how to set the http headers when sending http request to a server so that the server thinks the requests are coming from firefox</p> http://stackoverflow.com/questions/1802240/attribute-runat-is-not-a-valid-attribute-did-you-mean-content-or-target-h 0 Attribute "runat" is not a valid attribute. Did you mean "content" or "target"? How to solve this asp.net validation error Jitendra 2009-11-26T08:17:51Z 2009-11-28T06:05:38Z <p>see here this error - <a href="http://validator.w3.org/check?verbose=1&amp;uri=http%3A%2F%2Fwww.sitecore.net%2F" rel="nofollow">http://validator.w3.org/check?verbose=1&amp;uri=http%3A%2F%2Fwww.sitecore.net%2F</a></p> http://stackoverflow.com/questions/969360/silverlight-getting-loaded-again-and-again-in-firefox 0 Silverlight getting loaded again and again in Firefox Manish 2009-06-09T10:54:37Z 2009-11-28T06:00:02Z <p>I am using Silverlight.CreateObject function to create a object tag with a xap which is dynamic i.e. it does it on a click on something. And when u click that back again it gets disappeared. When u click it again, it should show the XAP again <strong>without loading it again</strong>(as it has been downloaded once). All works fine in IE. But in Firefox when I click it again, it starts loading it again. In fiddler it is showing Private Cache for both IE and Firefox. Can someone help me?</p> http://stackoverflow.com/questions/1811365/does-this-match-any-known-design-pattern 1 Does this match any known design pattern? Andy West 2009-11-28T02:40:44Z 2009-11-28T05:46:32Z <p>I'm working on a simple, internal ASP.NET app for a small company. I've designed the data access layer so it's database-agnostic.</p> <p>I have the following:</p> <ul> <li><strong>IDataHelper</strong> - An interface requiring methods such as FillDataTable(), ExecuteNonQuery(), etc.</li> <li><strong>MySqlHelper</strong> - Implements IDataHelper for MySQL, the only database I support so far.</li> <li><strong>Static data access classes</strong> - Encapsulate data access methods for different parts of the app. They call methods on an IDataHelper to execute queries.</li> </ul> <p>And finally, I have a static class that creates an IDataHelper for the data access classes to call. In the future it will create the appropriate helper based on the database specified in the config file. For now it's just hard-coded to create a MySqlHelper:</p> <pre><code>public static class DataHelperContainer { private static IDataHelper dataHelper; public static IDataHelper DataHelper { get { return dataHelper; } } static DataHelperContainer() { string connectionString = ConfigurationManager .ConnectionStrings["myapp"].ConnectionString; // Support for other databases will be added later. dataHelper = new MySqlHelper(connectionString); } } </code></pre> <p>My questions are:</p> <ol> <li>What should I name this? "DataHelperContainer" doesn't seem right, since that implies some kind of list.</li> <li>Is this a good or bad design? If it's bad, what are its faults?</li> <li>Is this similar to any known design pattern? Can it be refactored to conform to one? It seems remotely like a factory, but I'm not sure.</li> </ol> <p>Sorry about the long post and multiple questions. :)</p> <p>Thanks!</p> http://stackoverflow.com/questions/1811686/link-to-retrive-pdf-file-from-db-in-asp-net 0 Link to retrive pdf file from DB- in asp.net Ranjana 2009-11-28T05:34:36Z 2009-11-28T05:39:38Z <p>i have retrived the pdf file from Database and i linked it to a tag to open pdf file using link. now i want to give the open/save dialog box before a pdf file opened . - in javascript(by using onclick event in tag to call the javascript)</p> http://stackoverflow.com/questions/1811577/variable-insertion-in-href-attribute-of-a-tag 0 variable insertion in href attribute of <a> tag tibin mathew 2009-11-28T04:40:16Z 2009-11-28T05:29:28Z <p>hi guys,</p> <p>I have a variable with this value</p> <pre><code>var= "http://www.coolsite.com" </code></pre> <p>this variable will change, its a dynamic value</p> <p>i want insert this variable in my href attribute of tag.</p> <p>after insertion it should look like this</p> <pre><code>&lt;a href="http://www.coolsite.com"&gt;http://www.coolsite.com&lt;/a&gt; </code></pre> <p>i want to do this in asp.net c#</p> <p>does any one have an idea, how can i do this?</p> <p>Thanks</p> http://stackoverflow.com/questions/1811446/gridview-sorting-problem 0 GridView sorting problem? Grant83 2009-11-28T03:30:04Z 2009-11-28T04:42:58Z <p>Hi after i sort my gridview, when i want to edit a row the selected row is completely wrong.</p> <p>what can i do?</p> http://stackoverflow.com/questions/1811432/how-to-troubleshoot-the-web-app-in-web-farm 0 how to troubleshoot the web app in web farm northTiger 2009-11-28T03:23:52Z 2009-11-28T03:45:24Z <p>My webApp works fine on localhost, After it is deployed on web farm, I got random exception without any pattern. e.g. go to page 1 by menu, it is OK then goto page 2 do nothing and back to page 1, it is crash. there is DB access on each page. sometimes,the exception mesage was "attemped to read or write protected memory". the message confuses me all the time. I heve no clue where to start to troubleshoot issues. </p> http://stackoverflow.com/questions/1811448/javascript-degradable-cascading-dropdownlists 0 Javascript degradable cascading dropdownlists zSysop 2009-11-28T03:30:20Z 2009-11-28T03:33:22Z <p>Hi all,</p> <p>I have 2-3 list within a form that rely on each other. If one is changed an ajax call is made and the others are loaded. I was wondering if any of you knew of a method to make this dropdownlist js degradable.</p> <p>Thanks</p>