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 wednesday november 12

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

ASP.NET mail error: The transport failed to connect to the server
Posted by James Lankford at 11/12/2003 11:56:55 PM
Hello group: I have reached the end of my rope with this error. I have pretty much = tried every suggestion I've found thus far and I get this error no matter what I do. I did try using the CDOSYS test from = Microsoft as a test for the smtpserver, and it'll send that way. Here's my existing ...more >>


SQLDATAREADER
Posted by Arvind P Rangan at 11/12/2003 11:02:39 PM
Hi All, How do you get all the values of a sqldatareader if it contains multiple resultset. Using sqldatareader.nextresult and sqldatareader.read e.g. While sqldatareader.read ' If not sqldatareader then sqldatareader.nextresult else ---do something end if while end I get the ...more >>

is not a valid identifier
Posted by Marc Bishop at 11/12/2003 9:56:26 PM
I have an image button control within a repeater control. <asp:ImageButton id='<%# Container.DataItem("ProductID")%>' runat="server" ImageUrl="images/noimage.gif" OnClick="RemoveItem" Autopostback="true"/> but i'm coming up with the error "<%# Container.DataItem("ProductID")%>' is not a vali...more >>

HtmlInputImage.ServerClick
Posted by JP at 11/12/2003 9:21:24 PM
ow do I get a HtmlInputImage to raise the ServerClick event I have two inputs one is a submit button the other is a image. The submit button works the input image does not. Does anyone know why this would happen? I would like to mention that I have overridden viewstate and do not use ser...more >>

Timeouts?
Posted by hari at 11/12/2003 9:16:26 PM
what are the various request timeout settings availabel in asp.net web application?...more >>

Object moved to here
Posted by Shaun Dore at 11/12/2003 8:47:53 PM
Hello, I have an asp.net web application that redirects the user to the login page whenever his session is expired (using Response.Redirect). Most of the times, it works fine, but sometimes the browser just output : Object moved to here. Note that 'here' is an hyperlink, but it doesn't li...more >>

Does WebControls.Image actually contain an image?
Posted by Jim Hammond at 11/12/2003 6:35:28 PM
Does a WebControls.Image object actually contain an image, and if so, how can I get it? As far as I can tell, the WebControls.Image class does not contain the image itself. It seems to only contain the URL to the image, which doesn't work for me because the image file is on the client system. ...more >>

Can ASP.Net automatically recognize what the language the client's browser is using?
Posted by CM at 11/12/2003 6:22:11 PM
Hi, there: For a multiple language, such as English and French, web application, can ASP.Net pages automatically recognize what the language the client's browser is using? And how? Thanks! CM ...more >>



PRB: Error Message: System.InvalidCastException: Specified Cast Is Not Valid
Posted by Miguel Angel Dinelli at 11/12/2003 5:29:40 PM
I´m trying to execute a project and I get this error System.InvalidCastException: Specified cast is not valid. I found in microsoft some Q in 327287, but I not sure how make to solution it. I apreciate your help tks Mike Dinelli ...more >>

Unable to get next page in screen scrape
Posted by Al Cadalzo at 11/12/2003 5:27:40 PM
I am doing a screen-scraping app using HttpWebRequest. I create the HttpWebRequest and then I call the GetResponse() method on it. I get the page back OK. The page has a 'Next' button on it. I want to get the next page by "clicking" the 'Next' button on the Web page using the HttpWebReques...more >>

Place holders
Posted by anonymous NO[at]SPAM discussions.microsoft.com at 11/12/2003 4:09:12 PM
Hi, How can one use STYLE attribute for a placeholder? I am having problems displaying the placeholder on a webform on a place I want it to be. Can we use panels with placeholders and place the placeholders in the panel and adjust the position? Or any other pointers? Thank you! ...more >>

Where to store the COnnection string
Posted by ALPO at 11/12/2003 4:06:54 PM
We would like to build our app using a global connection string? Should this still go in the global.asa(x) file? or...more >>

Whidbey Hosting
Posted by Emad Ibrahim at 11/12/2003 3:07:22 PM
Does anyone know where I can host Whidbey applications? -Emad ...more >>

ASP embedded jscript in asp code won't compile / run
Posted by TdJ at 11/12/2003 3:04:08 PM
Hi guys, I am trying to build a dialog box that does the same as an "alert" but with out the exclamation mark graphic (which is causing some users to think something has gone wrong !? I have included my code, the problem is obviously the fact the jscript 'key words' are in quotes, I have tr...more >>

Webforms Textboxes under Netscape
Posted by wr3pa NO[at]SPAM msn.com at 11/12/2003 2:49:35 PM
All, I have a problem that Webform textboxes get smaller in width in Netscape 4 and above. Everything works fine in IE 5 and above. I tried to set the size property in the <asp: textbox> tag, but it has no effect. Here is the tag as is right now: <asp:textbox id="txtpass" runat="server" ...more >>

ViewState
Posted by Dave at 11/12/2003 2:45:18 PM
Say you have a Web User Control and a parent page that contains it. Is a ViewState Item created in the parent page accessible to the user control? Thanks......more >>

Dynamically add controls to a web form
Posted by Angel at 11/12/2003 1:52:39 PM
Can one add a serverside control to a webform dynamically? I used in the Page_load event of the form the following code: Dim txt as new System.Web.UI.Webcontrols.Textbox() Controls.add(txt) The code fails. Does this mean you just cannot in Webforms where you CAN in Windows Forms? Tha...more >>

Referencing controls on aspx page from aspx.vb file
Posted by dkode NO[at]SPAM cfl.rr.com at 11/12/2003 1:52:38 PM
Ok, I've figured out how to do this, but not sure why this is happening. I assume it is because i am creating my UI in dreamweaver and then opening in VS.NET to do the codebehind. Let's say i paste the following code into the page.aspx file: <asp:Label id="myLabel" text="some text" visibl...more >>

using client-side component keeps calling component's init
Posted by Jim Hammond at 11/12/2003 1:47:07 PM
The following code uses a client-side component to capture an image from the camera on the client system. The problem is that the init function (in ClientSideAssembly_Video.dll) is called once when the page is first displayed and then each time the button is pressed. I'm guessing that the c...more >>

Running External Applications in ASP.NET
Posted by Edward at 11/12/2003 1:12:55 PM
I'm trying to execute an application on the server side in asp.net. For a simple test, I wanted to run notepad.exe which I copied from the windows directory to my web app directory. Here's the code snippet of my webforms page_load event: Process myp = new Process(); myp.StartInfo.FileN...more >>

Compare Validator
Posted by dotnet beginner at 11/12/2003 1:12:26 PM
In my webform I check for dirty(textbox values changed), and pop up a confirm dialog box on an asp-Imagebutton click event. I wrote a javascript function (to pop up confirm box) and called it in the pageload event using: btnclick.attributes.add("onclick", "return popConfirm();") So far ever...more >>

just tinkering with a Sub Routine in ASP.NET
Posted by D. Shane Fowlkes at 11/12/2003 1:07:05 PM
Can someone please tell me what's wrong with this basic sub rountine? It's supposed to just write 5 < hr /> lines to the page (I'm just teaching myself as I read a book on .NET). It seems to error on the < % = WriteHR(5) % > line. THANKS! ********************** <% @Page Language = "VB" D...more >>

Requiredfieldvalidator - fire only when a certain button is clicked
Posted by gert NO[at]SPAM up-front.co.za at 11/12/2003 1:02:09 PM
On my page I have two types of search-es, each with its own input and submit form inputs. How do I prevent the fire of the "Requiredfieldvalidator1" assigned to "input1" of "search1", when "submit2" of second search type is clicked (and "Requiredfieldvalidator2" fired on the relevant "input2")...more >>

problems populating htmlinputtext control when type is set to "password"
Posted by Chris Barrow at 11/12/2003 12:58:41 PM
Hi everyone, Does anyone know if there is a problem populating a system.web.ui.htmlcontrols.htmlinputtext control when the control's type is set to "password?" I am attempting to retreive a member's record from a database and populate the control with the member's password. Unfortunately,...more >>

Copy/duplicate web forms?
Posted by :-) at 11/12/2003 12:54:26 PM
What is the easiest way to make a copy of a WebForm with a different name? If you just copy/paste, the class info gets mangled. If you create a new WebForm and copy everything over, it is exceedingly tedious and manual for a large site. There has to be an easy way I'm missing.......more >>

ASP.Net hide site in the tray???
Posted by gicio NO[at]SPAM web.de at 11/12/2003 12:53:31 PM
ASP.Net hide site in the tray??? It's possible to hide a ASP.NET site in the tray? Regards, Gicio ...more >>

error msg help needed on stored procedure
Posted by TJS at 11/12/2003 12:50:29 PM
trying to get a record count from a stored procedure using a supplied SQL statement Error msg: =========== "The SqlParameterCollection only accepts non-null SqlParameter type objects,not String objects." SPROC: ======== CREATE PROCEDURE [dbo].[RecordCount] @SQLstring varchar(2000) ...more >>

inserting control in ItemDataBound
Posted by Steve Klett at 11/12/2003 12:43:06 PM
Hi- I am developing a hierarchical navigation system. I have a DataList with the root level items, on the ItemDataBound event, I check for the selected item, when found I'm adding an additional DataList Control to display the sub items. Pretty standard. I now realize that I don't know how...more >>

Using DesignMode in ASP.NET
Posted by Marcel Balcarek at 11/12/2003 12:34:25 PM
I have an IFrame control defined. Is there a way to turn designMode on for it, so that I can edit text in it using richtext capabilities? These IFrame controls awill be defined dynamically in code behind . . Ideally, I would want the solution to work in Netscape too ... Any part of the sol...more >>

disable single radio button in RadioButtonList
Posted by headware NO[at]SPAM aol.com at 11/12/2003 12:23:36 PM
How can I disable a single radio button in a RadioButtonList? I tried doing this: radioList.Items[1].Attributes.Add("disabled", "true"); radioList.Items[5].Attributes.Add("disabled", "true"); but it didn't output the correct HTML (no disabled attribute). Thanks, Dave...more >>

DataGrid editing: how to size textboxes?
Posted by Pavel Gusak at 11/12/2003 12:11:48 PM
Hello. I've found DataGrid built-in edit functionality useless. My DataGrid has 9 columns, and is shown just nice until I press 'Edit' on a row. ASP.NET creates 9 TextBoxes, all the same very big size, so my table becomes 3-screen-wide or so. How can I set size for the TextBoxes? Thanks. ...more >>

error SmartNavigation= "true"
Posted by '[] WiRaN at 11/12/2003 12:05:39 PM
All time that I place this term in my page it of the one error when I publish it. An error of Javascript. '[] Bruno Soares ...more >>

error with >>> SmartNavigation = "true"
Posted by '[] WiRaN at 11/12/2003 12:01:08 PM
somebody knows to decide this error? '[] Bruno Soares ...more >>

Is there a way to allow aspnet_wp.exe to execute a DTS Package that can be executed from a Windows Form application?
Posted by Dean R. Henderson at 11/12/2003 11:44:09 AM
I have a Windows library that I bind into a Windows Form application and into an ASP.NET Web Application. I have a procedure in the library that executes a DTS Package. I have also used information from Knowledge Base article 306158, INFO: Implementing Impersonation in an ASP.NET Application t...more >>

Access control variables from image rendering aspx
Posted by Jeronimo Bertran at 11/12/2003 11:41:41 AM
I have a WebControl that stores information on the StateBag. Within this control I have a bitmap image which is rendered using another aspx page as the URL for the bitmap. I am basically using an Image tag and the programatically setting the URL to another aspx page. The Page_Load for t...more >>

Really simple question: How to convert ArrayList of int to int[]?
Posted by homaneag NO[at]SPAM yahoo.com at 11/12/2003 11:40:37 AM
As titled....more >>

Client Side Validation Controls
Posted by Gareth at 11/12/2003 11:36:22 AM
Hi, I've just published a test web site on the internet with a simple form and some client side validation controls. On my development PC if I click submit without entering any data the validation controls work and prompt me as expected. On the live web server I do exactly the same thing but no...more >>

File upload permissions
Posted by Mark at 11/12/2003 11:32:12 AM
I am working on a ASP .Net application that would allow the users to = upload files to the server using htmlInputFile control. The server is = W2K. My question is: what type of permissions are required to which = accounts to faciliate uploading the file. Any help will be much appreciated. ...more >>

intermittent error
Posted by gary at 11/12/2003 11:23:50 AM
I am using VS.NET 2003 on XP I intermittently get Access is denied '[dll]' at the line <add assembly="*"/> in machine.config I have disabled indexing service and I am not running any form of anti-virus software. I have looked at filemonitor from sysinternals and it tells me the aspnet_w...more >>

Placeholder and Events
Posted by blue at 11/12/2003 11:23:15 AM
I have a drop-down list, a radio button list and a submit button. I'm adding these controls to a table and I'm adding the table to a Placeholder. I'm adding it to the Placeholder because I don't know exactly where the table will be located on the page until runtime. Before the form control tab...more >>

Shared variables in support library?
Posted by Fredrik Melin at 11/12/2003 11:18:21 AM
Hi, I have a support library with all functionallity I need to access my business application on the web. The problem is that Connection object, User object and some other objects are Shared variables, running this in a ASP.NET application gave trouble of course, due to the fact it is share...more >>

Login Failed for user 'DOMAIN\MACHINE' on Windows 2003 domain
Posted by Infant Newbie at 11/12/2003 11:14:18 AM
I have a windows 2003 domain with 2 servers - one for sql server 2000 and another as iis. When my asp.net app connects to the sql server I get the above error. I modified the <processmodel> section of the machine config and created a user "aspnet_a" with a strong password. Gave the aspnet_a ri...more >>

Get Client Connection Speed
Posted by PJ at 11/12/2003 11:07:02 AM
I don't know where to even start with this. The only thing I can think of is recording the time it takes to send a known size text chunk. Does anyone have experience with this? thx~ PJ ...more >>

Controls on ASPX page
Posted by Ruslan Shlain at 11/12/2003 10:49:19 AM
I have a page where I dynamically create checkboxes. When the time comes I need to know if any of them checked and if they are check I need to update DB to reflect the changes on the page. I know the ID's of checkboxes than are on the page but I can not capture them in any way. I tried looping t...more >>

dropdownlist for a table field that is not required
Posted by Mark at 11/12/2003 10:33:16 AM
I'm using dropdownlist in a datagrid to allow a column in a table to be edited. The dropdownlist contains several the from "dictionary/ code-decode" table. These columns are NOT required in the underlying table. What is the best way to allow a user to leave the drop down list unselected? Or is...more >>

implement dispose method
Posted by Billy at 11/12/2003 10:19:59 AM
Hello... I'm trying to make a database access class for an asp.net=20 application. When I run my application, the Garbage=20 Collecter doesn't seems to unload the memory attributed=20 to my SQLConnection. My db access class has a method=20 that returns a dataset and one that executes a non-...more >>

The viewstate is invalid for this page and might be corrupted
Posted by Anatoly at 11/12/2003 10:06:12 AM
We use web farm and apply machine key in web.config file as told in http://support.microsoft.com/default.aspx?scid=kb;en-us;323744 but it doesn't help Any other suggestions? Please help ...more >>

pass the control value from one web form to another form
Posted by tom at 11/12/2003 10:04:47 AM
Hi Experts, I want to pass the selectedDate value from my calender form to another web form or a web user control. Could you please show me how to do this? Thanks in advance. ...more >>

Windows Authentication through Web Form?
Posted by Rodney Lane at 11/12/2003 9:56:22 AM
Hi, I want to use windows authentication for my web site, but i dont want the user to have to use that little windows logon dialog box when they first access the web site. Is there any way that I can create a web form that will take the place of the windows logon dialog box? Cheers Ro...more >>

Use of ASP.NET control does not preserve whitespace.
Posted by Brian W at 11/12/2003 9:49:42 AM
Yet another editor problem To reproduce do the following 1) Open a Webform and switch to HTML edit mode 2) Enter the Following (include spaces) This is some text before <asp:hyperlink id="hl1" runat="server " navigateurl="http://www.microsoft.com">This is my link</asp:hyperlink>...more >>

Dropdownlist
Posted by TdJ at 11/12/2003 9:45:27 AM
Hi, Maybe a really basic question, but I'm trying to change a read only dropdownlist to look like a textbox, specifically don't I want an arrow which usually opens the list to be displayed. Is there any easy way to do this. Textbox doesn't not implement SelectedID etc etc. thanks in adva...more >>

Suggestion needed for huge DataGrid
Posted by Hardy Wang at 11/12/2003 9:35:36 AM
Hi all: Our web site uses 3-tier structure, the middle tier is a web service. We also use Microsoft Data Access Application Block to access sql server. Now I have to display a DataGrid with huge amount of data on web page, of course the DataGrid has pager. But even though, the web servic...more >>

do you know why this won't work?
Posted by Tim T at 11/12/2003 9:31:31 AM
Hi, I'm new to .NET and am still trying to get my head around OO concepts. I am building an asp.net app and on several pages i want to check to see if a session object exists, if so - contine to show the page, if not check if cookie exists, if no cookie then redirect to a login page. This is e...more >>

run an webapplication on a Macintosh system
Posted by Bernie V at 11/12/2003 9:05:20 AM
Hi group, Is this possible to run a webapplication in ASP.NET on a Mac ? If so, what package (Framework for the Mac ????) has to be installed on the client ? Thx in advance grz Bernd ...more >>

Attributes and Web Controls limitations?
Posted by Wayne at 11/12/2003 9:04:10 AM
I have a <select> drop down list in a Web Control set to run at server side. When I use the Attribute.Add routine it behaves a little strange: ddlMenu1.Attribute.Add("OnChange", "location=this." & ddlMenu1.ClientID & ".SelectedIndex.Value") That works, and adds the attribute inline, but when...more >>

global sql connection string and deadlocking error
Posted by Mark NO[at]SPAM WFI at 11/12/2003 9:01:13 AM
OK. Here we go. I have an ASP.NET application that does many hits to a SQL Server DB on a separate server. When I first created this application (2 years ago) and was very new to ASP/ASP.NET, to make the SQL connection string global throughout the application I created a .vb file within the appli...more >>

Project on the remote server
Posted by Leszek at 11/12/2003 9:00:51 AM
Hi, So far I have been creating projects on my local machine (localhost) without any problems. Now I need to create a project on a remote server. When I try to create a web application on the server, VS.NET returns an error message about lack of required permissions. What permissions do I need...more >>

Wanted: .NET equivalent of PermissionChecker component?
Posted by Jens Weiermann at 11/12/2003 8:40:59 AM
Hi! Anyone knows the ASP.NET equivalent of the PermissionChecker component that shipped with IIS 5? Basically, what it does is checking if the current user (using impersonation!) has access to a specified file. I've starting playing around with the FileIOPermission class, but this doesn't se...more >>

Detect Target of Server.Transfer?
Posted by poi at 11/12/2003 8:17:02 AM
How can I tell if the current web page is the target of a Response.Redirect vs a Server.Transfer? Thanks. *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it!...more >>

Help! ASP.NET Set-up
Posted by MikeY at 11/12/2003 8:15:46 AM
Hopefully someone can help me out there. I"m running WinXP. Version of Visual Studio.NET is 2002. Studing Wrox C# Beginning. 1st. My problem is I am doing a new install, which when fine but the problem is that when I want to debug my ASP.Net code, I cannot run the Web app sample under "Ste...more >>

Trapping as ASPError in ASP 3.0 Raised from my own COM object
Posted by Nithi Gurusamy at 11/12/2003 8:15:12 AM
Dear Group: I have a COM object developed in VB. It makes ADODB calls. When it fails it Raise Error. I am using the COM object in my ASP using Server.CreateObject. Whenever a function call fails I wanted the system to catch the 500-100 error and redirect to the configured page in IIS. But noth...more >>

'SQL Server does not exist or access denied'
Posted by Graham Hurst at 11/12/2003 7:42:40 AM
Hi all, A very frustrating problems - searches on the net haven't found much of relevance. I have two SQL databases - a TEST and a LIVE. My asp.net application, with C# codebehind, uses the SqlConnection class to connect. When I connect to my LIVE database, everything works fine. Bu...more >>

webconfig
Posted by Jenny at 11/12/2003 7:07:44 AM
Hi all I'm using forms authentication for my page. My webconfig (parts): <authentication mode="Forms" > <forms name="AuthCookie" path="\" loginUrl="Login.aspx" protection="All" timeout="200"> <credentials passwordFormat="Clear"> <user name="Test" password="Password" ...more >>

X, Y position problem
Posted by shahar NO[at]SPAM log-on.com at 11/12/2003 7:05:00 AM
Hi I have some div in a td that in some table, something like that: <table> <tr> <td> <div id="div">some text</div> </td> </tr> </table> I need to get the x,y position of the div from a script like that: <script> alert(div.style.left); </script> but I get an e...more >>

how to convert excel file to text file in asp.net using VB
Posted by addanki143 NO[at]SPAM yahoo.com at 11/12/2003 6:41:03 AM
I need to convert excel file to txt file programatically which may contain 60000 records i want to convert it into txt file and upload it into unix server thanks in advance rama...more >>

Custom Validator Issue
Posted by Arvind P Rangan at 11/12/2003 6:15:18 AM
Hi All, May be this Question is answered,but please if anyone knows it let me know. I have multiple controls which has custom validator. But i want one to trigger only when the relative action buttons or anything thing is clicked or trigger other custom validator should be passive and vis...more >>

force refresh
Posted by brian at 11/12/2003 6:11:20 AM
I have code that runs once a day to change an image on a page. I am having a caching problem because the new image doesn't show. I need to press ctrl + F5 to force a refresh. Is there code I can place in the page to do this for me. I am assuming it would go in the html code. Thanks...more >>

Datagrid - Aligning Items
Posted by Dave at 11/12/2003 5:40:19 AM
Hello all, I need to know if you can vertically align Items within an ItemTemplate. For example I have two columns, one column has a stack of 6 textboxes, my second column can have 1 to n number of textboxes, but when there is only one textbox I need to be able to anchor it to the top of ...more >>

Compile Error BC30138 Unable to create Temp directory.
Posted by Jon at 11/12/2003 5:29:01 AM
Has anyone ever come across this error? When working on Web Applications I get the following when compliling. When I reboot my pc and compile a basic ASPX I am ok for about 30 min. After that time frame if I try to compile again I get the Compile Error. Why would it work one minute and...more >>

Operation Aborted message on Windows98
Posted by sunil NO[at]SPAM itb-india.com at 11/12/2003 4:30:38 AM
Dear All, My client machine's OS is Windows 98 and IE6.0 sometimes while loading an aspx page the client gets a message "Operation Aborted" and the page does not open...on other machines that are not Windows98 it is working fine...What can be the problem?? Please help TALIA Many Regards ...more >>

Can we bind data to textbox in a headertemplate of a datagrid
Posted by Vijaya at 11/12/2003 3:55:09 AM
Can we bind data to textbox in a headertemplate in a template column of a datagrid? If so please give some code snippets. Thank you...more >>

How to find if a field has been edited?
Posted by sunil NO[at]SPAM itb-india.com at 11/12/2003 3:17:17 AM
Dear All, I have a ASP.Net application where I am having a multi-line field that has a long data type....I would like to save this field only if it has been edited...I don't want to save the value in ViewState and check if its value has been changed as it will take up lot of bytes...is there...more >>

Restore added data in Data Grid in a Page When the page is reloaded
Posted by vemulakiran NO[at]SPAM yahoo.com at 11/12/2003 2:58:37 AM
Hi, I need a help from anybody. My problem is here I wrote two WebApplication in ASP.net Using C#. The name of the applications are (Journal.aspx and Payment.aspx). These Two pages have DataGrids in each page and links to the other page(Journal.aspx contain Payment.aspx link and Payment...more >>

session state - SqlServer
Posted by quique at 11/12/2003 2:03:16 AM
Hi all, I want to know the advantages and disadvantages of the methods of maintain session state, obviously if i choose sqlserver is the most robust but the less performace.. If wan't to maintain session state in sqlserver, Does anybody knows when it's saved to database?, on beguinSess...more >>

aspnet_wp appears only transiently
Posted by google NO[at]SPAM hestia.demon.co.uk at 11/12/2003 1:47:55 AM
A colleague has just installed VS2003 on Windows 2000 and created her first simple Web application, and aspnet_wp is firing up only transiently, a new instance for each request. We first noticed it when we tried to put a breakpoint in the app and VS didn't think the assembly was being loaded. ...more >>

Long waited attempt to handle exceptions properly.
Posted by leejmonagan NO[at]SPAM hotmail.com at 11/12/2003 1:45:15 AM
Unfortunately I've used exception handling as a debugging tool. Now I want to be smarter about handling errors. Today in the global.asx in the Application_OnError event, I inserted code to email me the Server.GetLastError with some other information. Everythings working fine, but the informat...more >>

Calling Oracle stored procedure using c#
Posted by Sudhish K V at 11/12/2003 12:20:13 AM
Hi all, How can i pass parameters to an oracle stored procedure from c# application? And also i need to read the return value. TIA, Sudhish. ...more >>


DevelopmentNow Blog