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
January 2007
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 webcontrols > june 2003

preparing xml file!
Posted by Volkan Karaboưa at 6/30/2003 5:58:26 PM
Hi all... I have a problem while trying to prepare an xml file I have a function like below Public Function readxml() As XmlDocument() Dim doc As New XmlDocument() doc.Load("c:\deneme.xml") Return doc End Function when I call this function like below I recieve an error at t...more >>

Top web reporting tools for .NET?
Posted by Eric Loos at 6/30/2003 3:30:49 PM
What reporting tools are most popular for .NET WebForms in C# or VB? Crystal? ActiveReports? etc. Eric ...more >>

Tricky Question: Page_Load
Posted by VB Programmer at 6/30/2003 2:41:26 PM
I have a usercontrol that sets a public/shared variable called "database_name". (User selects a dropdownlist of available databases.) A webform (webform1), that uses this usercontrol, connects to the database defined by that public variable and does stuff. Problem: Webform1 is always one data...more >>

why can't i see my web controls?
Posted by David at 6/28/2003 2:15:21 PM
Hi Group, having a problem seeing my web controls in my browser (IE6) I'm running Windows XP and have IIS5.5 installed with the .NET 1.1 framework. I have created a page with a form and a few web controls but when I try view via my browser I only see the text. I have the files in a virtual fol...more >>

MultiPage Validation
Posted by Kenny at 6/27/2003 6:15:56 PM
Hi all, I am using tabstrip and multipage controls on one aspx page. I have lots of input controls on different multipage's pageviews. When I used the validation control to validate the controls on one pageview, it also validate all the other controls on the hidden pageviews. I am stuck here f...more >>

how to write a web control component ?
Posted by Asking at 6/27/2003 5:06:24 PM
hi all, I want to do circle button as web control component. Which comand I can use to draw line, pixel, circle etc. in web control library source code? thanx ...more >>

Called a Stored Procedure , decimal parameter
Posted by Mona at 6/27/2003 2:16:59 PM
I have a stored procedure with a decimal parameter . how can send the decimal value? I try this but it gives an error , invalid cast specified. Dim p1 As SqlParameter = .Parameters.Add("@EstConstructionCost_10", System.Data.SqlDbType.Decimal, 9).Value = CDbl(txtEstConstructionCost.Text) ...more >>

Webuser control does not show up in development environment.
Posted by Rob Mayo at 6/27/2003 12:34:52 PM
I want to be able to create a web usercontrol, slap it on an aspx page and have it show something other than the big grey box that says "USERCONTROL" Anyone know how to do this? ...more >>



how to get client computer name
Posted by haiwen at 6/27/2003 12:18:19 PM
Hi, everyone, Could anyone tell me how to get actual client computer name in Server side(don't use client script). I use string hostIP=Request.UserHostAddress; and string computerName=Request.UserHostName; but it seems both of them are the client's ip address. Sincerely, haiwen ...more >>

Dropdown List in a DataGrid
Posted by John Doe at 6/27/2003 11:48:14 AM
Hi everyone, I want to display one of the fields in My datagrid as a dropdownlist box.... I have created a DataSet that contains 2 tables, one parent and one child, I have also created a Relationship between these tables in my dataset. I am using a Column Template to diplay the data for th...more >>

Regular Expression Date Validation
Posted by Ken at 6/27/2003 10:13:03 AM
What is the regular expression for a date format of mm/dd/yy? This is the closest I have come ValidationExpression = "\d{1,2}\/\d{1,2}\/\d{2}" The problem is that it is allowing any two digit month, day and year. Should I use both the regular expression and the CustomValidator controls with ...more >>

Not able to get the Onclick Event in TreeVIew Control
Posted by Khaja Moin at 6/26/2003 11:38:36 PM
Hi, If any one can help me in finding out who to catch the oclick or Mouse over event in TreeView. Moin *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it!...more >>

INamingContainer only for some controls? How?
Posted by Bisser Milanov at 6/26/2003 7:11:54 PM
I am using INamingContainer in my web user control. In this control I have few radiobuttons. I guess it is because I am using INamingContainer my radio buttons are given names automatically and I cannot place them in the same group. How can I tell the control to not put automatically unique na...more >>

Dynamic Checkboxes event handling
Posted by Rob C at 6/26/2003 1:45:29 PM
Hi all, I am dynamically creating checkboxes and am having trouble getting them = to launch the OnCheckedChanged event when they are clicked. I am am = getting a Postback event when they are checked or unchecked but that is = all. Here is the code I am using to create my checkboxes in the ...more >>

Accessing Dynamically added controls after postback
Posted by William Manring at 6/26/2003 11:54:17 AM
I am creating some controls dynamically on a web page. Non of the dynamically added controls are available after a post back. I'm sure I'm missing something simple, but what to I have to do to get dynamically added controls to be part of the viewstate of the page? ...more >>

Vertical DataGrid
Posted by Ryan at 6/26/2003 7:18:10 AM
Is there any way to make a datagrid display its data vertically? I have a table with about 40 columns which I would like to put in a grid of some sort for editing, but in the standard datagrid, it stretches way beyond the screen. I'd like to display the data, one record at a time with the ...more >>

Dynamically Created LinkButton controls and their events
Posted by Jules at 6/25/2003 8:37:36 PM
Hi I am dynamically creating LinkButton controls (to represent breadcrumb trails) and am having problems with their events. I specify the CommandName property, the Command Argument property and call either one of these 'hookups': lBtn.Command += new System.Web.UI.WebControls.CommandEventH...more >>

Problem with IE TreeView and Postback
Posted by Moin at 6/24/2003 7:37:57 AM
I have a treeview for which the TreeNodeSrc is and xml file. Its gets displayed properly. I have a datagrid, and few buttons on the same page. When I click on the datagrid (sort column or page index) or any of the buttons, the page gets refreshed but the TREEVIEW DISAPPEARS. Is it problem of T...more >>


DevelopmentNow Blog