Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008


all groups > asp.net > august 2007 > threads for friday august 3

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

Can overwrite via FTP an ASP file of precompiled application ?
Posted by pamela fluente at 8/3/2007 11:37:58 PM
I have created and published a precompiled application. If I replace an ASP file, e.g. Default.ASP, with a new copy, by sending it via FTP, do I do something WRONG? Do I spoil the precompiled application or I can replace any file as I wish? Can I also just drag all the application files t...more >>

styling asp.net 2.0 menu control
Posted by madhur at 8/3/2007 9:11:17 PM
I am trying to apply the hover style to the Menu Control. Here is the code snippet <SharePoint:AspMenu id="QuickLaunchMenu" DataSourceId="QuickLaunchSiteMap" runat="server" Orientation="Vertical" StaticDisplayLevels="2" ItemWrap="true" MaximumDynamicDisplayLevels="0" StaticSubMenuIndent="0" ...more >>

Very annoying error: Access to the path is denied. ASP.NET is not authorized to access the requested resource. Consider granting access rights to the
Posted by Jay at 8/3/2007 8:04:11 PM
My IDE works fine but when I make a plain old HTML change; a change that should NOT require recompiling, and hit the save icon, I get the following error: { Access to the path is denied. ASP.NET is not authorized to access the requested resource. Consider granting access rights to the re...more >>

RadioButtonList
Posted by dancer at 8/3/2007 5:48:01 PM
How can I get the buttons to appear on the same line as the question? No matter what I do buttons appear on the NEXT line. Are you at least 18 years of age? <asp:RadioButtonList id="Eighteen" RepeatDirection="horizontal" Runat=server> <asp:ListItem><fo...more >>

NavigateURL/DataNavigateURLFormatString and Session Variable
Posted by tshad at 8/3/2007 3:51:26 PM
I gave up on the Page.ResolveURL and just got the Current Path from the Request.ServerVariables("Path_Info") and put it in a session variable. I thought I could use a session variable to pass the path in since the other won't work. But I am getting the same type of error. <asp:Hy...more >>

Different renderings of <br/> and <br></br> in IE6
Posted by Nathan Sokalski at 8/3/2007 2:13:59 PM
Something that I recently noticed in IE6 (I don't know whether it is true for other browsers or versions of IE) is that it renders <br/> and <br></br> differently. With the <br/> version, which is what most people use when they write static code (some people use <br>, but with xhtml you are re...more >>

Server Application Unavailable
Posted by Bolwerk at 8/3/2007 2:03:11 PM
Hello I got a client who uses what appears to be ASP.NET 2.0. I come from a UNIX/PHP/Apache background, and I'm not too familiar with ASP.NET. He had some permissions problem a few weeks ago that I managed to fix. Now, he's getting this error (similar to the one a few weeks ago): Serve...more >>

Web.config: connection string or connection key?
Posted by rlueneberg NO[at]SPAM gmail.com at 8/3/2007 1:55:17 PM
Can someone explain the difference of using these functions below? And what is the advantage/disadvantage of each? static public SqlConnection GetConnectionString(string ConnectionStringName) { SqlConnection myConnection = new SqlConnection(ConfigurationManager.Co...more >>



Repeater Question
Posted by Mick Walker at 8/3/2007 1:40:38 PM
Hi All, I am using a repeater to display messages to users within my website. I get the messages by binding a SqlDataSource to the repeater, and accessing them directly from the database. However, in my messages database, I only store the GUID of the user whom sent the message. Currentl...more >>

How to transfer Excel data to a List<> object? C#
Posted by Steve Kershaw at 8/3/2007 1:37:56 PM
Hi, I have a bunch of data in an Excel spreadsheet that I need to get into my C# code somehow. How is this done? Thanks Steve ...more >>

remove new line characters
Posted by Steve at 8/3/2007 1:09:31 PM
I'm getting a string such as name1\r\nname2 how can I remove the \r\n and just have the string as=20 name1 name2?...more >>

Why Does Page.IsPostBack Fire More Than Once When Using Firefox?
Posted by Joey at 8/3/2007 1:09:03 PM
This is causing us a lot of pain right now. Does anyone know why this happens and, more importantly, how to fix it? TIA JP ...more >>

Problem when refreshing Parent Window
Posted by mavrick101 at 8/3/2007 1:04:01 PM
Hi, I have a page which has some custom controls. The page works fine and doesn't break on any number of refreshes. There is button on the page, that starts a new child window. After doing any thing or nothing, when the user clicks the 'close' button I want to refresh the parent window. ...more >>

problem with .aspx code
Posted by slinky at 8/3/2007 12:45:19 PM
I have a form that has 6 Textboxes to enter data and a button to write the data to my Access database which resides on the same server as my website. It's an .aspx page. I find no errors except the 3rd and 4th lines throw errors. I got this basic example from a book (Written by Mike Gunderloy f...more >>

Help: Memory Management For My asp.net Managed Code!
Posted by Joey at 8/3/2007 12:13:22 PM
VS2005 asp.net 2.0 C# Developing with File System/Cassini instead of IIS (publish to IIS every so often) Hello guys, I have a web app where I am using static variables on many pages to maintain values between postbacks. I am also using several static properties and methods on a class wit...more >>

Finding Controls in User Control
Posted by Fred Chateau at 8/3/2007 12:00:36 PM
I am trying to reference a server control in a user control, from the containing page. Is there a way to do that? I have tried "UserControl1.FindControl("ControlName")" but I get a null reference. -- Regards, Fred Chateau fchateauAtComcastDotNet ...more >>

Detecting Browser details
Posted by Iain at 8/3/2007 10:28:53 AM
Hi All Hope someone can help. Using Delphi Borland Developer 2006, a C# Internet project. I am attempting to detect the Browserm version etc during the Page Load event but cannot work out how. Basicall I want to get the following type (see the script at the bottom of the post ) of inf...more >>

XmlDocument fails (throws) very occasionally.
Posted by Dave at 8/3/2007 10:14:50 AM
Hi, I have a very bizarre intermittent problem that occurs with some ASP.NET 1.1 (C#) code I inherited. I'll try to state the problem sucintly; if more detail is needed please ask! The code is in a WebApplication. The web application is configured in IIS 6.0 to run under Application Pools/De...more >>

Style sheets in a user control
Posted by tshad at 8/3/2007 10:05:59 AM
External and Internal CSS Style sheets are supposed to only be in the Head section of a page. What about User Controls where there is no head section but you want to be able to load a special page for that control? Where does that go (or does it matter)? Thanks, Tom ...more >>

XhtmlConformance in web.config
Posted by Arne at 8/3/2007 9:52:03 AM
I have <xhtmlConformance mode="legacy" /> in my web.config. That works fine on my computer but not on an other developer's computer. We get an errormessage in Visual Studio 2005. Can I just delete this line from web.config? -- Arne Garvander Certified Geek Professional Data Dude...more >>

Ajax Best Practices
Posted by Uriah Piddle at 8/3/2007 9:47:15 AM
Hi Gang, If you incorporate Ajax into your web app, what is the best way to handle browsers that do not support Ajax or have Java disabled? Thanks. Steve ...more >>

Use IIS web Server Vs. Visual Studio Development Server with Port
Posted by Lit at 8/3/2007 9:44:33 AM
Hi, My web app works when it is in the "Visual Studio Development Server with a Port Number", But It does not work when I use " Use IIS web Server" What Gives? Permissions? What to look for? I tried to create a Virtual Directory from IIS as Usual making sure I am using .NET 2.0 ...more >>

asp.net 2.0 to AJAX
Posted by Ganesh at 8/3/2007 9:38:05 AM
Hi There I've already web pages written in asp.net 2.0, the features of ajax is really impressive. I would like to use some on my asp.net 2.0 web pages. How much work I've to do for the conversion Thanks Ganesh ...more >>

Running multiple web apps in subdomains
Posted by vizualz NO[at]SPAM hotmail.com at 8/3/2007 9:21:56 AM
Hi, I have a .net running web app at www.someplace.com. on a shared server. I now need a testing site using the same codebase. Is it possible to run the same web app but off a subdomain? i.e. testsite.somplace.com? Thanks in advance, Pat ...more >>

Compilation error - Parameterized update
Posted by dancer at 8/3/2007 9:11:26 AM
Using Asp.net 1.1 Can somebody tell me why the code following gives this error message: Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appr...more >>

Thread being aborted error message.
Posted by jediknight at 8/3/2007 6:58:18 AM
Having recently been asked to look into some bugs in one of our old web systems, I keep getting an error message in some try...catch statements that I've put in. Error message is Thread was being aborted This is raised whenever a Response.Redirect was called. ...more >>

Video streamlining control?
Posted by msch-prv NO[at]SPAM bluewin.ch at 8/3/2007 2:27:13 AM
Hi, I would like to add video streamlining on a web page (small education site) to enable registered users to converse with the instructor. Questions: 1. Is this possible? 2. I thought of subscribing to a media streamlining host. Does that make technical/ economical sense? What are the technica...more >>

background image on aspx page problem
Posted by Ross at 8/3/2007 1:06:00 AM
Hi I have a jpeg image as a background to a aspx page. Unfortunately, it is too obvious, so I was wondering if there is any way of making that image dimmed so it is much easier to view the controls & associated data? Any help would be muchly appreciated. Kind regards Ross Peter...more >>

asp.net ajax end user need .net frame work
Posted by Ganesh at 8/3/2007 12:05:44 AM
Hi There, Just a basic question, if i develop my site with asp.net 2.0 and ajax, end user do they need any .net framework on their computer. Thanks Ganapathi ...more >>

DataList ignores Styles when WebControlAdapter applies
Posted by Sebastian Paul at 8/3/2007 12:00:00 AM
Hi, I registered a WebControlAdapter for any WebControl, that removes all ID attributes (I actually do not need them). Everything works as expected, but the DataList ignores any styles (ItemStyle, SelectedItemStyle etc.). The DataList works as usual, i.e. it uses the SelectedItemTemplate for th...more >>

Change background of aspx that uses a MasterPage
Posted by Joe Kovac at 8/3/2007 12:00:00 AM
Hi! I have a MasterPage with white background. Within my aspx page I want to change this color using code behind. How can I achieve this easily? Thanks Joe...more >>


DevelopmentNow Blog