| Thread | Last Post | Replies |
|
| Problem with RadioButton | 29 Dec 2006 11:16 GMT | 4 |
RadioButton have property Checked (true or false). If I make RadioButtons with code, without drawing by mouse than I have problems. I write like this: Dim rb(0 To 2) As RadioButton
|
| design guidance please :user controls and centralizing roles-related display stuff | 29 Dec 2006 10:20 GMT | 8 |
I'm looking for some design guidance on a collection of projects I'm working on. The project involves a bunch of websites constructed out of a collection of user controls. Different user populations with different access rights and
|
| CreateUserWizard | 29 Dec 2006 06:04 GMT | 2 |
How can I disable the UserName option in the CreateUserWizard and use the Email instead of UserName. At the least how can I pass @Email as a parameter to the Stored Procedure for Creating a new user so that I can enter it instead of
|
| updates to cached datasets commited instantly? | 29 Dec 2006 05:47 GMT | 1 |
if i share a dataset & dataadapter in a web apps cache, and i have a webform which in page.load does a dataadapter1=cache("adapter1") dataset1=cache("dset1")
|
| Set to automatically email | 29 Dec 2006 05:26 GMT | 1 |
I know how to create a page that will email. And I can also create a page that can iterate through a database, emailing everyone in the table. However, I need to set up a page or process - whatever, so that, each day, each person who signed up for this info, will be emailed ...
|
| Using outside SMTP servers. Doable? | 29 Dec 2006 02:25 GMT | 5 |
I have a client that would like to enable some email notification within their application. Normally, I'd just send an email thorugh their SMTP server and be all set. The catch here is that they are going to hose their web site in-house, but
|
| ASP.net Plugin AppDomain issues. | 29 Dec 2006 00:51 GMT | 4 |
Situation: Using C#, ASP.Net Requirement: 1. ASP.net application with virtual hosting service.
|
| ASP.NET 2.0 - Losing controls added in post back | 29 Dec 2006 00:34 GMT | 12 |
I'm adding checkbox controls to a panel in a post back, I then have a second post back in which I attempt to process the checkbox controls however they seem to have disappeared off the panel. The following code demonstrates what I'm trying to do.
|
| type info from a non-instantiated class | 28 Dec 2006 22:18 GMT | 2 |
Does anyone here know how to get the type from a variable representing a non-instantiated class? Something like this.... Dim a As MyClass Dim t As System.Type = GetType(a)
|
| CType and downcasting classes | 28 Dec 2006 22:16 GMT | 2 |
I'm trying to find the method I need to explicitly cast a class to a type of one of the classes that inherits from it. I'm passing in the type of the class I want to cast to as a parameter of my method, but the procedure doesn't me using this. Here's the simplified code....
|
| Javascript variables in ASP.NET (screen resolution) | 28 Dec 2006 21:25 GMT | 11 |
Frens, I am trying to get screen resolution of the client machine using javascript and use those values in my project. I looked at some of the examples given in this group, i tried to implement the same but
|
| newbie question - capture user control property values (ascx) to an aspx file | 28 Dec 2006 21:23 GMT | 5 |
newbie question - capture user control property values (ascx) to an aspx file sorry if this is a fundamental question. im new to c# and .Net. is there a way to expose a property from an ascx file (user control) to
|
| Byref / Byval? | 28 Dec 2006 21:15 GMT | 5 |
Until just recently most of my functions would have all been using Byval, when I realised the advantages of ByRef, where appropriate I have used it instead, my question - are there any performance reasons for using ByRef rather than ByVal?
|
| Set A Parameter Without Redirecting A Page? | 28 Dec 2006 21:15 GMT | 2 |
can somebody tell me how to set a parameter of my current URL without using response.redirect? I am trying to set a parameter - ResponseId = 4 inside a while loop. is this possible?
|
| Adding a checkbox column to a databound DataGrid | 28 Dec 2006 21:12 GMT | 1 |
I have a datagrid that is bound to a datasource. I now need to add a checkbox column to the datagrid in column(0) position which is independent of the datasource. I will be checking for the checked checkboxes on postback and writing the ID column value to a table.
|