| Thread | Last Post | Replies |
|
| HiddenField | 17 Jul 2007 17:32 GMT | 5 |
I am trying to make use the HiddenField server control to make a server-side variable visible to a client script. I set the value of the HiddenField inside of the Page_Load event. protected void Page_Load(object sender, EventArgs e)
|
| .Net 2.0 : Soap client : reusing http connections ? | 17 Jul 2007 17:04 GMT | 3 |
We have built an asp.net application that uses some web services (actually WSS web services). Because of high number of users and theirs simultaneous requests, web services are very frequently requested. Using standard Visual Studio web references, we cannot control the http
|
| get changed value only | 17 Jul 2007 17:04 GMT | 2 |
I have a text box were I can enter in a list of users. I then have a button that I verify each user. I'm running into an issue, were if I have 3 users entered in the textbox and user #3 is invalid, I then have to re-enter the correct ID, when I hit my
|
| Browser Incompatibility | 17 Jul 2007 16:59 GMT | 5 |
I create web applications in VS 2003 and the .Net 1.1 framework (we haven't moved the application forward to .Net 2.0 yet). The application looks great In IE 5.x and greater. But even a simple login page that only has textboxes look like crap in FireFox and Safari. Since
|
| How to clear a textbox on GotFocus in a web-page ? | 17 Jul 2007 16:56 GMT | 1 |
I have... well.... not very many computer-literate users to my web- site. For the textbox which expects an email address, for instance, I had to enter a default text like
|
| Emailing Code works fine in debug mode, BUT NOT when uploaded | 17 Jul 2007 16:46 GMT | 2 |
This code emails the contents of 'TextBox1' and 'TextBox3' to rcv@domain.com.. this code seemed to be working fine in debug mode and DID mail rcv@domain.com However when i uploaded the website to my hosting account, my browser popped up and alertbox saying:
|
| Do we need to close connection when we use strongly typed table adapters? | 17 Jul 2007 16:33 GMT | 4 |
I saw the Business Logic Layer pattern suggested at the following link and I found that the pattern never closes the connection: http://www.asp.net/learn/dataaccess/tutorial02cs.aspx?tabid=63 I am using strongly typed datasets and TableadApters. I assume that
|
| Server Error in '/mates' Application. | 17 Jul 2007 16:23 GMT | 5 |
I have written a simple logon page that redirects to another page when successful. All works fine on my computer but when I upload it I get the error message below. I have written it in ASP.net v2, and have put it on IIS v6 on windows server
|
| Session.Timeout after 20 seconds not working | 17 Jul 2007 16:18 GMT | 6 |
I have been working with Sessions for some weeks now, but i can't seem to solve this issue. Please have a look .. void Page_Load(Object sender, EventArgs e) {
|
| How to pass parameter from Datagrid selected row to a text box | 17 Jul 2007 16:10 GMT | 4 |
I'm using Visual studio 2005 pro and I want to pass parameter from datagrid selected cell to textbox I have Select button in my datagrid I wrote this Protected Sub GridView1_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles ...
|
| Decorating a partial class with a custom attribute | 17 Jul 2007 16:04 GMT | 1 |
I decorate my unfinished classes and methods with a custom TODO attribute (as in things To Do). Using reflection, I am then able to parse through my classes and output all TODOs to a list I can examine to figure out what is left to be done in my application.
|
| Could not load type, 1.1 to 2.0 Upgrade | 17 Jul 2007 15:46 GMT | 3 |
I'm trying to upgrade a 1.1 project to 2.0. It's a project that uses dynamically loaded controls. I've gone through the steps of upgrading the project and converting it to a Web Application, everything was working ok then all of a sudden I started getting the message "Could not ...
|
| SOAP client always returns 0 | 17 Jul 2007 15:32 GMT | 1 |
Hi all and thanx for your help in advance. I'm using MS SOAP Toolkit V3 to call my webservice (which works) but I always get 0 in result, whatever numbers I send. This is just a dummy function that adds two numbers. Do you
|
| using CSS to center text | 17 Jul 2007 14:32 GMT | 4 |
I can use margin: auto to center the text of a <p>. But only if I specify the width of the <p> <div style="border: #603 dotted; padding: 0.5em; margin: 1em 2em;"> <p style="margin:1em auto; width: 8em; text-align: left;">
|
| Advice for assigning data from a DataReader to object properties | 17 Jul 2007 12:35 GMT | 3 |
Hi group I am creating a web application that uses a simple DAL as an ObjectDataSource. To retrieve data from the database, I use a DataReader object from
|