| Thread | Last Post | Replies |
|
| Simple help with AJAX & script-callable web service | 27 Nov 2007 18:23 GMT | 4 |
Hi. I'll try to explain this as best as possible. I have a script-callable webservice that returns a string. I am trying to simply load a page and then document.write the return result from a webservice called a service reference. Currently I have to click a button on the ...
|
| custom server control event before Page_Load fired | 27 Nov 2007 16:25 GMT | 2 |
I have noticed, that some custom server controls are able fire its own events e.g. someGrid_PageIndexChanged before the Page_load event.
|
| Design issue: Handling null datetimes from legacy databases. | 27 Nov 2007 15:16 GMT | 3 |
I'm writing a demo website in VB/Dot Net 2.0. The database is SQL 2000 and the design is at least partially legacy. (And this is the first real web work I've done in 2.0. All previous work was in 1.1) It is my intent to stay as close to defaults as possible: i.e. using the ...
|
| Maintaining URL encoding for comman (",") | 27 Nov 2007 14:53 GMT | 1 |
I am passing URL encoded value in query string and then on server side I process this query string. There is one situation that is bugging me. The value from client side can contain "," (commas) and I URL encode the value and then explictly replace "," with "%2C". So far so good. ...
|
| Adding records to a DropDown control | 27 Nov 2007 14:49 GMT | 1 |
I have a DropDownList control that is bound to a table with an ID and name. i added a selection option called <new> with a value = -1. When I choose this -1 value record I use OnSelectedIndexChange event to add the new country to the table and that is working fine. next I want to ...
|
| Need help, get error "Object does not match target type" in one instance of an app, when others work | 27 Nov 2007 14:46 GMT | 1 |
I get the above error in some of the ASP.NET web applications on a server, and I need some help figuring out how to deal with it. This is a rather long post, and I hope I have enough details that someone who bothers to read all of it have some pointers.
|
| AJAX Autocomplete Extender problem | 27 Nov 2007 14:46 GMT | 1 |
I have an ajax autocomplete extented on a page and it works just fine in the ASP .net Development Server, but after I put it on an IIS server it doesn't work anymore. Here's the code I have: Start.aspx:
|
| Using Event on Custom WebControl | 27 Nov 2007 14:42 GMT | 1 |
Hi all, misters, I have a custom web control, and I want use it in my main user control ASCX. My webcontrol has one event, see source code above /// <summary>Control DropDownExtender para Ordenacion</summary>
|
| Transfer Stream of Recordset | 27 Nov 2007 14:34 GMT | 7 |
I am migrating a large COM system solution to ASP.NET To transfer data from Web to client this application uses streams of ADO recordset, example: Clasic ASP (VB Script):
|
| AutoComplete not filtering with Ajax | 27 Nov 2007 14:06 GMT | 4 |
Hi, I have a text box which I have associated with an AutoCompleteExtender. e.g. <cc1:AutoCompleteExtender
|
| adding values into a drop down list | 27 Nov 2007 12:41 GMT | 1 |
Is there a way to add dynamic values into a drop down list? I mean, I will do a query to count how many items I have and then add that number into the ddl. For example if the query result is 9, then I will add item 1 to 9 into
|
| Javascript with IE 7 | 27 Nov 2007 11:53 GMT | 6 |
I am having problems with "document.getElementsById " in IE7 where it will throw an error. The same piece of code works perfectly in IE 6 and Firefox 2. Sample code as shown below. What can be done? Thanks. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="TestForm1.aspx ...
|
| How to get rid of "width: 3px" separator in horizontal asp:menu control? | 27 Nov 2007 11:38 GMT | 1 |
I want to use a horizontal tabbed menu and took this solutions as a template: http://www.java2s.com/Code/ASP/Components/TabcontrolDemoC.htm Everything is cool, but in my menu there are no spaces supposed to be
|
| MVP Pattern with .aspx Pages, and FXCop Error | 27 Nov 2007 11:32 GMT | 6 |
All In order to facilitate more effective unit testing for .aspx and .ascx items, I am using the MVP pattern. I therefore have the following entities: interface IMyPageView
|
| Dynamic Javascript Confirm Box from ASP.NET | 27 Nov 2007 09:27 GMT | 1 |
Anybody know how to display a dynamic message in a confirm dialog. I have 2 check boxes and a button. On button click I want to be able to display a confirmation dialog depending on whether or not I have the checkboxes checked. No check = no dialog, check 1 = "Are you sure you
|