| Thread | Last Post | Replies |
|
| Problem in global.asax.vb | 27 Jul 2005 10:15 GMT | 1 |
I have a problem with global.asax.vb file Application_Start, Session_Start are firing well But Sessio_End event is not going to be fired when I close the browser(Session)
|
| Repeater Control / DataGrid / Row[] help | 27 Jul 2005 10:02 GMT | 1 |
I'm having the issue is when I re-bind my repeater to show the changes done to it from the code behind. I'm binding this repeater from a DataTable that is stored in the ViewState for now. It might change later, but that's where I'm gettting
|
| componet or code to anaylze IIS weblog | 27 Jul 2005 09:57 GMT | 5 |
Does anyone know of any component out in the market that will allow you analyze IIS weblogs, I have been asked to develop a tool for a client that will do this for them, and the one that came to mind was webtrends. However, they don't want to buy this software....I don't know of ...
|
| Populate a label with text from a drop down list box | 27 Jul 2005 09:56 GMT | 1 |
I know this is probably real easy but I can't figure it out. I'm trying to grab the text that appears in a drop down list server control and place it in a label server control on the same page. I can get the selected value, that's easy. But I want the text.
|
| Dynamic Title | 27 Jul 2005 09:53 GMT | 2 |
I am dynamically populating title for my web page. Here is the code <title id="titleLabel" runat="server"></title> Code behind -----------
|
| Help! Sending Emails From asp.net Application | 27 Jul 2005 09:38 GMT | 2 |
I am currently developing a C# asp.net application where users are required to register. The application then generates a simple, plain text email and sends it to the new user. I have been trying to use the MailMessage and SmtpMail classes from the
|
| String Problem | 27 Jul 2005 09:02 GMT | 1 |
I have two questions. -I don't seem to be able to set string length in c#. It seems to be a variable. -when I am composing the body of an email in code, there is a "!" in the
|
| Async method raised in web page doesn't refresh page | 27 Jul 2005 08:41 GMT | 8 |
Im in a web page and call an asynchronous method in business class. the call back method is in the web page. When page processes, it runs thru code begins invoking the method then the page unloads. When the callback method is raised, only the method in the web
|
| What's the usual way to setup input textbox width (and be cross-browser) ? | 27 Jul 2005 07:43 GMT | 1 |
I'm creating a form with asp.net. I have my inputs like this : <label for="USER_COMPANY">Company Name:</label> <asp:textbox id="USER_COMPANY" runat="server" cssclass="inputBox"
|
| Dataset Conversion From 1.1 to 2.0 | 27 Jul 2005 07:04 GMT | 1 |
Has anyone seen this? We are porting a web application from .NET 1.1 to 2.0 beta, and receiving errors "The type <dataset> already contains a definition for <event handler>" Looks like the error is happening in a temporary cs file. The
|
| Authorization cookie not valid for subdomains ? | 27 Jul 2005 07:04 GMT | 2 |
I create a one day ticket in my authentication code like this : private void btnLogin_Click(object sender, System.EventArgs e) { string _userId = txtUserId.Text;
|
| How to effectively use custom error page for debugging | 27 Jul 2005 05:22 GMT | 1 |
I have a classic problem, "asp.net app works fine on my PC with local IIS" but when i deploy to my [commercial, on internet] web host (where i am a customer, not an admin), it doesn't work. So, boo-hoo, can't use VS debugging on server, and error details are not given by asp.net on ...
|
| How to create a large file with ASP.Net | 27 Jul 2005 05:18 GMT | 6 |
I'm trying to develop a webapp for an intranet application (meaning that bandwidth isn't an issue) that creates a large file, which takes a while. Basically the app runs about 8 stored procedures, dumps all of the output into a file, and does a Response.Redirect to that file. ...
|
| Catching Exception for "Maximum request length exceeded" | 27 Jul 2005 05:11 GMT | 6 |
I have an ASP.NET page that accepts input from an HtmlInputFile object. I have set the maximum size for HttpRequests to 2MB in the web.config file. And now I am trying to CATCH the "Maximum request length exceeded" HttpException when a user tries to send a file that is greater than ...
|
| Cookie not set fast enough | 27 Jul 2005 02:04 GMT | 6 |
I have an application that sets a cookie through a class. I set it in a push button event on a postback. When the page reloads, a user control checks the value of that cookie to display name information. The problem is - the cookie is not being set fast enough for the user ...
|