| Thread | Last Post | Replies |
|
| String Builder | 17 Dec 2006 23:07 GMT | 4 |
I am creating a string using StringBuilder: Dim code As New StringBuilder code.Append("<script type=""text/javascript""><!--") Response.Write(code.ToString)
|
| ASP Migration - Moving Through DataSets | 17 Dec 2006 18:07 GMT | 3 |
In my migration from ASP to ASP.NET 2.0, I have a fair number of complicated HTML tables that defy anything .NET can do. Using classic ASP I created these tables (by string concatenation) by moving forward, and at times, backward through a recordset (using a static cursor rather ...
|
| [NEWBIE] How to add a custom control to the toolbox! | 17 Dec 2006 16:08 GMT | 1 |
In visual studio 2005 I've created a custom control (well I just downloaded the source code of this control from the Internet, it's a google map control). I have no .dll file for this control, but I have it's asp.net source code
|
| groupbox missing from my toolbox | 17 Dec 2006 15:36 GMT | 2 |
I cannot find a groupbox. It is not under "Standard" nor in "HTML". When I right click on the toolbox and select "choose items" it does show up with an [x] and is associated with "System.Windows.Forms". OK, maybe web projects with C# do not have a groupbox? Is that right? ...
|
| ASP.NET Security Database Requirements | 17 Dec 2006 15:06 GMT | 1 |
I have several Web sites that I am operating as either public anonymous sites or private Windows authenticated sites. Is aspnetdb.mdf being used for anything by the .NET 2.0 Framework? Is it necessary to upload aspnetdb.mdf whenever I publish these Websites or can I
|
| How is everyone else doing IE7 testing? | 17 Dec 2006 15:02 GMT | 26 |
As we all know, IE7 is now available. However, it also cannot be installed side by side with IE6. This makes it very hard to test pages on both versions using the same machine. I am guessing that most businesses simply have multiple machines, some with IE6 and some with IE7. ...
|
| Errors appear in vb file only | 17 Dec 2006 13:56 GMT | 1 |
Below is a section from my aspx web page. If I create the same but place the function GetPhotos() in a separate vb file I get the following errors underlined in blue: List(Of String) - Type 'List' is not defined
|
| mutually exclusive check boxes | 17 Dec 2006 12:48 GMT | 8 |
Can any one suggest me how to access the mutually exclusive check boxes in a table of 7 rows by 14 columns. Only one can be selected in each row. Other than checking each one with if condition is there any other way( for example by using their keys or something). Please help me.
|
| address check | 17 Dec 2006 12:20 GMT | 2 |
I am looking for a function in asp.net/vb.net to check a web address. I want to check whether the url is really existing. For example Function(http://www.prut.comm/ ) = false thanks
|
| ObjectDataSource Update command deleting rows from my database | 17 Dec 2006 10:08 GMT | 1 |
I have an object datasource control that is referencing a class in the app code directory called SQLCommands.vb. That class calls stored procs in a remote server. On my page I'm using a GridView to update fields. I click edit, and edit some info, then click update and it calls ...
|
| how to conditionally include html files in asp.net page | 17 Dec 2006 08:40 GMT | 1 |
I need to include to static html files in my asp.net page. The order of include depend on query string. Here is the pseudo code mypage.aspx: <%
|
| panel width | 17 Dec 2006 08:05 GMT | 1 |
I have a simple one (I think) I put a panel on the page. I would like the panel to take the maximum width it can. I deleted the width="x" but that did not help.
|
| Restricting Printing | 17 Dec 2006 08:03 GMT | 6 |
I need to restrict printing to certain users and log printing within an ASP.NET 2.0 application. Any suggestions on how to do this? The only idea I could come up with is launch the application in a secondary window using javascrip to keep the Print menu options from
|
| Help please with this | 17 Dec 2006 01:34 GMT | 1 |
The following will only insert one row and not all the rows Dim gvr As GridViewRow Dim gv As GridView = Me.GridView1 Dim fileCol As New Generic.List(Of FileEntry)
|
| How to login with https | 16 Dec 2006 23:48 GMT | 1 |
I have used asp.net to develop asp.net application. I want to use https with login page, the others with http. How can I do?
|