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    40      41      42      43      44      45      46   



For certain directories, protecting files from direct access that match a naming pattern OR mediating http access through my app   (2 messages)   Date: Mon, 30 Jul 2007 17:49:13 -0700
Short version: I want to know how in ASP.NET I could bar direct http access to some files in a directory that match a pattern, but not others. An alternate solution would be to bar all direct http access to files and require ...

Love Taboo Forum Now Open to the Public! 5% Off   (1 messages)   Date: Mon, 30 Jul 2007 17:40:35 -0700
Hi Folks, Is anyone sick of the junk bb's online? I found a new bb that is amazing to say the least. They have all kinds of adult topics that you can post to once you register. They give you all kinds of posting options ...

controls are all null at page_load()   (3 messages)   Date: Mon, 30 Jul 2007 16:36:00 -0700
using VS2005 My masterpage has two panels and two hyperlinks. The initial content aspx page is blank. The page_load event of the masterpage hides one of the panels based on SESSION variables. When I press one particular ...

Unable to FindControl in a Dynamically loaded control   (4 messages)   Date: Mon, 30 Jul 2007 16:22:22 -0700
I am trying to access a control (PlaceHolder Control) that is in a dynamically loaded control. I know it is there as I can see it in my trace. It may be that it isn't actually loaded yet - but not sure. In the following ...

Where Does AJAX Go in VWD 2008?   (1 messages)   Date: Mon, 30 Jul 2007 16:02:01 -0700
I installed VWD 2008 Beta 2 and then installed AJA v1.0. However, none of the AJAX project templates appear in the New Project dialog of VWD, nor can I get them to show up there by putting them in appropriate directories ...

Multiple Placeholders or One to load controls   (7 messages)   Date: Mon, 30 Jul 2007 15:19:57 -0700
I am using asp.net 1.1 and am creating my pages with different looks and using controls for each part of the page (top, bottom, navigation etc) The way I have it set up is the following where I have 4 different controls ...

ObjectDataSource and DropDownList   (8 messages)   Date: Mon, 30 Jul 2007 18:06:58 -0400
I have a asp.net page that has a DDL tied to a ObjectDataSource. I want the DDL to display a blank in the list when the page is first displayed and let the user select the entry they want. I have tried CategoryList ...

page_load fires with ajax call   (6 messages)   Date: Mon, 30 Jul 2007 20:38:56 GMT
i've got a script that takes about 10 seconds to complete with page_load. for that reason, i turned to ajax for additional dynamic updates i needed to do on the page without having to force the user through that 10 second ...

ASP.Net ReportingServices & CPU Usage   (12 messages)   Date: Mon, 30 Jul 2007 16:23:45 -0400
I have a report (stored procedure) that I have set up in SQL 2005 Reporting Services. In a web app, I put a Reportviewer control on the page, and call the report. After a lot of trial & error, it appears to work. Sort ...

DetailView   (2 messages)   Date: Mon, 30 Jul 2007 15:18:45 -0500
I am having a problem cahnging default mode in the code.What i am trying to do is: on page load event: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load If Page.IsPostBack Then itemview ...

problem with dropdownlists in gridview   (3 messages)   Date: Mon, 30 Jul 2007 22:05:44 +0200
Hi, There are two dropdownlists in two EditItemTemplates of a gridview. They are populated programmatically (see code below). This works. But now, the selected value of the first ddl (dropdownlist1) takes always the ...

Globalization   (2 messages)   Date: Mon, 30 Jul 2007 12:48:12 -0700
Hi, I'm working on a multilingual CMS. I have a number of controls and labels that are generated based on the number of languages the CMS supports (ie. for the section management portion of the app, we could have dynamically ...

Getting a "normal" HTML form to work inside the server-side form tag   (3 messages)   Date: Mon, 30 Jul 2007 19:46:09 -0000
I've run into this problem on many occasions -- I need to have the server side form tag on my Web form, of course. But I also need to have *another* form on the page that posts to a URL totally out of my control. I can ...

ObjectDataSource and Caching   (1 messages)   Date: Mon, 30 Jul 2007 18:57:46 -0000
I am using the ObjectDataSource to bind to a DropDownList. I have enabled the cache on the ObjectDataSource since the data it is selecting will most likely not chage in the near future (countries). Is there a way to access ...

Directory permission for disk I/O from web service   (3 messages)   Date: Mon, 30 Jul 2007 14:47:57 -0400
Hello. I have an ASP.Net 2.0 web service on Win2003 server that needs to write to a shared directory on the same machine. The web.config file is using "None" as the authentication mode. I am referencing the directory ...

Where to put Form tag   (5 messages)   Date: Mon, 30 Jul 2007 11:48:44 -0700
I have pages that are identical except for the middle of the page to the right where I do all my work. <html> <head> </head> <body> <table> <tr> <td> <table> <tr> <td> ...

asp labels -- how to avoid a databind() call?   (3 messages)   Date: Mon, 30 Jul 2007 11:26:41 -0700
Hi everybody, I have a question about asp.net's labels and the DataBind method. I have a method in a code-behind page (this is VisualStudio 2003 btw) that (simplified) looks like this: public string GetName() { ...

Loading Controls dynamically   (3 messages)   Date: Mon, 30 Jul 2007 11:21:19 -0700
I am using asp.net 1.1 and am creating my pages with different looks where the middle right is where my actual changing content will go. It seems to work pretty well except for some strange behavior and this seems to ...

Access denied javascript error   (2 messages)   Date: Mon, 30 Jul 2007 09:57:30 -0700
I'm getting an access denied error from a line of Javascript which I think comes from some of the ajax plumbing. I debug it in visual studio and the code is in the ScriptResource.axd file of my application. I've included ...

AJAX, Intercept Submit before it happens   (8 messages)   Date: Mon, 30 Jul 2007 09:44:10 -0700
Hi, I have an update panel with a Submit Button. ( AJAXified ) Is there a way, good way, of Intercepting a submit before it happens? I would like to do something in JavaScript before proceeding with the submit process ...


page nr.: << back    40      41      42      43      44      45      46   
Google
 
Web dotnetnewsgroup.com


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