| Thread | Last Post | Replies |
|
| ASP.NET2.0 cookieless vs cookie sessions | 06 Mar 2008 09:07 GMT | 9 |
when using ASP.NET 2.0, if you set 'cookieless session = fales' (meaning you want to use cookies), is the session information stored in a cookie on the client machine or in the browsers memory? Thanks
|
| A testing post on my MSDN managed NG support | 06 Mar 2008 07:52 GMT | 2 |
This is a test post to see whether I have set up my email account correctly for MSDN managed NG support. Thanks.
|
| Could not load type 'System.Web.UI.IScriptManager' | 06 Mar 2008 07:21 GMT | 3 |
I have developped an application in VS2008, using .NET 3.5 I'm using some Devexpress and Ms-AJAX controls and all works fine on the DEV-machine (as it always does ;-) ) Now that it's deployed on the webserver I get the error as pasted in below:
|
| IsPostBack | 06 Mar 2008 07:09 GMT | 4 |
Consider the following code which displays data in 2 columns in a Repeater (data in the 1st column are LinkButtons where as the data in the 2nd column is just plain text): <script runat="server">
|
| Gridview inline edit mode | 06 Mar 2008 06:12 GMT | 1 |
Hi, Is it possible to make the gridview editable on mouse click and save the changes on tab out? like the todo list in google widget? http://www.google.com/ig/directory?q=to+do&hl=en&root=%2Fig&dpos=top&url=www.lab pixies.com/campaigns/todo/todo.xml Thanks for the help
|
| Towards Completely Demystifying ASP.NET Requests | 06 Mar 2008 06:03 GMT | 1 |
After having worked with ASP.NET for several years, I believe I understand the high-level sequence of events that occur when a page is requested. But now I want a deeper level of understanding. In short, I want to fully understand *everything* that happens with a request, from ...
|
| getting UserId of newly created user by CreateUserWizard | 06 Mar 2008 04:07 GMT | 2 |
I can find UserId of an Authenticated user over the ProviderUserKey of MembershipUser , like that: if(Page.User.Identity.IsAuthenticated) {
|
| Data List Insert new problem | 06 Mar 2008 02:25 GMT | 5 |
I'm using Wisual Studio 2005 Pro with SQL server 2005 Dev on XP SP2 I have two tables Generic Item table (GN_ID) PK Color Table (Color_ID) PK and GN_ID FK
|
| can't reference textbox inside details view | 06 Mar 2008 02:00 GMT | 2 |
What am I doing wrong? When it gets to the "MyTextBox.Text = Now" line I get "Object reference not set to an instance of an object." PARTIAL HTML:
|
| How to get Datakey from gridview row? | 06 Mar 2008 01:18 GMT | 1 |
Duh.. How do I do this? CreditId is my datakey, but I can't seem to get to it. Dim dgItem As GridViewRow
|
| Response.BinaryWrite Not Returning Result | 06 Mar 2008 00:34 GMT | 2 |
I have a web application that uploads a file into a SQL database as a stream of bytes. On another page of the app, I retrieve the same byte stream from SQL, and my ultimate goal is for the user to see the "save" dialog so that they can
|
| ASP.NET and Security Issues with WebClient | 05 Mar 2008 23:32 GMT | 2 |
I have a ASP.NET WebSite running on IIS6 on Windows 2003. I'd like to have the Default.aspx page be able to web scrape a page from the same site "data.ashx". I'd like to keep everything NT Authentication.
|
| How do I do asynchronous tasks in a web page? | 05 Mar 2008 23:00 GMT | 5 |
I have a web page that makes several requests of other pages during its processing. At the moment it does these one after the other. To speed things up, I would like to make these requests asynchronously. Trouble is, I'm not sure how to do this.
|
| Programming languages | 05 Mar 2008 22:16 GMT | 5 |
http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html Can not ASP.net be considered a programming language? Just a platform?
|
| Thoughts about using Session variables for login security? | 05 Mar 2008 22:05 GMT | 3 |
I am creating a simple website with a login page and some "admin only" pages. In my login page's submit button I just say if the "password is correct" then...
|