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 > september 2006 > threads for saturday september 16

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

DataTable.Expressions really not working
Posted by Tarun Mistry at 9/16/2006 11:46:23 PM
Hi all, I have a DataTable im trying to filter, however I simply cannot get what appears to be a simply expression to work. Int cartId = 15; string expression = "cartId =" + cartId; DataRow[] test = myDataTable.Select(expression); This always returns no datarows. However, if I hard code th...more >>

Opinions on LearnVisualStudio.net
Posted by Liz at 9/16/2006 11:17:49 PM
Anyone have any opinions on the videos at www.learnvisualstudio.net ? Thanks ... L ...more >>

inject extra code into all controls on a page
Posted by sklett at 9/16/2006 9:53:12 PM
I want to implement a simple form element focus script that will change the color of a form element when it gets focus and revert back when it loses focus. I've got the code working (simple) but now I need to add it to ALL my form controls and there are tons. Is there a way to override pag...more >>

How to save Profile Properties in Cookie?
Posted by shapper at 9/16/2006 7:28:05 PM
Hello, I have only one property in my profile and I want it to be saved in a cookie. However, when I run my web site a database named ASPNETDB.MDF is generated instead of using a Cookie. How can I solve this? I have the following in my Web.Config file: <!-- Anonymous Identificat...more >>

Object from Master Page?
Posted by Tarun Mistry at 9/16/2006 7:05:59 PM
Hi all, I have created an object within my Master Page. I would like to use this object in my content pages. What would I need todo to achieve this? Alternatively, what is the best way of handling a global object (in this case, a shopping cart object). Kind regards Taz ...more >>

Atlas Problem
Posted by GaryDean at 9/16/2006 5:11:43 PM
I have an asp.net app using Atlas (july ctp) written from an example I found at the 4guysfromrolla.com site. It's very much like the examples I find at this site. I have pasted the body of the aspx page below. As you can see it has the ScriptManager the page and then, inside an UpdatePanel ...more >>

Need help designing XML Dataset
Posted by Tony Girgenti at 9/16/2006 4:12:46 PM
Hello I developed and tested a web application using VS.NET 2003, VB, .NET Framework 1.1.4322, ASP.NET 1.1.4322 and IIS5.1. It uses a web form. I tried doing this without any help, but i'm getting nowhere. I want to create an XML schema (XSD) for a dataset/datatable using the XML design...more >>

asp.net configuration question
Posted by barry at 9/16/2006 4:08:30 PM
I have VSTO 2005 and am not able to get ASP.NET Configuration under the Website menu to work. It just shows a not found page and comes back to where I executed it from. My question is can I download the Visual Web Developer Express 2005 at the same time the VSTO 2005 version is loaded to se...more >>



accessing controls in the createuserwizard complete step
Posted by JJ at 9/16/2006 3:34:11 PM
I want to make one or other display panel visible on the 'complete' step of a createuserwizard. I've customised the complete step and have the id's of the panels. I've tried: Control panelControl; panelControl = CompleteWizardStep1.FindControl("ValidationSent"); panelControl.Visible =...more >>

Authenticate Users In Web.Config?
Posted by Arpan at 9/16/2006 2:32:59 PM
Suppose a web.config file (existing in C:\Inetpub\wwwroot\ASPX) has the following code: <configuration> <system.web> <authentication mode="Forms"> <forms name="AuthenticateUser" loginUrl="ValidateUser.aspx"> <credentials passwordFormat="Clear"> ...more >>

Finding parent control value in a nested datalist c#
Posted by mroffey NO[at]SPAM hotmail.com at 9/16/2006 1:05:18 PM
Hi everyone, I've been having this problem and I've searched high and low, but I can't seem to find the answer to what is probably a very simple solution. In a nutshell, I have a nested datalist, Parent and Child. In the child datalist, I need to get 1 of the values from the parent datalist...more >>

rewrite text of every ALT tag on-the-fly?
Posted by Les Caudle at 9/16/2006 12:54:48 PM
What would be a method to rewrite the text of every ALT tag on a web page on-the-fly? -- Thanks in advance, Les Caudle...more >>

url mapping works differently in Cassini than in IIS??
Posted by Les Caudle at 9/16/2006 12:47:19 PM
I've gotten url mapping to work perfectly while running in VS 2005 Cassini debug mode. I simply added this to web.config <urlMappings enabled="true"> <add url="~/school" mappedUrl="~/Schools.aspx" /> </urlMappings> and all calls to domain.com/school wi...more >>

I need .Net developers
Posted by Ravi M Chowdary at 9/16/2006 12:16:11 PM
http://ybricks.com/careers.htm ...more >>

Starter Kit Application deployment
Posted by esha at 9/16/2006 11:44:45 AM
I have ASP.NET 2 hosting. I created my first simple WEB application from Personal WEB Starter Kit template. Everything works fine on my local machine. I uploaded all files to the hosting server. Pages which do not use database work, pages which communicate with the database do not work. I'm j...more >>

1 to many in GridView
Posted by MRW at 9/16/2006 11:16:48 AM
Hello! I don't know if this is possible, but I have two tables in a one-to-many relationship. I want one record to be displayed in a GridView from table1 with a blue background, followed by all the related records in table 2 in a white background, followed by the next record in table1 in a b...more >>

1 to many in GridView
Posted by MRW at 9/16/2006 11:16:39 AM
Hello! I don't know if this is possible, but I have two tables in a one-to-many relationship. I want one record to be displayed in a GridView from table1 with a blue background, followed by all the related records in table 2 in a white background, followed by the next record in table1 in a b...more >>

can't display resource image from assembly
Posted by Jon Paal at 9/16/2006 10:22:20 AM
sample code which is failing to display the image rootnamespace......... myproject Assembly code................ <Assembly: WebResource("Logo.gif", "image/gif")> code ............... Imports System Imports System.ComponentModel Imports System.Drawing Imports Syst...more >>

Showing Small Window
Posted by Jonathan Wood at 9/16/2006 9:47:01 AM
I'd like to have some help buttons on my page pop up a smaller browser window with the help text and perhaps a close button. Does anyone have any examples of this, or suggestions on how to get started? Thanks. Jonathan ...more >>

Showing Images
Posted by Jonathan Wood at 9/16/2006 9:45:30 AM
I want to show the small help image that comes with VS. It is a question mark in a blue circle. It seems several versions are included. There is a PNG file, which has transparancies. But IE appears to ignore the trasparancy and instead draw a grey background. There are several versions wit...more >>

Passing Data to Page
Posted by Jonathan Wood at 9/16/2006 9:42:01 AM
I'm new to ASP.NET and am trying to create some of my first Web pages. I'd like the user to enter about a dozen fields, and then have another page create a table based on the information entered. What is the best way to forward the data from the first page to the second? Is the Session obj...more >>

Front End
Posted by Chris Davoli at 9/16/2006 6:55:02 AM
I need just opionions. I'm VB.NET programmer and I work with another front end HTML guy who doesn't know .Net and how to use the .Net controls. So far he has been unwilling or unable to learn .Net even though I have been training him, he hasn't caught on. He is good on "prettying up" the web p...more >>

.ToString("c") location
Posted by Senna at 9/16/2006 6:41:02 AM
Hi When you have something like this: decimal d = 17.4m; Response.Write(d.ToString("c")); The output becomes: 17,50 kr. If the culture is set to swedish. So my question is. Where in the framework is the class/function that does the rounding for each and every currency? Thanks ...more >>

encoding DataNavigateUrlFields in HyperLinkField
Posted by Newish at 9/16/2006 6:03:24 AM
Hello everyone Is it possible to encode DataNavigateUrlFields in HyperLinkField of a gridview in asp 2 so that the url is properly formatted for "&" and other special characters. thanks Newish ...more >>

q; read file names
Posted by JIM.H. at 9/16/2006 5:25:02 AM
Hello, I need to read all the files in current and sub folders and put it into a list box, is there any example in C# I can use? ...more >>

What's better: using Application or Session object?? (in my case)
Posted by kito at 9/16/2006 1:47:49 AM
Hi, I wanted to get some advices from you guys. I have a little web-shop in ASP.NET for a project. I have several VB classes, where the most important ones are the "DBmanager" and the "DataManager". The DBManager creates the database connection and has some useful functions. The DataManager h...more >>


DevelopmentNow Blog