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 2008 > threads for tuesday january 22

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

dynamically loading usercontrol
Posted by param@community.nospam at 1/22/2008 11:09:09 PM
Hello all, I have a UserControl that renders some HTML content. I now need to dynamically load and render "n" instances of this usercontrol on a host aspx page inside a panel control based upon user input of "n". Any ideas how I can do this? TIA! ...more >>

how to get clickable email from aspnetdb?
Posted by Mich at 1/22/2008 11:01:06 PM
Hi, I can fetch the mailaddresses from table aspnet_membership in a gridview. I just create a sqldatasource and a gridview and this sql statement, all in the aspx file. SelectCommand="select aspnet_Users.UserName as Lid, aspnet_Membership.Email as Emailadres FROM aspnet_Membership INNER ...more >>

Questions of dotnet.
Posted by Mr. X. at 1/22/2008 9:40:21 PM
Hello, I would like some answers to the following, please : 1. What is the difference of thread and process ? 2. Can shared object / function be virtual ? 3. Can abstract function be virtual ? 4. What is the difference between interface and abstract class ? - need code samples (VB / C#), pl...more >>

webpages designed by user, possible?, how?
Posted by Jeff at 1/22/2008 9:04:07 PM
Hey I'm wondering how to create a website where the registered users can design their of profiles. It seems to be popular among myspace users to customize their profile pages.. so I was wondering how this could be done in ASP.NET (I didn't mention any version of ASP.NET, but I have VS2008 ...more >>

Login control missing some properties in the properties pane
Posted by Adam M at 1/22/2008 6:21:17 PM
Hi all, I am using VS2008 and when click on the Login control and look at its properties pane, I am missing some of the properties in the GUI. I saw an MSDN video about using this control and the demo shows alot more properties in the IDE than I am seeing when I perform the exact same steps...more >>

pause code in a web application?
Posted by Paul at 1/22/2008 6:17:14 PM
Hi just wondering if running a web application in a single thread is it possible to add a pause in the code? Thanks -- Paul G Software engineer....more >>

timing problem issue
Posted by Paul at 1/22/2008 6:14:17 PM
Hi, I have some kind of timing problem, not sure how to address it yet. I have a stored procedure that can take from 10 seconds to 2 minutes to return data to a dataset depending on its input parameters. I have the da.selectcommand.CommandTimeout = 0 but still when I run it for longer proc...more >>

Make it AJAX enabled
Posted by John at 1/22/2008 6:12:04 PM
I need to make my existing web site (developed using ASP.NET 2.0) AJAX enabled. Where can I find detailed (step by step) information to make the web site AJAX enabled? Thanks....more >>



how to test cache existence
Posted by zino at 1/22/2008 5:36:07 PM
in an asp.net 2.0 application, I create a dataset, cache it, and then when it comes to retreive it, I test the cache first as : " If HttpRuntime.Cache(itemKey) Is Nothing Then ... .. " and if it's nothing then create the dataset and cache it ... .. . the function works fine most of the t...more >>

data table
Posted by BIJU at 1/22/2008 5:11:07 PM
I am very new in ASP.NET. In my project I have to use Data Table. For that When I declared an instance of DataTable like "Dim dtable as DataTable", I got an error message that "type Expected" Kindly provide solution and thanks in advance BIJU...more >>

ASP.NET on a Linux server
Posted by rosoft at 1/22/2008 4:48:25 PM
Hi I need to put up an ASP.NET server on a Linux server. Does any one have any good recomendation for this. Lars ...more >>

Losing the State of an ASP Listbox after postback for UpdatePanel
Posted by John Kotuby at 1/22/2008 4:34:20 PM
Hi all, I have an ASP.NET 2.0 page that uses 6 controls all within an UpdatePanel so that only parts of the page are updated upon postbacks. maybe I have configured something wrong. When the page first loads, the listbox is empty. I am adding OPTION elements to the listbox using clientsi...more >>

sort method in Treeview
Posted by Red Baron at 1/22/2008 4:29:06 PM
Hi all, Is there a any built-in method in TreeVew for sorting the nodes. I mean, there is a Sort() method in windows form version of treeview but i can not find any method in asp.net version, like that... Thanks ... ...more >>

ASP.NET -> Sharepoint webpart
Posted by David Thielen at 1/22/2008 4:18:10 PM
Hi; We have a pretty simple ASP.NET app that one of our customers wants to use as a sharepoint webpart. Is there some doc somewhere that tells us what we need to do to add this functionality? -- thanks - dave david_at_windward_dot_net http://www.windwardreports.com Cubicle Wars - h...more >>

unable to run web services
Posted by Mike at 1/22/2008 2:10:25 PM
I'm in the proces of moving my web services from one server to another server. Both servers are running MS Server 2003, .NET 1.1 and .NET 2.0 and IIS 6. All of my web services run on server A, but when I move them to server B only some of the web services are working. I have 1 web service t...more >>

Standalone .NET web server
Posted by Amil Hanish at 1/22/2008 1:57:22 PM
I want to place a demo web site on XP computers; these computers may not be connected to the Internet so I need a standalone web server. These computers will have .NET 2.0 installed. In the old days, folks used Microsofts "Personal Web Server". What is the best solution for hosting a site...more >>

formatting TextBox.Text with ToString(IFormatProvider)
Posted by Andy B at 1/22/2008 11:23:53 AM
I need to take the value of a textbox and format it in a more readable date. How do you do this? I tried textbox.text.tostring("date format string") but the compiler doesnt like that idea... any ideas? ...more >>

Replacing <%= Control.ClientID %> in external javascript
Posted by MarkShoe at 1/22/2008 10:31:59 AM
Hi, I have an aspx with a control on it, lets call it myControl, and I have an external javascript file. In the external javascript file, I have var myControlId = '<%=myControl.ClientID%>'; which would work fine if the javascript was in the .aspx file, but when adding the external ja...more >>

ASP with ASP.net
Posted by D Browne at 1/22/2008 10:15:19 AM
We have an existing ASP application. We would like to use some new functionality in ASP.net without changing our ASP application. Is there any process path or instructions on how to accomplish this. We will need to send sessions variables between ASP and ASP.net We are accomplishing this cu...more >>

pros and cons of WPF development
Posted by DNB at 1/22/2008 9:59:47 AM
I are thinking of planning to develop out next web based application in WPF. Can someone tell what are pros and cons of WPF development ? Thanks DS ...more >>

Update not working...
Posted by JJ297 at 1/22/2008 8:55:31 AM
After a user adds their name, address etc to a form and hit the submit button an email is generated to go to someone to update the database. This is what's being sent and works fine: Dim ocdoEmail As New Object ocdoEmail = Server.CreateObject("CDO.Message") ocdoEmail.To = Session("GetEmail...more >>

Recompile ASP.NET 1.1 application WITHOUT VS.
Posted by Alex at 1/22/2008 5:51:32 AM
Hi This might seem an unusual request! Does anybody know how to rebuild an ASP.NET 1.1 application on server without Visual studio (i.e. compile on the server itself). It would be fine if it was an ASP.NET 2.0 application I guess (would recompile on the fly). Is there anything in the s...more >>

Debugging is not working
Posted by Santel at 1/22/2008 4:56:52 AM
Hi, I am not able to debug the asp.net source. Anyone please suggest me. Is there any setting I should do to debug? I am running the filesystem project in Vista m/c. ...more >>

Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
Posted by Sudhan at 1/22/2008 2:42:32 AM
hi i am trying to write excel using VB.net but when i open oExcel.Workbooks.Open the application error: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. can any one help me.....more >>

asp.net 2.0 design login area case study
Posted by info.lowyeah@gmail.com at 1/22/2008 12:35:20 AM
Dear all, I have an ASP.NET 2.0 website design problem. I want to design a website, there are few normal pages(page1, page2, page3) is to show my information. But there is another login page(page4), which is used to allow advanced user to login and show advanced page(page5,page6) My prob...more >>


DevelopmentNow Blog