| Thread | Last Post | Replies |
|
| Unable to start debugging on the server continued | 10 Dec 2006 08:17 GMT | 1 |
This is regarding my previous postings. I have tried the suggestions below and still does not work. I am on my local computer. I changed the vbproj.webinfo file as well but VS seems to change it back to
|
| Switch page to SSL Programatically? | 10 Dec 2006 02:07 GMT | 2 |
Howdy, I'm trying to have select pages always be secure and others I don't care. I'm using If Request.ServerVariables("SERVER_PORT") = 80 Then
|
| In List | 09 Dec 2006 23:06 GMT | 3 |
In SQL you can use the operator "IN" in a where clause. Is it possible to use the same in an vbscript IF statement?
|
| Why NOT hungarian notation? | 09 Dec 2006 15:11 GMT | 24 |
I just discovered that MS recommends that we NOT use hungarian notation with the .net framework: http://msdn2.microsoft.com/en-us/library/ms229045.aspx What are the real cons for using it?
|
| Web application project problem | 09 Dec 2006 15:02 GMT | 3 |
i have a problem. I installed Visual Studio 2005 English version and the following files to use the web application project instead of the web site project: - VS80-KB915364-X86-ENU.exe
|
| Singleton and thread-safe | 09 Dec 2006 13:11 GMT | 2 |
I am trying to implement a singleton pattern as follows: public sealed class Singleton { private static readonly Singleton only = new Singleton() ;
|
| directing page output to a New window from server-side? | 09 Dec 2006 05:08 GMT | 2 |
I have an ASP.NET (1.1) page that generates PDF. I'd like to have the PDF open in a new browser window. From the Server side, is there any way to cause the output to be put into a new window??
|
| upload file with asp.net 2003 | 08 Dec 2006 23:39 GMT | 1 |
I need to do an upload file with asp.net 2003 but i need process the image or show a preview of this after save.
|
| Which method is best for storing articles/daily updates? | 08 Dec 2006 23:38 GMT | 2 |
I have a site on which i want to add content on a daily basis (links and the articles). How do I layout the site? I could use a database but : will users be able to search the content using, say, google?
|
| Ampersand (&) in QueryString | 08 Dec 2006 22:01 GMT | 3 |
I have to encode an address which contains an ampersand (&) into a URL with various querystring parameters. The following code works fine: URLString = "www.myserver.com?AD1=" & HTTPUtility.URLEncode("500 Rt 6 & 209")
|
| SignTool Error: CoCreateInstance returned error: 0x80040150 | 08 Dec 2006 21:53 GMT | 1 |
I've created a web app in C # that creates a self-extracting installation file, and then attempts to digitally sign that file using MS signtool. I'm using the Process class to invoke signtool and it is returning this
|
| an application for 1000 users | 08 Dec 2006 19:30 GMT | 10 |
I want to create an application in which around 1000 users will be served at one time. All of the users will be sending around 1 mb of data. I will be parsing that data and would insert some of the data into the database.
|
| How to get Previous Page name? | 08 Dec 2006 17:26 GMT | 6 |
I would like to know how can I get the page name before the current page? Thanks Anthony
|
| Checking Session value | 08 Dec 2006 17:22 GMT | 1 |
I have a bunch of administrative ASPX pages that requires me to check for a Session value. I have a Masterpage.master file that all these ASPX pages use, that checks this. The problem is that the codebehind for each of those ASPX pages runs before the codebehind in the
|
| Setting Proportional Width of Bound GridView | 08 Dec 2006 17:04 GMT | 3 |
In a C#.NET web page, I'm using the GridView control bound to a ObjectDataSource and the binding and data reading works fine. It auto generates the columns from the SelectMethod and makes the drid wide enough to show them all.
|