| Thread | Last Post | Replies |
|
| Proper user of Session | 16 Jan 2007 11:42 GMT | 6 |
A user enters a password. Via stored procedure i lookup that (unique) password. If it is found I save the userID to a Session("userID") for later use. I use no other saved variables than this one. If Session("userID") is not set, trying to access any other page
|
| CREATE EMAIL ACCOUNT | 16 Jan 2007 11:36 GMT | 2 |
I have MS Exchange 2003 server on the same server i have host my website. I need a web page that people who interested to have theri own email account. I need an ASP .net web page to perform this task. How can I programetically create email accounts in MS Exchange 2003 server by ...
|
| how to persist login | 16 Jan 2007 11:32 GMT | 1 |
I have a web site dev with VS2003, .NET 1.1. I am persisting the login with the statement below When I login and then close the browser repoen it works fine. But when I leave the session to timeout
|
| How can I shut down and restart (only one) ASP.NET 2.0 website on the server? | 16 Jan 2007 10:37 GMT | 4 |
How can I shut down (only one) ASP.NET website on the server. Problem. I have updated my web-site but the site which I see is the old one (the one there prior to the update). I do I force ASP.NET to use the code in the new site - including the
|
| Convert to Web Application error | 16 Jan 2007 10:16 GMT | 7 |
VS2005 with SP1. I succefully coverted my Web Site Project to Web Application project, but, for an aspx class, the manuel (by right clic menu) 'Covert to Web Application, gives the error.
|
| Access to the path " is denied | 16 Jan 2007 10:15 GMT | 7 |
I moved web apps to Win2003. I have given read/write access rights to machinename/IIS_WPG but still getting the error "Access to the path "c:\inetpub\wwwroot\myApp" is denied. "
|
| Property | 16 Jan 2007 09:56 GMT | 1 |
I have the following property: ' Culture Public Property Culture() As String Get
|
| Pass Parameter To MasterPage ? | 16 Jan 2007 08:25 GMT | 1 |
How do you pass a parameter into the master pages, much like the TITLE. I'd like to pass SectionID from the ChildPages to the MasterPage (which calculates information based on SectionID)
|
| Accessing GridView footer paging elements | 16 Jan 2007 04:54 GMT | 1 |
I have enabled paging in my gridview control and am now trying to work out how to programmatically access it. With my gridview i have an "Add" button which adds a new row to the gridview and underlying data source, and initialises values to null, except for primary key which is auto ...
|
| User Control in Design Mode (newbie question) | 16 Jan 2007 03:19 GMT | 6 |
We have a simple user control containing a Label and a Textbox. Its code behind: public partial class uc : System.Web.UI.UserControl {
|
| Redirecting to a New Page Returns ASP_SMARTNAV_RDIR | 16 Jan 2007 02:09 GMT | 1 |
I have an ASP.NET 1.1 application where I use Response.Redirect in event handlers. The app is in production and suddenly it returns seeminly empty pages on redirection. In viewing the source I see the following. <BODY>
|
| Localhost:1081 | 16 Jan 2007 00:44 GMT | 4 |
My asp.net 2.0 app always uses LocalHost:1081. Why does it use port 1081? If I access my web app by typing in//localhost/myapp the application is executed but does not work correctly. But if I enter //Localhost:1081/myapp it works great.
|
| best ASP.NET book for a beginner? | 15 Jan 2007 22:50 GMT | 1 |
best ASP.NET book for a beginner?
|
| Simple VSS Question | 15 Jan 2007 22:45 GMT | 1 |
I have a local web project called ABC. ASP.NET 1.1 and VSS 6.0. It's located at c:\inetpub\wwwroot\ABC. It's deployed to our production environment at http://www.abc.com/ABC (version 1.0). Now I'm making changes, working on 2.0. Client calls and wants a small change. I ...
|
| Passing ArrayList object from one page to other | 15 Jan 2007 22:35 GMT | 2 |
I am using ArrayList to store my objects. Currently i am using session to store this arraylist and when i open showModalDialog [second page] i reterive this value from session and assign to GridView like ArrayList list = (ArrayList)Session["values"];
|