| Thread | Last Post | Replies |
|
| 1.1 vs. 2.0 and DataSet.ReadXML(StringReader) | 16 May 2007 22:17 GMT | 7 |
I have a ASP.Net 1.1 application I'm working towards moving to ASP.Net 2.0. The application gets it's data from a COM layer which delivers ADO rowsets in the form of a string. In ASP.net 1.1, I came up with the following method to consume XML from
|
| How can I handle accented charac ters such as Ä in hyperlinks? | 16 May 2007 22:10 GMT | 1 |
1) I created a file called "test.html" and pasted the following code in it ------------------------------------------------------------------------------------------------------------------------------ <html> <body>
|
| Using local resource file. | 16 May 2007 19:50 GMT | 2 |
I am building an application that will utilize the local resource file. Right now the application is separated into two part, the header and the content. One of the line at the top of the header is "<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">" When I
|
| Define Web Control Property SubCategory | 16 May 2007 18:42 GMT | 3 |
I am creating a web control, in VS 2005, and I want to define sub categories in my properties. I know how to define a category: <Bindable(True), Category("Appearance") ... But how to define a main category and then add properties in sub
|
| Breakpoint in Page load bypassed | 16 May 2007 18:33 GMT | 2 |
I'm running a page, with a link which includes a querystring, pointing to a second page. when I click on the link, I need to make sure all the necessary items are correct when the second page loads.
|
| Developement questions | 16 May 2007 18:30 GMT | 5 |
I have a couple of questions about URLs. I have an app which will allow me to access my music collection if I can access the internet. It shows a list of Artists / Genres / Search etc which produces a GridView
|
| Coding the old way! | 16 May 2007 17:46 GMT | 3 |
A friend proposes to use the old (classic asp) way to write asp.net pages, i.e. mixing html with asp.net code (using Response.Write). He doesn't use either controls or events. The point is that this way one has greater control over the html output (plus the learning curve is
|
| Setting ObjectDataSource Parameter Programmatically | 16 May 2007 17:22 GMT | 2 |
How can I set an ObjectDataSource's Parameter programmatically? The slight complication here is that I want to set this NOT in the 'Selecting' method of the ObjectDataSource, but elsewhere. I was hoping I could do something like:
|
| Compiler changes its mind | 16 May 2007 16:22 GMT | 3 |
Using ASP.Net and VB.net Can anybody tell me why a file compiled with no problems yesterday and today I receive this message? I made NO CHANGES to the file.
|
| parent on different domain | 16 May 2007 15:56 GMT | 1 |
hi you guys I have a page A (must be client side only) which has an Iframe in which I open page B from different domain how can I send a message from B to A(for instance to resize the above
|
| Datagrid readonly or non visible data not passed back | 16 May 2007 14:54 GMT | 7 |
Source code below. I am using an sqldatasorce to populate a datagrid. I am using datakeyIds. I am interested in two keys which I have added to the datakeyids, however if either of the keys is not databound, set to visible=false
|
| Server.Transfer results in rendering of previous page | 16 May 2007 14:36 GMT | 3 |
On Server.Transfer(), is there a reason why the previous page's elements would appear on the new page? Note: this transfer is occuring between two pages on the same server. <Scenario>
|
| defaultRedirect not working (ASP.Net 2.0) | 16 May 2007 14:27 GMT | 4 |
I think I am missing something about how to redirect to a certain page when 404 errors occur. I want to redirect to a generic pagenotfound.aspx page. I have the following in web.config: <customErrors mode="RemoteOnly" defaultRedirect="/misc/pagenotfound.aspx">
|
| How do I do a diagonal Gradient | 16 May 2007 14:00 GMT | 2 |
I know how to do vertical and horizontal, but not diagonal. filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr= '#0f9ed3' , EndColorStr= 'white' ); and
|
| regular expression for case insensitive USA state codes | 16 May 2007 13:07 GMT | 2 |
I have a very simple web form with a textbox and a regular expression validator. The regular expression I'm attempting to use doesn't work on the client side (Javascript) tho it works on the server side. Anyone have an idea of how to make this following regex work on the client
|