Psst! Did you know DevelopmentNow is a mobile web site design agency?

Contact us for help mobilizing your site, or to sign up for our beta Mobile Web SDK!


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 > november 2003 > threads for saturday november 29

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

multiple class instances
Posted by david at 11/29/2003 8:17:32 PM
i am doing the walkthrough of an asp.net book and i have come to one of the tutorials where i am supposed to create a simple code behind method. but, when i follow the instructions in the book i get this error message. considering that i am following a walkthrough i would like to iorn out ...more >>


encrypt the querystring values for a HyperLinkColumn
Posted by TJS at 11/29/2003 8:16:40 PM
how can I encrypt the querystring values for a HyperLinkColumn ? in example below I would like to encrypt value for field1 ====================================================== <asp:HyperLinkColumn Text="View" DataNavigateUrlField="field1" DataNavigateUrlFormatString="page.aspx?idx={0}"></asp...more >>

adding text to the redered html
Posted by source at 11/29/2003 7:53:10 PM
I have a few hundered pages, where there is one particular text which needs to be formatted in a proper way. Currently the text comes from all different souces(regex files, database and the text is hard coded too) Now according to current legal terms and business rules I need to format that part...more >>

Machine Debug Problem
Posted by Buz Waitz at 11/29/2003 5:36:50 PM
When I try debugging a VB windows app in Visual Studio.Net I get the error, "Error whle trying to run project: Unable to start debugging. The Machine Debug Manager service is disabled." Help? ...more >>

wots wrong here?
Posted by Luke Smith at 11/29/2003 5:27:40 PM
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.IO.FileNotFoundException: File or assembly name System, or one of its ...more >>

DropDownListBox and footer and datagrid
Posted by kgs at 11/29/2003 2:44:17 PM
I dynamically added a DropDownListBox to a footer of datagrid on itemcreated event. In which event in postback can i access the selected item. Interesting thing i noted that even though i create it, every time on postback of the page the selected item is preserved. thanks!!! ...more >>

First time using validators problem
Posted by Mr. x at 11/29/2003 2:33:12 PM
Hello, I am first time using validators of apsx, I did something like this (in the aspx file ) : <form runat="server"> Name: <asp:TextBox id="name" runat="server" /> <br /> <asp:Button runat="server" Text="?????" /> <br /> <asp:RequiredFieldValidator ControlToValidate="name" Text="The ...more >>

problem with regional characters
Posted by Jacek Stepniewski at 11/29/2003 1:43:01 PM
I would like to display on the cell phone my regional characters (polish characters). The best way to do this is to use entity, but the mobile control do HtmlEncode and converts "&" sign to "&amp". For example: - if i do lblTest.Text = "&#x104", the resoult is: &amp;#x104; So this way is wro...more >>



Formating BoundColumn Items
Posted by Fabiano at 11/29/2003 12:37:38 PM
Please, i have a datagrid with columns binded to a DB. I need to show a specific column like 123.423-12 how can i do this? I tryed to use DataFormat property of the BoundCollumn with no sucess. Tks in adv. Fabiano ...more >>

dynamically connect to webservice
Posted by Ed S at 11/29/2003 12:27:32 PM
Hi All, We're upgrading our web project - currently we have a web app and a web service - both written in C#. The web app communicates with the web service for login authentication, the list of who's logged in, messaging between logged in users, etc. For this first pass, we hardcoded the ...more >>

Printing Problem
Posted by Dave at 11/29/2003 12:08:56 PM
Hi Everyone, I am fairly new to .Net and have just completed my first live ASP app. i developed the app on a laptop and basically the user fills in a form submits and the prints the form (in theory) this worked well on the laptop, but fell over when i uploaded the app to the company intranet...more >>

Client-Side Validation using ASP.NET
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 11/29/2003 11:14:36 AM
Dear Justin, Thanks for your reply! Let me explain you my concern in detail.... I have a login field which I am validating using RequiredValidator control. Now when a user omits this field, the ErrorMessage is displayed successfully with the help of validator control, but the page is ...more >>

ASP.NET, XP Pro
Posted by Bewildered at 11/29/2003 10:35:48 AM
I've been trying for days to get ASP.NET framework to run on my PC. I kep getting this error: although I'm not trying to set up and mobile devices. Can anyone help with a solution? TIA Configuration Error Description: An error occurred during the processing of a configuration file required t...more >>

Client-Side Validation using ASP.NET
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 11/29/2003 10:17:04 AM
Hello Guys, I am using the validation controls to validate my data. But the problem is "The page is still being posted to server". I want to get rid of the round trips to server. Are there any get arounds for this problem apart from the traditional JavaScript? I mean to say ... can ...more >>

How Do I add records to a Listbox control ?
Posted by Gordon at 11/29/2003 8:35:33 AM
Hi; I am a novice asp.net developer who would like to create a dataset-table and then use the datatable.select cmd. to look up a value passed from the web calender control. The value(s) would then be used to populate a listbox on a web form. I keep getting an error that says that in the ...more >>

send a querystring from client to aspx page
Posted by Mr. x at 11/29/2003 6:09:21 AM
Hello, I want to activate an aspx page from the client. just oppening the url from html page (client), ie openning the page with parameter : my_url.aspx?my_param=1 Thanks :) ...more >>

Insert new row in DataGrid (WebForm)
Posted by mg at 11/29/2003 5:06:33 AM
Is there any example code that illustrate the DataGrid insert operation? I want to insert a new row into a DataGrid (WebForm/C#). I'd like to press a button, enter the new column values in some TextBoxs, press a second Button and have the new row values appear in the DataGrid (and the und...more >>

Need help to understand this code error 'server error in /online application'
Posted by Ketul Patel at 11/29/2003 4:57:16 AM
can someone please help me understand what might be the possible cause for following error Server Error in '/OnlineServices' Application. ----------------------------------------------------------- --------------------- lookup data is empty! I am getting this while i am trying to sign ...more >>

getting response string problem
Posted by Mr. x at 11/29/2003 4:21:01 AM
Hello, I have declared in my program (*.aspx) something like this : <%@ Page Language="VB" Debug="true" %> .... <% dim current_view_page current_view_page = "1" if not (Request.QueryString is nothing) then current_view_page = Request.QueryString end if %> in the body sect...more >>

HTTP protocol violation - Urgent
Posted by sumit at 11/29/2003 1:21:36 AM
Hi, I am trying to send an XML request from ASPX page to A servlet,,,and gets the XML response back. I am using HttpWebRequest object. It throws exception as: The underlying connection was closed: The server committed an HTTP protocol violation. Previously it was working fine but sudden...more >>


DevelopmentNow Blog