active questions tagged asp.net-3.5 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T16:03:19Z http://stackoverflow.com/feeds/tag/asp.net-3.5 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1567408/strange-httpexception-thats-driving-me-nuts 0 Strange HttpException that's driving me nuts Mattias 2009-10-14T16:20:36Z 2009-11-26T17:07:24Z <p>Im trying to list all categories in a VPP-folder using a module from Meridium called <a href="https://www.coderesort.com/p/epicode/wiki/FolderBrowserProperty" rel="nofollow"><i>FolderBrowserProperty</i>.</a> It works perfectly locally and on our company's remote test site, but on the live site we are getting the following error: <hr> Server Error in '/' Application.</p> <pre><code>Unhandled Execution Error Stack trace: [HttpException: 0x80004005]&lt;br&gt; System.Web.CachedPathData.GetConfigPathData(String configPath) +459 System.Web.CachedPathData.GetVirtualPathData(VirtualPath virtualPath, Boolean permitPathsOutsideApp) +132 &lt;br&gt; System.Web.Configuration.RuntimeConfig.GetConfig(VirtualPath path) +110 System.Web.Security.UrlAuthorizationModule.CheckUrlAccessForPrincipal(String virtualPath, IPrincipal user, String verb) +477 &lt;br&gt; EPiServer.Security.PrincipalInfo.HasPathAccess(String path) +88 EPiServer.Web.Hosting.VersioningDirectory.getDirectories() +229 EPiServer.Web.Hosting.VersioningDirectory.GetDirectories() +35 EPiServer.Web.WebControls.FileSystemItem.getChildren() +92 EPiServer.Web.WebControls.FileSystemItem.get_HasChildren() +5 System.Web.UI.WebControls.TreeView.DataBindRecursive(TreeNode node, IHierarchicalEnumerable enumerable, Boolean ignorePopulateOnDemand) +3652 System.Web.UI.WebControls.TreeView.DataBindRecursive(TreeNode node, IHierarchicalEnumerable enumerable, Boolean ignorePopulateOnDemand) +3752 System.Web.UI.WebControls.TreeView.DataBindRecursive(TreeNode node, IHierarchicalEnumerable enumerable, Boolean ignorePopulateOnDemand) +3752 System.Web.UI.WebControls.TreeView.DataBindNode(TreeNode node) +347 System.Web.UI.WebControls.TreeView.PerformDataBinding() +305 System.Web.UI.WebControls.HierarchicalDataBoundControl.PerformSelect() +82 System.Web.UI.WebControls.BaseDataBoundControl.DataBind() +70 System.Web.UI.WebControls.TreeView.DataBind() +4 System.Web.UI.WebControls.BaseDataBoundControl.EnsureDataBound() +82 System.Web.UI.WebControls.TreeView.OnPreRender(EventArgs e) +43 System.Web.UI.Control.PreRenderRecursiveInternal() +86 System.Web.UI.Control.PreRenderRecursiveInternal() +170 System.Web.UI.Control.PreRenderRecursiveInternal() +170 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2041 </code></pre> <p><hr> We first assumed there was an access problem (WindowsMembershipProvider), but both the IIS and the active using accessing the files have access - still same problem. <br><br> I've looked around abit on the methods executing before and at the error, but due to the exception message, i cant deduce anything helpful.</p> <p>Any help will be most appreciative.</p> <p>Best regards, Mattias </p> http://stackoverflow.com/questions/1790911/ie6-updatepanel-must-move-mouse-to-refresh-after-async-call 0 IE6 UpdatePanel Must move mouse to refresh after async call Josh 2009-11-24T15:45:38Z 2009-11-26T16:43:40Z <p>So we are using IE6, and can not migrate to any other browser. So our application is having issues where after we have a postback inside our updatepanel. The browser looks like its resetting the DOM, one select box kind of jumps up a little, but then it freezes for 10-20 seconds, then the page gets updated. Now if we move the mouse it is instantly refreshed everytime. I found </p> <p><a href="http://support.microsoft.com/?kbid=2000262" rel="nofollow">http://support.microsoft.com/?kbid=2000262</a> </p> <p>but that only moved the time down from 20-30 to 10-20. This only happens our our XP sp3 laptops. Our dev machines run windows 2003 and IE6, and we do not experience the problem. Both machines don't go past 5% CPU usage when the update panel comes back. Any suggestions anyone?</p> http://stackoverflow.com/questions/1801704/how-to-implement-face-recognition-in-an-image-in-net-3-5 0 How to implement face recognition in an image in .net 3.5? Himadri 2009-11-26T05:28:18Z 2009-11-26T08:44:41Z <p>Hi all,</p> <p>I need to implement face recognition like in orkut album.</p> <p>In my website when a user uploads a photo and checks the photo in album I need to implement the feature and place rectangles over the faces in photo like in orkut album like in <a href="http://en.blog.orkut.com/2009/07/face-detection-in-orkut-photo-albums.html" rel="nofollow">this link</a>.</p> <p>Please help me to implement this.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1772255/asp-net-silverlight-wcf-forms-authentication-how-to-configure-endpoints 1 ASP.NET, SilverLight, WCF & Forms Authentication - How to configure endpoints? tblank 2009-11-20T17:57:56Z 2009-11-25T21:09:27Z <p>I have this existing environment:</p> <blockquote> <p>1) ASP.NET 3.5 web application </p> <p>2) forms authentication with the SqlMembershipProvider</p> </blockquote> <p>I need to add the following:</p> <blockquote> <p>1) a Silverlight charting object embedded in a web page.</p> <p>2) a WCF service to be consumed by:</p> <pre><code> a) the Silverlight component embedded in an authenticated web page, as mentioned above b) server-based WCF clients with certificate based authentication </code></pre> </blockquote> <p>My question is - what is the easiest/best way to configure the WCF endpoints for the Silverlight object to authenticate to the WCF service using the security context of the already logged-in user (via the page that’s hosting the Silverlight object) without having to use the user's username/password again?</p> <p>I've researched a lot of the MSDN and Patterns &amp; Practices material and I thought I had a decent grasp of many of the potential authentication scenarios. But I can't seem to figure out a way to tie them together for the scenario I've outlined. I've found other people posting similar questions to mine but none of the answers I've read seem to fully answer their questions either. (Maybe I'm making this harder than it needs to be?)</p> <p>I would think that the solution would be to somehow use the authentication token/cookie generated in the asp.net form login and somehow pass that to the Silverlight object which then includes it in the WCF request. But I don't see how to configure the WCF endpoint to use that token.</p> <p>(In some of my other projects I've implemented the server-to-server scenario in 2.b above using certificate-based authentication, so I'm not too worried about adding that to the current mix I've outlined.)</p> <p>Thanks in advance for any insight or pointers to the path forward.</p> <p>Terry</p> http://stackoverflow.com/questions/1795053/user-control-question-not-working-right 0 User control question (Not working right) PsychoCoder 2009-11-25T06:36:48Z 2009-11-25T15:45:52Z <p>I have a user control (a country selector, select a country and it populates a 2nd DropDownList with the states/regions for that country without reloading the page). The control works fine if there's nothing in the QueryString, but as soon as I add something to the QueryString, such as <a href="http://www.example.com/test.aspx?ACC=3" rel="nofollow">http://www.example.com/test.aspx?ACC=3</a> then the control no longer works.</p> <p>This seems strange to me (and I've not encountered anything like this before). Anyone ran into this before, and if so how did you resolve it. By the way, the page in question is a Web Content Form (Master Page content page) and am using C# 3.5 with SQL 2008.</p> <p>As requested here is the code (it was written by a co-worker so I'm not resposible for it but am responsible for making it work)</p> <pre><code>public partial class CountrySelector : System.Web.UI.UserControl { private string _connectionString; private string _selectedCountry; private string _selectedRegion; private string _country; private string _stateOrRegion; private DataProvider _provider; public DataProvider Provider { get { return _provider; } set { _provider = value; } } public string ConnectionString { get { return _connectionString; } set { _connectionString = value; } } public string SelectedCountry { get { return _selectedCountry; } } public string SelectedRegion { get { return _selectedRegion; } } public string Country { get { return _country; } set { _country = value; } } public string StateOrRegion { get { return _stateOrRegion; } set { _stateOrRegion = value; } } protected void Page_Load(object sender, EventArgs e) { DropDownList1.SelectedIndexChanged += new EventHandler(DropDownList1_SelectedIndexChanged); DropDownList2.SelectedIndexChanged += new EventHandler(DropDownList2_SelectedIndexChanged); if (DropDownList1.Items.Count == 0) { string connectionString = _connectionString; SqlDataReader sqlReader; IClusterisDB mainDatabase = new ClusterisDB(this._provider, this._connectionString); try { mainDatabase.OpenDBConnection(); sqlReader = (SqlDataReader)mainDatabase.ExecuteDataReader(System.Data.CommandType.StoredProcedure, "dbo.uspUserGetCountryList"); DropDownList1.Items.Clear(); while (sqlReader.Read()) { DropDownList1.Items.Add(new ListItem(sqlReader.GetString(1), sqlReader.GetString(0))); } DropDownList1.Items.Insert(0, "[ Select ]"); sqlReader.Close(); if (!string.IsNullOrEmpty(_country)) DropDownList1.SelectedValue = _country; if (!string.IsNullOrEmpty(_stateOrRegion)) DropDownList2.SelectedValue = _stateOrRegion; } catch { // Add exception handling here } finally { mainDatabase.CloseDBConnection(); mainDatabase.Dispose(); } } _selectedCountry = DropDownList1.SelectedItem.Value; } void DropDownList2_SelectedIndexChanged(object sender, EventArgs e) { _selectedRegion = DropDownList2.Text; } void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) { DropDownList2.Items.Clear(); DropDownList2.Enabled = false; SqlDataReader sqlReader; IClusterisDB mainDatabase = new ClusterisDB(this._provider, this._connectionString); try { mainDatabase.OpenDBConnection(); mainDatabase.CreateDataParameters(1); mainDatabase.AddDataParameters(0, "@CountryCode", DropDownList1.SelectedItem.Value); sqlReader = (SqlDataReader)mainDatabase.ExecuteDataReader(System.Data.CommandType.StoredProcedure, "dbo.uspUserGetStateOrRegionByCode"); if (sqlReader.HasRows) { while (sqlReader.Read()) { DropDownList2.Enabled = true; DropDownList2.Items.Add(new ListItem(sqlReader.GetString(1), sqlReader.GetString(0))); } DropDownList2.Items.Insert(0, "[ Select ]"); } else { DropDownList2.Items.Clear(); DropDownList2.Enabled = false; } sqlReader.Close(); if (DropDownList2.Text != "[ Select ]") _selectedRegion = DropDownList2.SelectedItem.Value; _selectedCountry = DropDownList1.SelectedItem.Value; ; } catch(Exception ex) { Response.Write(ex.Message); //Add exception handling } finally { mainDatabase.CloseDBConnection(); mainDatabase.Dispose(); } } } </code></pre> http://stackoverflow.com/questions/1794687/open-the-files-txt-wrl-in-browser-without-showing-the-open-saveas-dialog-b 0 open the files(.TXT/.WRL/...) in browser without showing the open/saveas dialog box Sudhakar 2009-11-25T04:45:06Z 2009-11-25T04:45:06Z <p>Hi, </p> <p>we have files(externsion of the files is .TXT/.WRL/...) in IIS6.0 server, and wanted to open in browser using ASP.NET2008.</p> <p>My problem is that it always shows the open/saveas dialog, but what I wanted is, it should open the file in the browser directly without showing the open/saveas dialog box. we are using ASP.NET2008. It would be great if you provide the sample code.</p> http://stackoverflow.com/questions/1788571/asp-net-2008-opens-the-file-within-browser-rather-than-showing-a-open-saveas-di 0 (ASP.NET 2008) opens the file within browser rather than showing a Open/SaveAs dialog Sudhakar 2009-11-24T08:07:59Z 2009-11-24T08:38:14Z <p>Hi, we have image files in IIS6.0 server, and wanted to open in browser using ASP.NET2008.</p> <p>My problem is that it always shows the open/saveas dialog, but what I wanted is, it should open the file in the browser directly. we are using ASP.NET2008. It would be great if you provide the sample code.</p> <p>thanks</p> http://stackoverflow.com/questions/1784149/customize-asp-net-ajax-framework 0 Customize ASP.Net Ajax Framework Ryu 2009-11-23T16:09:05Z 2009-11-24T06:06:49Z <p>When I use a script manager in Web Forms web applications, where does ASP.Net load the Ajax framework from? (You know the one that provides the $find, $get functions).</p> <p>I'm looking to replace the built in $find, $get with some extra logic to work around master page name mangling. </p> <p>Anybody know the best way I can accomplish this?</p> <p>I'm thinking I can either edit the source file, or inject some script that reassigns the function to my implementation. Just not sure where the best place would be to inject that code.</p> <p>You can read about my related name mangling master page problem <a href="http://stackoverflow.com/questions/1736867/need-workaround-for-net-master-page-name-mangling">here</a> </p> <p>Thanks</p> http://stackoverflow.com/questions/1786958/asp-net-gridview-edititemrow-controls 0 asp.net gridview edititemrow controls cb 2009-11-24T00:04:19Z 2009-11-24T00:04:19Z <p>In an edititemrow of a gridview in asp.net, how do I set the visibility of a textbox based on the selected index of a dropdownlist (that's in the same edititemrow)?</p> http://stackoverflow.com/questions/1784108/what-will-be-the-event-name-for-checkbox-checked-event-while-using-ajax-trigger-a 1 What will be the event name for checkbox checked event while using ajax trigger asyncronous call ? Shantanu 2009-11-23T16:03:14Z 2009-11-23T16:15:10Z <pre><code>&lt;asp:ScriptManager ID="ScriptManager1" runat="server"/&gt; &lt;asp:UpdatePanel ID="UpdatePanel1" runat="server"&gt; &lt;Triggers&gt; &lt;asp:AsyncPostBackTrigger ControlID="chkStaySignedIn" EventName="Checked" /&gt; &lt;/Triggers&gt; &lt;ContentTemplate&gt; &lt;asp:Label ID="lblPassword" runat="server" Text="Password" AssociatedControlID="txtPassword"/&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> <p><strong>EventName="Checked"</strong> Can anyone provide me a link to complete list of event names while using ajax.</p> http://stackoverflow.com/questions/1722637/asp-net-background-processing-blocks-status-or-ui-feedback 0 ASP.NET background processing blocks status or UI feedback spiderdevil 2009-11-12T14:41:37Z 2009-11-21T02:44:18Z <p>I know this question has been asked many times, but my problem is a little different.</p> <p>I have page which lets user download and upload excel file. During downloading excel, it takes approx 2 mins to generate the file. I have added checkpoints which updates the database with status like (started processing, working on header ...etc). I have done the same thing for upload.</p> <p>I also have a ajax request which checks the database in fixed interval and prints status to user to give feedbacks like (started processing, working on header ...etc).</p> <p>The problem is, i get the feedback only when the process is complete. It looks like the session is blocked during the background process and any other request(ajax) are only completed once the background process is over. ajax makes approx 10 requests within 4 sec intervals.I get the 10 response back only in the end.</p> <p>I have tried two iframes and also frames, one running the ajax and other running the process, Doesn't work. i tried separate browser(Process running in IE, ajax running in FF) and that works (so i now my code works). Can anybody advise? Thanks</p> <p>p.s. My environment is IIS 6, ASP.NET 3.5 with MVC 1.0 browser is IE6.0</p> http://stackoverflow.com/questions/1772303/creating-custom-asp-net-validator 0 Creating custom ASP.NET validator Sergej Andrejev 2009-11-20T18:09:02Z 2009-11-20T18:40:20Z <p>I have created a custom control and a custom validator (extending BaseValidator). On custom control I have set ValidationProperty("Values"). The problem is that validation doesn't work when postback is sent unless I execute Page.Validate(). And when I call Page.Validate() all validators are executed wich is not what I would expect on postback.</p> <p>So the question is how do I create custom validator wich would be executed when control value changes and validates just that control?</p> http://stackoverflow.com/questions/1764628/httpcontext-working-problem-with-ajax 0 Httpcontext working problem with AJAX alice7 2009-11-19T16:31:17Z 2009-11-19T16:31:17Z <p>I am currently using AJAX control and also using httpcontext to redirect the page if the user is not authenticated.if two users are logged in at the same time and one deltes the other one. The other logged in user is getting exception page while clicking on the same AJAX control. So Looks like HttpContext is not working with AJX. I have already used windows.location option, but that doesn't work.</p> <p>Is ther any work around for it. </p> http://stackoverflow.com/questions/1763176/see-asp-net-performce-pageweight-and-time-to-load 0 See ASP.Net Performce: PageWeight and Time to load? Kovu 2009-11-19T13:08:07Z 2009-11-19T16:03:15Z <p>Hi guys,</p> <p>I have a Ajax Postback on my site and the same values get back via PageMethods. I want to see the PageWeight / what exactly is get back, how I can do this?</p> <p>The author of this blog have a nice tool: <a href="http://encosia.com/2007/07/11/why-aspnet-ajax-updatepanels-are-dangerous/" rel="nofollow">http://encosia.com/2007/07/11/why-aspnet-ajax-updatepanels-are-dangerous/</a></p> http://stackoverflow.com/questions/1423222/listview-datapager-on-url-rewritten-pages 0 Listview/Datapager on URL rewritten pages unknown (yahoo) 2009-09-14T18:37:39Z 2009-11-18T16:03:00Z <p>I am using a ListView and DataPager on a page that is url rewritten. It works fine using PostBacks, but if I use the QueryStringField property, the URL's that are generated by the DataPager do not display the "friendly" URL, but the path to the actual page it is on. So if I have the DataPager on a page with a URL of: <a href="http://www.url.com/page.aspx" rel="nofollow">http://www.url.com/page.aspx</a>, but the code is actually on a page called /Templates/PageTemplate.aspx in my project, the URL will look like this:</p> <p>PostBack: <a href="http://www.url.com/page.aspx?pageNumber=1" rel="nofollow">http://www.url.com/page.aspx?pageNumber=1</a> (good)</p> <p>QueryString: <a href="http://www.url.com/Templates/PageTemplate.aspx?pageNumber=1" rel="nofollow">http://www.url.com/Templates/PageTemplate.aspx?pageNumber=1</a> (not good)</p> <p>This is the code I'm using:</p> <pre><code>&lt;asp:DataPager ID="dpPager" runat="server" PagedControlID="lvOutput" QueryStringField="pageNumber"&gt; &lt;Fields&gt; &lt;asp:NumericPagerField NextPageText="Next" PreviousPageText="Previous" /&gt; &lt;/Fields&gt; &lt;/asp:DataPager&gt; &lt;asp:ListView ID="lvOutput" runat="server" OnPagePropertiesChanged="lvOutput_PagePropertiesChanged"&gt; &lt;LayoutTemplate&gt; &lt;asp:PlaceHolder id="itemPlaceholder" runat="server" /&gt; &lt;/LayoutTemplate&gt; &lt;ItemTemplate&gt; &lt;a href="&lt;%# Eval("Link") %&gt;" title="&lt;%# Eval("Title") %&gt;"&gt;&lt;%# Eval("Title") %&gt;&lt;/a&gt; &lt;/ItemTemplate&gt; &lt;EmptyDataTemplate&gt; No Results Found &lt;/EmptyDataTemplate&gt; &lt;/asp:ListView&gt; </code></pre> http://stackoverflow.com/questions/1164494/server-returns-blank-pages-with-asp-net-3-5-on-iis6 0 Server returns blank pages with asp.net 3.5 on IIS6 arbiter 2009-07-22T10:56:30Z 2009-11-17T13:27:00Z <p>I have a problem with site deployed on IIS6 sever. Here the problem, when I first deploy asp.net 3.5 site to server (site is relatively small with 5 pages and 5 libraries in bin), it is works as expected. But after some period of time (~1h) server returns black pages instead of expected content:</p> <pre><code>&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt; &lt;HTML&gt;&lt;HEAD&gt; &lt;META http-equiv=Content-Type content="text/html; charset=utf-8"&gt;&lt;/HEAD&gt; &lt;BODY&gt;&lt;/BODY&gt;&lt;/HTML&gt; </code></pre> <p>First my idea was that my site conflicts with other .net 2.0 sites that hosted in the same server, so I put my site into dedicated pool but without success. First time site works, then no. There is no errors or something like that in iis logs. And I do not use ClearError() method in my site.</p> <p>I have found similar question <a href="http://stackoverflow.com/questions/243457/im-getting-blank-pages-instead-of-error-messages-using-classic-asp-iis6-and-win">here (I’m getting blank pages instead of error messages using classic ASP, IIS6 and WinServer 2003 R2)</a>, but it is for classic ASP.</p> <p>Also several topics at ASP.NET:</p> <ul> <li><a href="http://forums.asp.net/t/1423943.aspx" rel="nofollow">Blank page problem.</a></li> <li><a href="http://forums.asp.net/t/1166864.aspx" rel="nofollow">Blank pages on deployed website</a></li> <li><a href="http://forums.asp.net/p/1432022/3224449.aspx" rel="nofollow">blank page in IIS 7 on Server 2K8</a></li> </ul> <p>But this solutions also not help me. For example when I replace web.config with new one, or replace one of the required assemblies with rebuilded one, I have the same result. First time site works, then - black pages.</p> <p>From what I see, I think that this is kind of configuration problem, but I completely stunned right now, because I've tried everything and now I lack any ideas, so help is very appreciated. </p> http://stackoverflow.com/questions/1742701/iis7-slow-apppool-startup-compared-to-iis6 1 IIS7 slow appPool startup compared to IIS6 DarkViper 2009-11-16T15:01:22Z 2009-11-16T15:06:23Z <p>Hi all,</p> <p>I have recently purchased some new windows server 2008 boxes all running IIS7.</p> <p>I have moved some of my websites across to them, but they seem to be running VERY slow when the app pool first kicks in. All the sites are precompiled (using webdeploy) and in IIS6 they were lightening fast, I thought it might have been just because the web apps are fairly large but I get the same issue on smaller ones too.</p> <p>The app pools are set to Classic mode, as we couldnt get the urlMapping to work in integrated mode.</p> <p>I have seen a few posts about the slowness on the net and one post on here about it and people throwing stupid answers around such as its because your code isnt compiled or its to do with JIT, and both answers are pretty much a word that rhymes with JIT but has an extra letter. I say this because I have run much larger web apps in IIS6 and not experienced this lag.</p> <p>Thanks for anything that you bring to the table on this.</p> <p>edit: just done some timings and it can take up to 28seconds for the first request to return a page...</p> http://stackoverflow.com/questions/1736867/need-workaround-for-net-master-page-name-mangling 1 Need workaround for .Net Master Page Name Mangling Ryu 2009-11-15T07:18:13Z 2009-11-15T10:49:52Z <p>I'm evaluating converting an old frameset based asp.net website to use master pages. The only thing holding me back is the huge amount of work it will take to update every page to deal with name mangling. Most of my problems are with javascript referencing hardcoded Id's.</p> <p>Is there a way for me to tell ASP.Net that for a particular content area that I don't want mangling to occur. Leave it to me deal with name conflicts. </p> <p><strong>Note</strong></p> <p>I'm aware .Net 4.0 has a solution for this as <a href="http://www.west-wind.com/WebLog/posts/54760.aspx" rel="nofollow">detailed here</a>. I want a solution that doesn't involve waiting, needs to be .Net 3.5.</p> <p><strong>Update</strong></p> <p>Any suggestions for opensource alternatives to masterpages that will get me by until .Net 4.0? Or how about a hack job solution to work around the mangling. Thanks</p> http://stackoverflow.com/questions/1726161/imagebutton-not-hitting-codebind-method-but-does-if-replaced-with-linkbutton 0 ImageButton not hitting codebind method, but does if replaced with LinkButton Matt 2009-11-12T23:33:21Z 2009-11-13T03:55:57Z <p>I have an ImageButton being build inside of radgridview columnn. It is defined as follows.</p> <pre><code>&lt;asp:ImageButton ID="ImageButton_DeleteRun" ImageUrl="~/Assets/Images/Misc/delete.png" runat="server" OnClick="QueryDelete" CommandName="QueryDelete" CommandArgument='&lt;%# DataBinder.Eval(Container,"DataItem.QueryGuid") %&gt;' Width="10" Height="10" /&gt; </code></pre> <p>It loads properly. When I click on it, I expect to hit the following codebehind method:</p> <pre><code>protected void QueryDelete(object sender, EventArgs e) { /* A bunch of code*/ } </code></pre> <p>It never gets there. What is more fustrating is that if I replace the ImageButton with</p> <pre><code>&lt;asp:LinkButton ID="ImageButton_DeleteRun" Text="X" runat="server" OnClick="QueryDelete" CommandName="QueryDelete" CommandArgument='&lt;%# DataBinder.Eval(Container,"DataItem.QueryGuid") %&gt;'/&gt; </code></pre> <p>It works perfectly. Is there something wrong with ImageButton? Am I missing something?</p> <p><strong><em>EDIT - New info</em></strong></p> <p>Basically when the image button is rendered, there is no href.</p> <p>Weird--</p> <pre><code>&lt;input type="image" style="height: 10px; width: 10px; border-width: 0px;" src="../Assets/Images/Misc/delete.jpg" id="ctl00_ctl00_ctl00_AllContent_MainContent_MainContent_controlPanelQueryHistory_saved_RadGridQueryHistory_ctl00_ctl04_ImageButton1" name="ctl00$ctl00$ctl00$AllContent$MainContent$MainContent$controlPanelQueryHistory_saved$RadGridQueryHistory$ctl00$ctl04$ImageButton1"/&gt; &lt;a href="javascript:__doPostBack('ctl00$ctl00$ctl00$AllContent$MainContent$MainContent$controlPanelQueryHistory_saved$RadGridQueryHistory$ctl00$ctl04$ImageButton_DeleteRun','')" id="ctl00_ctl00_ctl00_AllContent_MainContent_MainContent_controlPanelQueryHistory_saved_RadGridQueryHistory_ctl00_ctl04_ImageButton_DeleteRun"&gt;delete&lt;/a&gt; </code></pre> http://stackoverflow.com/questions/1725263/asp-net-security-wrap-requests-in-ihttphandler-or-use-roleprovider 0 ASP.Net Security: Wrap Requests in IHttpHandler or use RoleProvider? Jason M 2009-11-12T20:47:27Z 2009-11-13T02:37:52Z <p>I'm working with ASP.Net MVC as well as DynamicData and I need to add role-based security.</p> <p>Should I implement this via:</p> <ul> <li>IHttpHandler with custom actions that check if the user is authorized? </li> <li>Or should I be using a RoleProvider? </li> <li>Or perhaps some combination of the two?</li> </ul> <p>If the RoleProvider is a viable option, when would I ever need to extend the abstract RoleProvider base class vs. using the ones included. MSDN <a href="http://msdn.microsoft.com/en-us/library/system.web.security.roleprovider.aspx" rel="nofollow">says</a> you would only extend this class if "You need to store role information in a data source that is not supported by the role providers included with the .NET Framework." Please expound on this. Explain how this would work under circumstances where I <em>don't</em> need to extend the base class but instead use the included role providers. What data sources are supported by the included providers?</p> <p>Also, would your answer to these questions be different for ASP.Net MVC vs. ASP.Net DynamicData?</p> http://stackoverflow.com/questions/1716549/custom-phone-numbers-control 0 Custom phone numbers control Eric 2009-11-11T16:51:48Z 2009-11-12T23:59:11Z <p>I have a database that stores an arbitrary number of phone numbers. There are a few pages that (should) allow admins to change these numbers and add them.</p> <p>I plan to create a custom control that will:</p> <ul> <li>Show all existing numbers</li> <li>Provide an edit button</li> <li>In Edit mode, will show an add button</li> <li>Have an add button that adds the requisite fields in a way that does not cause a postback.</li> <li>Provide a save button (of course)</li> </ul> <p>These seems like a complicated task. I've done a bit of research, but haven't found any ready-made solutions. Is there anything I should have spotted or should know before I go about writing this from scratch?</p> http://stackoverflow.com/questions/1719137/using-extjs-with-asp-net-webforms-or-mvc 0 Using ExtJS with ASP.NET, Webforms or MVC? TigrouMeow 2009-11-12T00:45:46Z 2009-11-12T20:15:54Z <p>Hello,</p> <p>For a scenario using 0 ASP.NET controls at all but rather an 100% extJS interface, what would be the advantages of using ASP.NET MVC or ASP.NET WebForms? And the disadvantages? Is there a OBVIOUS way to do it properly?</p> <p>I would love to have feedback's on your experiences.</p> <p>Thank you!</p> http://stackoverflow.com/questions/1718445/net-3-5-iis7-5-website-can-not-be-debugged-specified-cast-is-not-valid 0 .net 3.5 IIS7.5 website can not be debugged - "Specified cast is not valid." Jeff D 2009-11-11T22:16:20Z 2009-11-11T22:21:14Z <p>I'm trying to migrate an IIS6 site to 7.5, and in the IIS Manager's status section, I see "Unknown:Specified cast is not valid. (http). I've configured a base site that's just binding on port 80 to http. This doesn't stop the site from running. It does stop me from debugging though. When I hit F5 in VS, I get: "Unable to start debugging on the web server. Specified cast is not valid.". Digging into the EventViewer, I see a number of Informational messages that say: </p> <p>Counter 0 of instance({some guid},[some number]_[AppPoolName], 0) could not be modified. Error: "The parameter is incorrect."</p> <p>Other versions of the event list different Counter #'s. The user on all of these messages is IIS APPPOOL[AppPoolName] and the source is Diagnosis-PCW. Event ID: 16</p> <p>That's the info I think is relevant. And now here's everything else that might be: I have VS 2010 Beta 2 installed.</p> <p>Win 7 x64, the site has a number of custom modules and handlers we've written, one of which was our own MVC implementation (MS's was not ready at the time). I don't think this is the issue, because I at one point had a standard MVC site on there that was giving me the same error.</p> <p>Thoughts? </p> http://stackoverflow.com/questions/1717431/what-is-the-difference-of-webparts-and-websites 1 What is the difference of webparts and websites? Sikender 2009-11-11T19:16:36Z 2009-11-11T19:25:51Z <p>i dont know the actual use of webparts , so. better to know difference with webpage ?</p> <p>any answer is appreriate..</p> http://stackoverflow.com/questions/1332898/asp-net-applications-requests-sec-suddenly-jumps-to-a-value-of-about-70-million 0 ASP.NET Applications Requests/Sec suddenly jumps to a value of about 70 million/sec. on 8 core web servers. Subhrajit Roy 2009-08-26T07:19:23Z 2009-11-11T18:47:01Z <p>We are doing performance testing of an ASP.NET web application with VSTS 2008. We start with 2000 users and slowly ramp up to 5000 users (reaches this user load at around 2.5 hours after the tests start, after this we stay at this user load). The total test duration is of about 6 hours</p> <p>During these runs we have found that the counter Requests/Sec (under category ASP.NET applications) suddenly spikes to a values of 36-72 millions !!!. This keeps on happening intermittently i.e we see this issue once in every 3 performance runs that we give on the same application. In our testing environment we have 4 web servers and interestingly enough we have found that this issue occurs only in the 8 core web servers.</p> <p>Summarizing ...</p> <p>Issue :</p> <p>The counter Requests/Sec (under category ASP.NET Applications) suddenly jumps to a value of about 70 million/sec. on 8 core web servers.</p> <p>This results in an increase in SQL server connections opened by the application. Response time goes for a toss. Error rates also show similar behaviour.</p> <p>However the counter ISAPI Extention Requests/sec does not show any abnormal increase. The graph of this counter almost overlaps with that of counter Requests/Sec till the time of the appearance of the spike.When the spike appears , this counter (ISAPI Extention Requests/sec) actually shows a drop.</p> <p>Test Settings :</p> <p>Performance test run with Visual Studio Team System 2008. Soak test run for 6 hours. Maximum user load 5000 users. This is load is attained at about 2.5 hours into the run and mainted for remaining duration.(i.e for around 3.5 more hrs) </p> <p>This issue is reproducible though happens intermittently. (i.e occurs one in three or four runs)</p> <p>Test Environment :</p> <p>Web site deployed on 4 Web Servers (Windows Server 2003). Of these 2 are 4 core machines and the remaining 2 are 8 core ones. .NET Framework 3.5 SP1 installed on all 4 web servers. Application hosted on IIS 6.0 run in Worker process isolation mode.</p> http://stackoverflow.com/questions/1716988/what-can-cause-asp-net-to-stop-responding 1 what can cause asp.net to stop responding kolosy 2009-11-11T17:58:43Z 2009-11-11T18:32:11Z <p>we have an asp.net application, that makes heavy use of REST/json services through httpwebrequest and heavy use of the web cache. seemingly sporadically, the worker process simply stops responding. the browser sits expecting a response and never gets one. only an app pool restart seems to remedy the problem. there are no unhandled exceptions or any other anomalies that we have noticed. cpu and memory loads are low (&lt;10% cpu util, >80% free memory)</p> <p>the only possible hint that we have had is that we saw 'deadlock detected' messages in the event log at one point, but not consistently. additionally, we've eliminated what we think to be the only possible cause of such contention (executing multiple concurrent httpwebrequests via begin/end request).</p> <p>any ideas?</p> <p>win 03 server/data center edition (on amazon ec2) asp.net 3.5</p> http://stackoverflow.com/questions/1715099/microsoft-server-2003-with-net-3-5 1 Microsoft Server 2003 with .NET 3.5 ApoY2k 2009-11-11T13:13:02Z 2009-11-11T13:14:14Z <p>As a follow-up question <a href="http://stackoverflow.com/questions/1713948/managing-multiple-net-frameworks-on-a-webserver">on this</a>;</p> <p>The server running is a Microsoft Server 2003. Are there any possible (bad) outcomes when trying to install .NET 3.5 on such a server, that only has 1.1 installed and running in order to split up web-applications based on 1.1 and 3.5?</p> http://stackoverflow.com/questions/1714798/what-might-be-the-reason-of-propertychanged-is-null-after-saving-entity-with-subm 0 What might be the reason of PropertyChanged is null after saving Entity with SubmitChanges() ? Barbaros Alp 2009-11-11T12:10:09Z 2009-11-11T12:10:09Z <p>Hi,</p> <p>After saving an entity to database(assume that i am creating a new Location Entity "Aydın" on database)</p> <p>Then i check the database physically and can see the "Aydın" added to Location table.</p> <p>and then i try to add a Real Estate, there is a dropdownlist for locations when adding real estate. But just added "Aydın" is not filled into dropdownlist.</p> <p>When i get into debug mode i can see that "Aydın" is there but it is not binded to dropdownlist.</p> <p><img src="http://www.barbarosalp.com/questions/propertychanged.png" alt="alt text"></p> <p>Could it be the reason that propertychanged is null ?</p> <p>Note: when i call ToList() on the "all", "Aydın" gets binded to DropDownList</p> http://stackoverflow.com/questions/910518/silverlight-access-client-desktop-display-properties 1 Silverlight: Access client desktop- Display properties Blessy Antony 2009-05-26T12:52:50Z 2009-11-10T15:28:14Z <p>Hi,</p> <p>I want to access the display properties of the client desktop in silverlight application and modify the application layout according 2 the ones set on client machine. When we right click on desktop and choose properties we get display properties dialog. i want to access appearance and theme properties from this. i hv to retrieve the appearance properties like font, theme etc and apply them in my silverlight application. I am also not sure whether this can be done in a normal web application.</p> <p>Tried to google it but could find anything except code for resizing. But I want to access not only the screen width and height but the appearance settings also.</p> <p>Any help would be appreciated.</p> <p>Thanks :)</p> http://stackoverflow.com/questions/1708649/httpcookies-requiressl-set-to-true-on-http-does-not-cause-any-errors 0 httpCookies requireSSL set to true on http does not cause any errors Jon 2009-11-10T15:08:11Z 2009-11-10T15:26:47Z <p>I have set the httpCookies requireSSL value to true in web.config and run the web app on my local machine without https running. All runs fine apart from when I try and read the Request.Cookie. </p> <p>Its not there. I assume because I don't have SSL enabled it never created it but there was no warning that it failed. I only know when I try to read a cookie value.</p> <p>Should it not warn you?</p>