| Thread | Last Post | Replies |
|
| This could be shorter tight? (String to Hex) | 17 Feb 2006 17:00 GMT | 2 |
public static String StringToHex(String sString) { if (sString.Length == 0) { return ""; } StringBuilder sb = new StringBuilder(sString.Length * 2);
|
| How to do this??? | 17 Feb 2006 16:57 GMT | 2 |
Does anyone know how, or where i can learn how to make pages like the ones found on msn.com with videos? I am specifically interested in when you view a video, the content to the right changes depending on which video is playing (without clicking on new videos, the change is ...
|
| ASP.NET Dev & Browsers! | 17 Feb 2006 16:56 GMT | 4 |
What browsers do you all use when developing & testing ASP.NET applications? Are there any recommendations, or just whats on your pc?? Cheers, Adam
|
| Membership Provider | 17 Feb 2006 16:55 GMT | 2 |
I have a perfectly working aspnet v2 website on my local machine with the following connection strings: <connectionStrings> <add name="ClubSiteDB" connectionString="Data
|
| Formating Textbox value as short date... | 17 Feb 2006 16:47 GMT | 1 |
I want to format the text of Textbox by javascript... Any idea?
|
| Dynamic Menu | 17 Feb 2006 16:46 GMT | 6 |
Is there any way by which I can create a dynamic database driven Menu using ASP.NET/C#...... Thanks Amit Arora
|
| Caveats associated with dual processor systems | 17 Feb 2006 16:24 GMT | 1 |
My client has upgraded their server to dual-Xeon and we're getting some strange symptoms. Mostly this is happening in static classes where static properties and members aren't protected, but also strange things like a booking has been created by User A but the record was saved ...
|
| 2.0: Gridview row styles applied to TR, does not work | 17 Feb 2006 16:14 GMT | 1 |
Here I use the style attributes for a Gridview, such as AlternatingRowStyle-BorderColor <asp:GridView runat=server ID=gv_tabular_data AllowPaging=false AllowSorting=false
|
| 2.0 GridView .. Sorting Question | 17 Feb 2006 15:52 GMT | 1 |
Ok, I've gotten somewhat handy with the new GridView. And I have it bound to a business object datasource, via the ObjectDataSource. Lets say I have 3 databound columns
|
| Getting a domain name of a site | 17 Feb 2006 15:13 GMT | 3 |
Is there a way of getting the domain name of tghe currently executing site, I tried using this silly code: public static string GetDomainName() { string serverName =
|
| SmtpException with email form | 17 Feb 2006 15:03 GMT | 4 |
i'm sorry for bugging you with this email form but i need it done. i have some code that is executes at the press of a button: System.Net.Mail.SmtpClient EmailMessage = new System.Net.Mail.SmtpClient(); EmailMessage.Host = "smtp.gmail.com";
|
| Get windows account details from user | 17 Feb 2006 14:43 GMT | 1 |
Hi. We are using Windows authentication and can easily get the Windows login account name through Context.User.Identity.Name. But is there a way to retrieve the First Name and Last Name properties of the login from Active Directory?
|
| Confirmation Message Box (return Value from Javascript to ASP.NET program ). Please help !!! | 17 Feb 2006 14:42 GMT | 3 |
I just have a question about using confirmation message box in ASP.NET program. It's an emergency !!! In my program, I have an ASP button runat='server' that calls a Sub Function when users click this button. In this Sub Function, I have some
|
| no timeout in form authentiation | 17 Feb 2006 13:28 GMT | 3 |
hey, I'm trying to configure it so when users log in they don't ever have to log in again from the same machine (okay, maybe within a month or something). is there a way to do this with the standard asp.net 2.0 authentication framework? Any help is appreciated
|
| Test if Session Variable Exists!! | 17 Feb 2006 12:32 GMT | 3 |
I am trying to test to see if a Session variable exists. This was my initial attempt, and doesn't work int intInstructorID = (Session["InstructorID"].ToString() == null ? Convert.ToInt32(Request.QueryString["InstructorID"]):
|