DotNetNewsgroup.com  
web access to complete list of Microsoft.NET newsgroups
   home   |   control panel login   |   archive  |  
 
  carried group
academic
adonet
aspnet
aspnet.announcements
aspnet.buildingcontrols
aspnet.caching
aspnet.datagridcontrol
aspnet.mobile
aspnet.security
aspnet.webcontrols
aspnet.webservices
assignment_manager
datatools
dotnet.distributed_apps
dotnet.general
dotnet.myservices
dotnet.nternationalization
dotnet.scripting
dotnet.security
dotnet.vjsharp
dotnet.vsa
dotnet.xml
dotnetfaqs
framework
framework.clr
framework.compactframework
framework.component_services
framework.controls
framework.databinding
framework.drawing
framework.enhancements
framework.interop
framework.odbcnet
framework.performance
framework.remoting
framework.sdk
framework.setup
framework.webservices
framework.windowsforms
framework.wmi
frwk.windowsforms.designtime
lang.csharp
lang.jscript
lang.vb
lang.vb.controls
lang.vb.data
lang.vb.upgrade
lang.vc
lang.vc.libraries
  
 
Current group : microsoft.public.dotnet.framework.aspnet     33479 threads
page nr.: << back    20      21      22      23      24      25      26      27      28      29      30      31      32      33      34      35      36      37      38      39      40    next >>



problem with .aspx code   (5 messages)   Date: Fri, 03 Aug 2007 12:45:19 -0700
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 ...

Help: Memory Management For My asp.net Managed Code!   (8 messages)   Date: Fri, 03 Aug 2007 12:13:22 -0700
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 ...

Different renderings of <br/> and <br></br> in IE6   (1 messages)   Date: Fri, 3 Aug 2007 14:13:59 -0400
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 ...

Server Application Unavailable   (8 messages)   Date: Fri, 03 Aug 2007 14:03:11 -0400
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 ...

XmlDocument fails (throws) very occasionally.   (2 messages)   Date: Fri, 03 Aug 2007 10:14:50 -0700
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 ...

remove new line characters   (7 messages)   Date: Fri, 3 Aug 2007 13:09:31 -0400
I'm getting a string such as name1\r\nname2 how can I remove the \r\n and just have the string as name1 name2? ...

Style sheets in a user control   (2 messages)   Date: Fri, 3 Aug 2007 10:05:59 -0700
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 ...

Finding Controls in User Control   (6 messages)   Date: Fri, 3 Aug 2007 12:00:36 -0500
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 ...

XhtmlConformance in web.config   (2 messages)   Date: Fri, 3 Aug 2007 09:52:03 -0700
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 ...

Page render performance question   (1 messages)   Date: Fri, 3 Aug 2007 12:52:47 -0400
We are seeing the following rough stats, any input would be greatly appreciated. On a new box, running iis 5, asp.net 2, basic web app, a page to do a report, which brings back about 2 meg of data in the response. (i ...

Use IIS web Server Vs. Visual Studio Development Server with Port   (2 messages)   Date: Fri, 3 Aug 2007 09:44:33 -0700
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 ...

asp.net 2.0 to AJAX   (5 messages)   Date: Fri, 03 Aug 2007 09:38:05 -0700
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 ...

Running multiple web apps in subdomains   (2 messages)   Date: Fri, 03 Aug 2007 09:21:56 -0700
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 ...

FormView programmatic binding for update, insert   (1 messages)   Date: Fri, 03 Aug 2007 11:46:17 -0400
I prefer to have more control over the plumbing in my apps, but the documentation for asp.net 2 assumes an "ObjectdataStore" approach. I have the usual data access and logic layers. Retrieving both a list and one record ...

Ajax Best Practices   (3 messages)   Date: Fri, 3 Aug 2007 09:47:15 -0500
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 ...

Thread being aborted error message.   (4 messages)   Date: Fri, 03 Aug 2007 06:58:18 -0700
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 ...

Web.config: connection string or connection key?   (4 messages)   Date: Fri, 03 Aug 2007 13:55:17 -0000
Can someone explain the difference of using these functions below? And what is the advantage/disadvantage of each? static public SqlConnection GetConnectionString(string ConnectionStringName) { ...

Compilation error - Parameterized update   (6 messages)   Date: Fri, 3 Aug 2007 09:11:26 -0400
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 ...

FormView problems   (1 messages)   Date: Fri, 03 Aug 2007 12:47:16 -0000
Hello, I am having problems modifying controls that are in a FormView. What I am trying to do with the code below is show a TextBox and a Calendar in a FormView. When the user changes the selected date in the calendar the ...

Repeater Question   (2 messages)   Date: Fri, 03 Aug 2007 13:40:38 +0100
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 ...


page nr.: << back    20      21      22      23      24      25      26      27      28      29      30      31      32      33      34      35      36      37      38      39      40    next >>
Google
 
Web dotnetnewsgroup.com


COPYRIGHT ?2005, EUROFRONT WORLDWIDE LTD., ALL RIGHT RESERVE  |   Contact us