Forum: Visual Basic 4 / 5 / 6 Sep 5th, 2008 |
| Replies: 0 Views: 215 |
Forum: IT Professionals' Lounge Jul 1st, 2008 |
| Replies: 9 Views: 1,264 |
Forum: MS SQL Jun 12th, 2008 |
| Replies: 2 Views: 1,166 Re: Help - Union Select - Using VB.Net Hmmmm, I think you want a join instead. Try something like this:
SELECT User_Id,User_Name,Ms_Menu.Menu_Id,Menu_Name
FROM dbo.Ms_Menu LEFT OUTER JOIN dbo.Tbl_User ON Ms_Menu.Menu_Id =... |
Forum: IT Professionals' Lounge Jun 11th, 2008 |
| Replies: 9 Views: 1,264 What's the "standard" OSS equivalent to asp.net? Ok, I've got a newbish question that Google is turning up tons of different answers too....hopefully I can get some interactive input.
I've been working in Microsoft shops doing web development for... |
Forum: ASP May 1st, 2008 |
| Replies: 0 Views: 740 What is client side vbscript? I've just inherited some classic ASP code that apparently uses client side vbscript. The bulk of our code is classic ASP with server side VBScript, but I've always done any client side with... |
Forum: JavaScript / DHTML / AJAX Mar 4th, 2008 |
| Replies: 0 Views: 466 |
Forum: JavaScript / DHTML / AJAX Sep 14th, 2007 |
| Replies: 3 Views: 2,801 |
Forum: JavaScript / DHTML / AJAX Sep 12th, 2007 |
| Replies: 3 Views: 2,801 |
Forum: MS SQL Mar 7th, 2007 |
| Replies: 0 Views: 1,626 |
Forum: ASP.NET Feb 13th, 2007 |
| Replies: 6 Views: 4,588 Re: How to bind a value in GridView to other data? Thanks all...yes, I can write my own query, and that's what I ended up doing. I was just trying to abstract it out as much as possible, without having to make custom queries, stored procs, etc. for... |
Forum: ASP.NET Feb 9th, 2007 |
| Replies: 6 Views: 4,588 |
Forum: Site Layout and Usability Feb 8th, 2007 |
| Replies: 21 Views: 4,812 Re: where can i find a good HTML editor ? I'm a fan lately of a program called Notepad++ for Windows. It's a straight text editor with syntax highlighting - you didn't say if you wanted WYSIWYG or not. If you do, I'd check out a program... |
Forum: ASP.NET Feb 8th, 2007 |
| Replies: 6 Views: 4,588 How to bind a value in GridView to other data? I'm sure this is easy, but I'm seeming to have a brainfart or something and can't find any ways to do this....
I have a gridview, which is displaying data from an objectdatasource/tableadapter. One... |
Forum: RSS, Web Services and SOAP Feb 7th, 2007 |
| Replies: 5 Views: 3,161 |
Forum: RSS, Web Services and SOAP Feb 6th, 2007 |
| Replies: 5 Views: 3,161 |
Forum: RSS, Web Services and SOAP Feb 5th, 2007 |
| Replies: 5 Views: 3,161 |
Forum: ASP Jan 30th, 2007 |
| Replies: 2 Views: 4,920 |
Forum: ASP Jan 24th, 2007 |
| Replies: 2 Views: 4,920 |
Forum: VB.NET Apr 1st, 2006 |
| Replies: 1 Views: 11,523 |
Forum: VB.NET Feb 14th, 2006 |
| Replies: 1 Views: 4,789 Re: How do add a blank choice to dropdownlist Derrrr, I found some old C# code I used in another project, I'm hoping to try it tonight after work. I think this might work?
// Add blank option
ddlDepartment.Items.Insert(0, new ListItem("",... |
Forum: VB.NET Feb 13th, 2006 |
| Replies: 2 Views: 3,268 Re: Problem with VB.NET and MS Access Doesn't Access have some sort of limit on concurrent usage or something? It seems like I remember it not liking to be used in a true "multi user client-server" setup. Do you know if when it gets... |
Forum: VB.NET Feb 13th, 2006 |
| Replies: 1 Views: 11,523 |
Forum: VB.NET Feb 13th, 2006 |
| Replies: 1 Views: 4,789 How do add a blank choice to dropdownlist I know this is probably a basic question, but I'm stuck and can't seem to figure it out :-/
This is in VB.NET 2005 and I'm making a windows forms app. I'm filling a DataTable from a SQL command,... |
Forum: VB.NET Feb 9th, 2006 |
| Replies: 2 Views: 2,670 |
Forum: VB.NET Feb 4th, 2006 |
| Replies: 2 Views: 2,670 |
Forum: ASP Oct 28th, 2005 |
| Replies: 2 Views: 7,575 Re: Losing session variable problem...help! Hmmm, for some reason it isn't, or at least your code puts an extra "/" in. The Request.ServerVariables("URL") is including the leading "/". I dunno, our setup is messed up, the test environment... |
Forum: ASP Oct 28th, 2005 |
| Replies: 2 Views: 7,575 Losing session variable problem...help! I've implemented a security method where a user goes to a page, if they are are session authenticated, they redirect to a central login page, and then if they login correctly they are redirected back... |