| Thread | Last Post | Replies |
|
| file open with web app | 09 Jun 2008 12:12 GMT | 5 |
Hi I am able to upload files to a server with a .net web application. The problem is I am providing a hyperlink so the user can open the file after it is placed on the server. For the URL I am using the absolute path to the file and setting this dynamically after the file is ...
|
| Accessing controls over an ASP.NET Page in an other project | 09 Jun 2008 12:05 GMT | 1 |
The controls placed over an ASP.NET page can be accessed using following loop: For Each lControl In Page.Controls . . . .
|
| HTML --> TIFF/JPG | 09 Jun 2008 10:46 GMT | 2 |
I need to save an aspx page as an image (for juridical reasons.) The user should be able to save the page as an image in a database. So I am looking for a way to render the aspx page into a TIFF or something lika that.
|
| Custom classes, ToString, and format strings | 09 Jun 2008 05:27 GMT | 2 |
I have a custom class, and I would like to overload the ToString method so that it accepts a format string like DateTime (and many other classes). I believe this involves implementing the IFormattable interface, but the stuff I found in the documentation showed it as accepting ...
|
| how to run this program from VS studio 2005 | 09 Jun 2008 04:02 GMT | 2 |
I just start to learn C#. Can I run this program from VS.net instead of from DOS. Thanks. Betty
|
| Get/set a Profile | 09 Jun 2008 03:12 GMT | 5 |
I'm looking for a way to get and update the "Profile" of a user. As I'm not logged as this user, I cannot use the System.Web.Profile class, and after having a look at MSDN, I don't see any classes among this namespace (ProfileManager, ProfileInfo...) which could help me.
|
| Typed DataSet in DLL points to wrong database! | 09 Jun 2008 03:09 GMT | 7 |
I have a DLL that implements the Business and Data Layers for a number of different websites. That DLL uses a Strongly Typed DataSet to interface to the Data Source which is SQL Server. There is a connection string in the DLL that is causes me grief. It points
|
| Steve Orr's Captcha control | 08 Jun 2008 23:39 GMT | 7 |
Steve Orr has a neat Captcha control: http://steveorr.net/articles/CAPTCHASP.aspx but aside from "dragging the control onto your toolbox.." Does anyone have any installation instructions: e.g. aspx code, etc... ?? I could not find
|
| Need Help with Registering Client Scripts | 08 Jun 2008 23:36 GMT | 6 |
I'm trying to duplicate an HTML sample I have using my ASP.NET pages. The sample contains the following within the <head> tag: <script type="text/javascript" src="flashobject.js"></script> <script type="text/javascript">
|
| Java Script in Web Content | 08 Jun 2008 20:56 GMT | 3 |
Create a Master Page, and a Web Content. When trying to use Javascript to update the ASP control, we need to find the control using: document.getElementByID("<%= IDTag.ClientID =>")
|
| SQLServer Compact Edition in Asp.Net | 08 Jun 2008 19:46 GMT | 1 |
I have a web application that shows events on a screen in a showroom so there's only one user. I thought the easiest way to implement a datastore for the events was to use a
|
| Getting DataRepeater control to work without binding EVERY time | 08 Jun 2008 16:58 GMT | 7 |
I'm developing a site. One of the features is a search page, for which I'm using a data repeater control. For the rest of the pages it is fine, but, obviously, on the search page, for the first time, there will be no search results. Only when
|
| Having "ALL ITEMS" in databound dropdownlist | 08 Jun 2008 14:26 GMT | 5 |
I seem to remember seeing a solution where a databound dropdownlist (used as a FILTER for a gridview) had the 1st item as "ALL ITEMS". It used a query with a UNION. But I can't find the example. It used no code I believe.
|
| datagrid binding problem | 08 Jun 2008 08:32 GMT | 1 |
i have a datagrid having a templatecolumn with headertext="CompletionDate".I want to bind it with either column 'CompletionDate'(datetime) or 'IsReady'(bit). If 'Isready' value is false, then Row of datagrid show CompletionDate otherwise show string
|
| OnCheckedChanged event does not seem to execute (checkbox in gridview) | 08 Jun 2008 07:42 GMT | 1 |
Greetings all and thanks in advance for any help you can provide. I am trying ultimately to get values from a gridview row when a checkbox on the row is checked. the problem I'm having is that after ticking the checkbox, the whole page refreshes (expectedly), the
|