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 >>



Detect in C# the name of the ASP.NET user.   (9 messages)   Date: Thu, 9 Aug 2007 14:02:03 -0700
I am making a ASP.NET application that connects to a database. I want to distribute this to my customers that may have different Windows OS, so my installer must handle different windows versions. The installer makes ...

ajax pagemethods   (3 messages)   Date: Thu, 9 Aug 2007 13:54:03 -0700
I am trying to get AJAX pagemethods working. Are there some good examples in asp.net VB Thank you -- Jerry ...

form submission that triggers email notification   (2 messages)   Date: Thu, 09 Aug 2007 20:46:53 -0000
Hi, I just got a requirement from my HR department to automate their form submission process and integrate it into the Intranet project that I had just completed Phase 1 of. Because of the short time frame that I've been ...

Right-to-Left in textbox   (2 messages)   Date: Thu, 09 Aug 2007 20:21:33 GMT
I want to display an accumulator as I punch numeric digits into it, but there is no RightToLeft property in a textbox. Is there a way? Ray Reeves ...

impersonate web service process account - ASPNET   (1 messages)   Date: Thu, 09 Aug 2007 13:20:58 -0700
Hello all, I have a web service in vb.net that is trying to call a VB6 com component. The VB6 app works off active directory. When I make a call from my web service I get an error like this: System.Runtime.InteropServices ...

Help with Regular Expression   (4 messages)   Date: Thu, 09 Aug 2007 19:49:39 -0000
I am working on a regular expression validation for my search page. What I have so far works for most cases, but I would like to fine tune it some. I am new to regular expressions, and I do not have the time to read up some ...

Menu User Control & Postback   (1 messages)   Date: Thu, 9 Aug 2007 15:32:51 -0400
Hello All, I have UserControl that consists of a Menu control. When a user selects an item in the Menu I set a Public variable in the MenuItemClick event. My problem is that when the main webpage posts back, the MenuItemClick ...

not exist in the current context   (1 messages)   Date: Thu, 9 Aug 2007 16:26:51 -0300
I have a lot of combos on form, but some of them when I do some reference on the code, the VS 2005 blocks me with this error: Error 1 The name 'cboProduto' does not exist in the current context C:\Documents and Settings\SUPORTE\Meus ...

Help getting a lock to work properly   (2 messages)   Date: Thu, 09 Aug 2007 19:20:09 -0000
I have had my head spinning for two days on this one. I have what i thought was a simple enough locking issue, but havnt been able to get it working. Here is my setup: App Server is a .net 2.0 dB is Sql Server 2005 I ...

Adding child elements to custom DropDownList   (1 messages)   Date: Thu, 9 Aug 2007 11:50:03 -0700
Hi, I have a custom control inherited from DropDownList. In Visual Studio, I can access my added properties using Intellisense just fine... <ctl:MyDropDown id="ctl1" runat="server" CurrentColor="..." /> However, ...

Manipulating style at runtime?   (3 messages)   Date: Thu, 9 Aug 2007 13:59:39 -0400
Hi all, I'm trying to manipulate a calendar header's style programmatically at runtime. This works: <asp:Calendar id="clndr" [...]> Page_Load() { clndr.TitleStyle.BackColor = System.Drawing.Color.FromArgb( ...

ColGroup for a table element gets lost when the table element is made visible/invisible   (6 messages)   Date: Thu, 9 Aug 2007 12:53:50 -0500
I am losing my colgroup html element of a table that i toggle back and forth of being visible=true/false. is there any workaround since the rendered html doesn't contain it even though it has not been explicitely been made invisible ...

AppendDataBoundItems   (1 messages)   Date: Thu, 09 Aug 2007 10:48:27 -0700
I'm getting the error: 'DropDownList6' has a SelectedValue which is invalid because it does not exist in the list of items. Parameter name: value I'm using a formview. My EditItemView page has a dropdown that is not in ...

Doubt creating a class/function?   (6 messages)   Date: Thu, 9 Aug 2007 14:36:08 -0300
Hi, I have a lot of this piece of code (C# asp.net 2.0 - VS 2005) to fill a lot of combos: SqlConnection mycn; SqlDataAdapter myda; DataSet ds; mycn = new SqlConnection(connectionString); myda = new SqlDataAdapter("Select ...

FormView - Paging   (1 messages)   Date: Thu, 09 Aug 2007 17:43:10 +0100
I have programatically created a DataSet (mdsShippers) that consists of a single DataTable - the Shippers table from Northwind. I have then added a FormView control to my WebForm and then two text-boxes in the ItemTemplate ...

UserNameRequiredErrorMessage question   (4 messages)   Date: Thu, 9 Aug 2007 18:26:13 +0200
Hi, I use the login control and I set different messages for the UserNameRequiredErrorMessage and PasswordRequiredErrorMessage but I still have an * when the fields are empty. Any idea to fix that ? Regards, Stan ...

Can't get started   (4 messages)   Date: Thu, 09 Aug 2007 16:06:55 GMT
I have a dozen buttons on the form with typical HTML code: <asp: RadioButton id = "RadioButton2" ... runat = "server" ... > </asp:RadioButton> It compiles, but when run I get: Control 'RadioButton2' of type 'RadioButton' ...

Adding columns to a new DataTable   (5 messages)   Date: Thu, 9 Aug 2007 11:46:06 -0400
I have a new DataTable that I want to add columns to. I have found that you need to do this using the DataColumnCollection class, but I am still having trouble doing this. Can somebody give me an example? Thanks. -- Nathan ...

ASP.NET Design and Development Best Practices?   (3 messages)   Date: Thu, 9 Aug 2007 08:44:02 -0700
Greetings! Our existing high-traffic internationalized websites were built with "classic" ASP. We are currently planning to migrate the sites to ASP.NET 2.0 (maybe 3.0?). Our current "classic" ASP sites use XML/XSL ...

Forms Authentication / Role based security   (2 messages)   Date: Thu, 09 Aug 2007 08:40:08 -0700
Is it possible to do role based security using AD groups in conjunction with Forms authentication? If so, how? I've seen people talk about using AzMan to solve this problem...but is there an easier way? Right now we have ...


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