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 > january 2004 > threads for thursday january 1

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 31

System.Web.Mail problems
Posted by David Cho at 1/1/2004 11:56:19 PM
My code below gives me an error message that says "Error loading type library/DLL error" I've looked around and some postings state that my ISP needs to have "CDO service" running. Why isn't just using a STMP server enough? And there seem to be some third party controls that I need to buy in...more >>


Urgent
Posted by Jagadeesh at 1/1/2004 10:44:12 PM
hi i want a simple setp by step example of using DESCryptoServiceProvider class to encrypt password. regards Jagadeesh...more >>

Page not loading correctly
Posted by Dave Dunn at 1/1/2004 8:57:18 PM
I have a new project that works fine on my development machine that Visual Studio .Net is loaded on. But when I moved everything over to the production machine the pages won't load correctly. The images on the main page display fine but the controls don't load. I've run aspnet_regiis -i and...more >>

Advanced String Manipulation (C#)
Posted by kuya789 NO[at]SPAM yahoo.com at 1/1/2004 8:28:52 PM
I would like to randomly output phone numbers seperated by \ and / from a string. s = "\231-3423/\453-1234/\231-3473/\231-3474/" //c sharp code private string GetPhoneNum() { s = "\231-3423/\453-1234/\231-3473/\231-3474/" //randomly pick a phone num from string. n = randomNum; return n;/...more >>

subdomains pulling in like a query string
Posted by Brian Henry at 1/1/2004 8:06:33 PM
How would you do something like this? normal query string (one i know how to do) http://domain.com/?name=yourname now that is easy, but what about this? I've seen some people doing it recently... http://yourname.domain.com/ and haveing the subdomain name being pased into the site as a ...more >>

init value
Posted by Hei at 1/1/2004 7:25:44 PM
Hi, i use txtStartTime.Text = Now txtEndTime.Text = Now.AddHours(1) in "page load" event to provoid init value for user in aspx page, user will change it. after user change the time and i save new value to database, database is recorded the init value. what wrong?? thx. Hei. ...more >>

? retaining data within project accross webforms
Posted by Netserver at 1/1/2004 5:56:13 PM
Hi have a question hope there is a simple answer. I want to enter data in to 2 arrays from several webforms in project and be able to recall that data from any of the webforms, other then using a querystring I tried creating a module as follows Module dataspecs Public ar1(0) As Integer...more >>

Deploying ASP.NET web application
Posted by shalini at 1/1/2004 5:26:10 PM
Hi I am developing web application using .net with c#. My application is working fine in the testing server. But when i deploy it in the production server it is giving the following error. What could be the cause? File or assembly name System.Data, or one of its dependencies, was not found. ...more >>



Web Setup Project & SQL
Posted by Ryan at 1/1/2004 4:17:22 PM
How can I create a Setup Project in VS.NET similar to that of the "PortalCSVS" project on www.asp.net which creates a database on a selected server during setup? (I can create a DTS file or SQL setup queries, I just need to know the best way to deploy them) thnx ...more >>

Style Not being applied in HTML event
Posted by Angel at 1/1/2004 4:10:57 PM
I have the following definition for a Table cell: <TD class="clsMenuItem" onmouseover="this.classname='clsMenuOver'" onmouseout="this.classname='clsMenuItem'">WHATEVER</TD> The class(Style) is being applied when I run the page but the mouseover event is not being triggered because the ...more >>

Displaying Message Boxes
Posted by Paul Johnson at 1/1/2004 3:55:09 PM
Can a message box be displayed using asp.net code? I know there is a System.Windows.Forms.MessageBox but i cant use it in my web pages, I always get an error message saying that Windows cannot be found in System namespace. ...more >>

Calling Parent Functions
Posted by Paul Johnson at 1/1/2004 3:52:57 PM
I want a custom control to be able to call a function that is in it parent, is this posible? I have tried things like this.Parent.FunctionName(); ...more >>

Application variable
Posted by kuya789 NO[at]SPAM yahoo.com at 1/1/2004 3:22:39 PM
Is it the same as cache in asp.net? how do you load an app var in asp.net (C#)? Can you use app variable in a windows app?(.exe) thanks...more >>

IE WebControls Tab/MultiPage state problem
Posted by Dan at 1/1/2004 1:40:54 PM
IE WebControls Tab/MultiPage state problem I have a IE tab/multipage on a WebForm (aspx) like this: <code> <iewc:TabStrip id="tabs" runat="server" TargetID="MultiPage1"> <iewc:Tab Text="Tab1" ID="tp Tab1"></iewc:Tab> </iewc:TabStrip> <iewc:MultiPage id="MultiPage1" runa...more >>

need help
Posted by Jack at 1/1/2004 1:02:25 PM
as.net and vb.net not running ...more >>

Solution for "illegal characters in path" error message in ASP.NET
Posted by sgrahova NO[at]SPAM hotmail.com at 1/1/2004 12:03:33 PM
I have been having trouble the last few days opening any ASP.NET web forms in the design view in the designer. Every time I clicked on an aspx file I got a message box with the error "Unable to open in designer. Illegal characters in path" and the file is instead opened in HTML view. I don't ...more >>

Change Control Color While Mouse Enters
Posted by Angel at 1/1/2004 10:50:19 AM
How do you change the color of a control when the mouse enters the area of the control? And then change it back to the original color when the mouse exits the control? The Server controls do not have a Mouse Event that I can code this.... Thanks......more >>

Checkbox in a Datagrid
Posted by gamesays NO[at]SPAM hotmail-dot-com.no-spam.invalid at 1/1/2004 5:27:06 AM
hi all, can i know how to add checkboxes in a grid so that multiple rows can be selected(Marked) for further manipulation. ----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==---- http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroup...more >>

Re: Free aspnet hosting?
Posted by Masterkid at 1/1/2004 1:08:29 AM
Go to: http://europe.webmatrixhosting.net ...more >>

Freeze the DataGrid Headers
Posted by Ben at 1/1/2004 12:35:06 AM
Is there any way to freeze the DataGrid headers so that the headers are always viewable while srolling down? Thanks in advance, Ben!...more >>


DevelopmentNow Blog