| Thread | Last Post | Replies |
|
| Links to https fails 404 with preceding forward slash | 15 Jun 2006 20:17 GMT | 2 |
In reviewing my web site statistics, I see that I get 404 errors (often enough to make me ask about it) when users try to click on a link to a secure external site (i.e. an https:// link). I've tested these links multiple times, and they always work fine for me. Other links do not ...
|
| Validation of viewstate MAC failed - only on windows CE device | 15 Jun 2006 18:14 GMT | 2 |
This is odd behavior. In my aspnet 2.0 app (basic app, nothing out of the ordinary here), if I am using my iPAQ handheld device and I hit the refresh button on my page, I get an error "Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ...
|
| Using Response object in a .cs file | 15 Jun 2006 18:03 GMT | 2 |
I am trying to use "Response.Redirect" in a class file (.cs)... I inherited the class from "System.Web.UI. Page" and also imported "System.Web" name space. I get the following error - "System.Web.UI.Page.Response denotes a property where a class was
|
| Assemblies can be loaded from "/Temporary ASP.NET Files/..." but not from "/bin" | 15 Jun 2006 18:03 GMT | 1 |
We have some .NET 1.1 DLLs which we want to use in a ASP.NET 1.1 web page (actually one is a real .NET DLL in Managed C++ while the others are native Windows DLLs). First we copied all of the DLLs to /bin. However when we do this we get a configuration error. When we copy the ...
|
| Session Timeout setting in IIS. | 15 Jun 2006 18:00 GMT | 1 |
IIS has a Session Timeout setting. How does this setting coincide with the ASP.NET property Session.SessionTimeout value. If I change this value in code, will it override the IIS Session Timeout setting?
|
| Rss news aggregator | 15 Jun 2006 17:57 GMT | 2 |
How to place Rss news aggrgator in my web page. Please Explains steps involved in generating rss news aggregator using asp.net(vb) web page . thanks
|
| Actually, ado.net 2.0 help needed - batch update failing | 15 Jun 2006 17:25 GMT | 2 |
I am using the following code and SQL Profiler shows no activity when I step through the .update line. Do you see a syntax error? Thanks! using (SqlConnection cn = new SqlConnection(cnStr))
|
| HttpWebResponse: only need headers | 15 Jun 2006 17:08 GMT | 1 |
I call a perl script on a UNIX CGI server and only need the header information, not the entire body. The perl script returns the headers, but then uses a second process to do the bulk of the work.
|
| Why do I get "name 'LocalSqlServer' was not found" when my app uses MySQL? | 15 Jun 2006 16:42 GMT | 6 |
"The connection name 'LocalSqlServer' was not found in the applications configuration or the connection string is empty." I get the error above. It tells me the error is in Line 120: <profile>
|
| DB Text with NewLines, etc. for display in a Repeater or DataGrid | 15 Jun 2006 16:41 GMT | 2 |
If I have text data from a database which will contain NewLine characters because it was entered from a Multi-Line TextBox, and now I want to display the output in a Repeater or other DataBound List Control, how can I set it up so that it'll properly show the text with the ...
|
| Adding popup to Checkbox | 15 Jun 2006 16:36 GMT | 4 |
I use popups periodically to my buttons to prevent actions in my pages. When I tried this with a checkbox: DeclineSSN.Attributes.Add("onClick", "if(!confirm('Declining to enter SSN will prevent the hiring process to continue.\n\n Are you sure you
|
| why does this not work? | 15 Jun 2006 15:52 GMT | 2 |
In the aspx file, i create a table: <asp:Table ID="table1" runat="server"> </asp:Table></p> In the code-behind, i defined a lot of cells with each an unique ID and some
|
| Problems with ASP.NET temporary DLL's | 15 Jun 2006 15:38 GMT | 5 |
I am running a high traffic web site on ASP.NET 2.0. I'm getting this error every few days, usually when I deploy a control that is very active. The only way to fix this problem that I've found so far is to stop the web
|
| Export GridView to Excel does not open in Browser | 15 Jun 2006 15:23 GMT | 2 |
I have surfed through several posting about exporting gridview to excel and it works great. using the following code... response.Clear() response.ContentType = "application/vnd.ms-excel"
|
| Using HttpModules instead of Global.asax | 15 Jun 2006 15:11 GMT | 1 |
Global.asax? Use HttpModules Instead! In a previous post, I talked about HttpHandlers - an underused but incredibly useful feature of ASP.NET. Today I want to talk about HttpModules, which are probably more common than HttpHandlers, but
|