| Thread | Last Post | Replies |
|
| How to load an assembly manually ? | 22 Jun 2006 19:32 GMT | 1 |
I have the following ASP code, that uses a .Net assembly by programming. Using the first line is working, but that don't let my load the assembly at runtime.
|
| ASP.NET Application Lifetime & Cache Expiration | 22 Jun 2006 19:24 GMT | 1 |
I made an ASP.NET (.NET 1.1) application that uses the Context.Cache object within Global.asax as a static member. It is set up in such a way that whenever the cache items expire, they recache themselves automatically.
|
| Literal Control question | 22 Jun 2006 18:42 GMT | 2 |
I want to use a literal control to provide information about people listed on a webpage, where the control is on the same line as the person it addresses, so that I have a button, the person's name, and the literal control on the same line. When the button is clicked it will ...
|
| Javascript in ASP.NET | 22 Jun 2006 18:32 GMT | 4 |
I've been using Javascript in ASP.Net before, but I cannot figure out how to solve this particular puzzle. I was mostly registering JS at startup, but this is not a case. The task is very trivial: The Sub is running, when certain condition is met,
|
| 1.1 com interface (I suspect) -clarified | 22 Jun 2006 17:36 GMT | 2 |
Roy thanks for reading my post Basically the gist is that it crashes with unhandled exception on everything that is not native .NET code meaning any COM interface
|
| Sending username and pagename to ConnectionString | 22 Jun 2006 17:19 GMT | 2 |
I have a web application where people have to login to use the system. I have my own login system and a database which stores login details. ASP.NET pages are written with VB as code behind. I am using ADO as it is a lot easier than ADO.NET.
|
| quick and simple question | 22 Jun 2006 17:12 GMT | 2 |
I try to add "check if condition", if a string variable digit is greater than one, can anyone help me with this? for example : "aa" is 2 digit
|
| Getting confused on image types. How to get filename? | 22 Jun 2006 17:01 GMT | 2 |
I have a working function that grabs an image from a FILE form field and get's the filename from it: imageToCheck = myFormField.postedfile checkedFileName = Mid(imageToCheck.FileName, InStrRev(imageToCheck.FileName,
|
| RDLC vs. Crystal Reports | 22 Jun 2006 16:51 GMT | 9 |
I am currently using ASP.Net 2003 and will be upgrading to 2005 sometime in the near future. I have been having issues with using Crystal Reports that were included with .Net to handle my reporting needs. I was wondering if anybody has an opinion on how the new
|
| Getting Users FullName | 22 Jun 2006 16:29 GMT | 1 |
The following code works fine on my development pc: Public Shared Function GetFullName(ByVal userID As String) As String Dim sQry As String = "WinNT://" & userID.Replace("\", "/") & ",user" Dim oUser As DirectoryEntry = New DirectoryEntry(sQry)
|
| Best Practice: Get all Friends of a User | 22 Jun 2006 16:28 GMT | 1 |
Hi NG, I am writing an application in ASP.NET 2.0 where a user can login and then receives a list of all his friends / cars / products whatever. What is a best practice for getting an UserID, with which I can join
|
| ddlb clearing | 22 Jun 2006 16:12 GMT | 2 |
Depending on the month selected elsewhere I show a variable number of days in a drop down list box. What is the simplest way to clear the entries out of a drop down list box so I can always refresh it from the start? I see the ListItemCollection class
|
| asp.net 1.1 datagrid and DataNavigateUrlFormatString | 22 Jun 2006 16:12 GMT | 3 |
All, I am using a datagrid on a 1.1 .aspx page that has a hyperlink column. I am using 'DataNavigateUrlFormatString' to set the URL to browse to once the user clicks on the link i.e.
|
| wrong test? | 22 Jun 2006 15:56 GMT | 4 |
This is a test I made that I believe has a wrong solution, they say the correct answer is C ?!? ---- You are an asp.net developer and currently you are working on te sql
|
| MessageBox | 22 Jun 2006 15:44 GMT | 4 |
I've created a simple ASPX form that displays a record from a SQL Server table. I have a "Delete" button on the form. When the user clicks it, I want to prompt the user with a message ("Are you sure you want to delete... ?").
|