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 > december 2005 > threads for saturday december 31

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

open a second IE window, set margins...
Posted by Eric at 12/31/2005 11:21:37 PM
For my VS.NET 2005 webapplication I need it to open a second window and show an image in it. Then it needs to set the margins of that IE window and then print it contents. After the printing it can be closed. How can I do this, if at all possible? rg, Eric (btw: Happy New Year!!) ...more >>


Any hints on how to do frames in ASP.Net 2.0?
Posted by Jim at 12/31/2005 10:08:47 PM
What would be cool as hell, would be a designer interface like Dreamweaver - with drag and drop elements like frames and such. Why isn't ASP.Net as easy to use as Dreamweaver. Certainly Microsoft has looked at them (if nothing more than as competition for FrontPage). What would be the rea...more >>

Can we authenticate if not EnableSessionState
Posted by ad at 12/31/2005 9:52:07 PM
If I set EnableSessionState to false in Web.config to false. Can we use login controls to authenticate user? ...more >>

problem creating a custom control
Posted by Lloyd Dupont at 12/31/2005 8:52:24 PM
I'm creating an 'owner drawn ASP.NET control' where all the HTML tags are written in the Render() method. In this control there would be 2 links: Edit & Comment. I would like to use a <A HREF='...'> But in the HREF tag I would like to write the special URL which will call: RaisePostBackEvent(s...more >>

Text Box Control MaxLenght Property Is Not Working
Posted by Dhana at 12/31/2005 6:32:32 PM
Hi All, I have developed one web application. In that I used aspnet web textBox control. I have set maxlength property for that text box 300 and TextMode property as multiline . When i typed more than 3 or 4 line each line contains 30 to 40 characters, If i clicked button for passing t...more >>

Can I debug Javascript
Posted by Andrew Chalk at 12/31/2005 6:30:17 PM
My ASP.NET v.1.1 application generates some Javascript that isn't working (I see "Error on Page" when a custom control is clicked). How can I debug this? Many thanks. ...more >>

I need a "Profile_MigrateAuthenticated" event - ASPNET 2.0
Posted by alain.hogue NO[at]SPAM gmail.com at 12/31/2005 6:01:59 PM
I known that by using the "Profile_MigrateAnonymous" event I can migrate my anonymous users profile to their authenticated account profile, but I would like to carry over some of the properties of their authenticated account profile back to anonymous profile when they logout. How can I do tha...more >>

2.0 Assembly Information - how?
Posted by MarkAurit at 12/31/2005 5:18:01 PM
In vs.net 2005 web apps, now that we no longer have the assemblyinfo file, how do we set assembly information (such as version,description,company, etc)? Thanks, Mark...more >>



Absolute url from relative path
Posted by Andreas Zita at 12/31/2005 3:44:22 PM
How do I get the absolute url for a file from c#-code? I have the path "~/file.aspx" and I want "http://www.mydomain.xyz/myapp/file.aspx" Basically I want to get the complete app-path url including the domain from the current app, but I have only found ways of getting the physical path and...more >>

Sessionstate timeout and Forms Authenticatin timeout
Posted by Sosh at 12/31/2005 2:44:39 PM
Hi, I'm a tad confused regarding the difference between an asp.net session and an authentication session and their timeouts. Do the two types of session exist independantly of one another? If so, what happens if one expires before the other? Any info appreciated. PS. Using asp.net v2 ...more >>

2.0 DataSources vs. TableAdapter/Datasets
Posted by GaryDean at 12/31/2005 2:29:31 PM
We have been noticing that questions on vs.2005/2.0 don't appear to get much in answers so I'm reposting some questions posted by some of the programmers here in our organization that never got answered... There are articles on the new TableAdapters where it says that a key new advantage is th...more >>

2.0 controlling Databinding
Posted by GaryDean at 12/31/2005 2:23:37 PM
We have been noticing that questions on vs.2005/2.0 don't appear to get much in answers so I'm reposting some questions posted by some of the programmers here in our organization that never got answered... In 1.1 we always did our own myDataAdapter.fills and we liked that control for lots o...more >>

Best practice for creating a user control base class in asp.net 2.
Posted by balystyk at 12/31/2005 12:25:02 PM
Are there any possible issues with creating a base class (adding common properties) for a user control using a class file and not a user control (.ascx and code-behind) in asp.net 2.0? I have successfully tested using a class that inherits UserControl and it seems like the best way to go but ...more >>

NEW Web Application Project [VS 2005]
Posted by Chris at 12/31/2005 10:56:57 AM
I installed this new BETA component for VS 2005 and it really helped with the migration from vs2003, but now I cannot deploy the project. Compiles fine, but there is no option to Copy the project, and that new Web Deployment Project update does not work on Web Application Projects so I cant...more >>

Monitoring concurrent users in ASP.NET v1.1 app
Posted by Bill Manring at 12/31/2005 9:03:02 AM
I have an ASP.NET application which my company sells comercially. We license on a concurrent user model, but we currently rely on the "honor" system for the customers to give us their best guess as to the maximum number of concurrent users they will need. We do this because, so far, we have ...more >>

Possible unintended reference comparison
Posted by sotec at 12/31/2005 5:51:03 AM
erroe message and code portion is like this.... how can i change this code to not occur to error if (page.Session["UserId"] == null || page.Session["UserId"] != userId ) { UserStatusSetting(page, userId); } Warning 2 Possible uninte...more >>

Can Visual Studio 2005 be installed and run in addition to Visual Studio 2003?
Posted by Robert Rotstein at 12/31/2005 3:39:52 AM
I have a "Microsoft Visual Studio 2005 Team System Beta 2" disk, along with Visual C#, Visual Basic, and Visual Web Developer 2005 disks. Also VS 2005 Team Foundation Server, SQL Server 2005 Developer Edition Community Technology Preview, and VS 2005 Team Suite. Can I safely install these w...more >>


DevelopmentNow Blog