| Thread | Last Post | Replies |
|
| Handling application error in asp.net | 22 May 2008 14:24 GMT | 7 |
I am new to asp.net. when i close the browser programmatically I am getting an application error at the line given below. <param name="SessionID" value="<%= Session["SessionID"] %>"/> because of the session no more exists. Can anybody please tell me how
|
| In memory DataSet or filesystem Dataset? | 22 May 2008 13:07 GMT | 4 |
I have a wizard on a page that will dynamically create a dataset as it goes along based on user input. When the wizard is done, it will dump all of the data it collected/created in the wizard to an xml file. Should this be an in memory version or a dataset or a file based ...
|
| postback issue | 22 May 2008 10:22 GMT | 2 |
I've written som junk code below to show a problem I'm getting: On a page I've got a dropdownlist and a button using submit behaviour: <asp:DropDownList ID="tester" runat="server" AutoPostBack="true" EnableViewState="False"
|
| How do I print the contents of a Window without the URL and Page number? | 22 May 2008 09:49 GMT | 2 |
I hope there is a simple way to do this, but I haven't come across it yet. I have a page that loads and then uses JavaScript: <body onload="setMyContent('<%=param %>'); window.print();"> This just formats the HTML according to user input on the calling page and
|
| asp:Menu | 22 May 2008 09:28 GMT | 3 |
I've create menu in a webform. <asp:Menu ID="Menu1" runat="server" CssClass="toolbar" Orientation="Horizontal"> <Items>
|
| Debug Classic .ASP? | 22 May 2008 09:25 GMT | 4 |
I have spent the last three days trying to get b&st&rd Visual Interdev debugging again but to no avail. I also have VS 2003 and 2005 installed. Should I be able to use either of those to debug .ASP projects? I did try but the breakpoints are ignored like they are ...
|
| Issue with AJAX Update PANEL - PLEASE HELP!!! | 22 May 2008 08:18 GMT | 3 |
dFieldValidator ID="RequiredFieldValidator_topic" runat="server" ControlToValidate="DropDownList_Topic" ErrorMessage="Select a topic" Display="Dynamic" Width="130px"></asp:RequiredFieldValidator><br />
|
| IHttpModule type not found? | 22 May 2008 08:12 GMT | 1 |
I'm trying to create an Http Helper Module in VS.NET 2005. When I do the following the .NET ide complains that it doesn't know what the IHttpModule type is. I initially tried it without the System.Web (I'm importing the namespace). Any idea what's wrong?
|
| Any advantages? | 22 May 2008 07:58 GMT | 2 |
Hi, should I use the data components like SqlDataSource/ObjectDataSource? Or using coding by hands like below? Page_Load: ds = SqlHelper.ExecuteDataset(connectionString, CommandType.StoredProcedure,
|
| create asp:listview programmatically | 22 May 2008 07:39 GMT | 2 |
I was searching for a sample or tutorial on how to build a ListView with it's Templates and Datasources programmatically but without success. I think of building a generic Viewer of data, but columns and datasource ar not known at design time, so they have to be build dynamically ...
|
| Loading assemblies from database in an ASP.NET application | 22 May 2008 00:15 GMT | 1 |
BlankHi, I am having trouble loading assemblies from the database in my ASP.NET app. I have a default.aspx in my app that is served from a database via a custom virtual path provider. This works fine, until this default.aspx uses code in a dependent assembly (say CustomAssembly). ...
|
| preventing users from submitting inputs twice | 21 May 2008 22:56 GMT | 12 |
Im my c# web project, users click a submit button for credit card payment process. On the web server side ( on ButtonClick_Event) the user's input(name,date,cc number etc.) is processed and some transactional database processes are
|
| Reset scroll position on AJAX postback | 21 May 2008 22:38 GMT | 1 |
I have a page which has an update panel covering all of it. When I do a server postback via the update panel, the screen remains in the same scroll position - which is ok most of the time. BUT - if on one of these postbacks within the update panel, I need to
|
| .NET 3.5 version of code | 21 May 2008 22:00 GMT | 4 |
I'm having difficulty finding out what the latest version of the .NET framework's C# code equivalent is for the following: using System.Web.Script.Serialization; JavaScriptSerializer ser = new JavaScriptSerializer();
|
| AJAX postback question | 21 May 2008 19:49 GMT | 3 |
I have a simple page - 2 dropdowns, 2 textboxes. 1 set of dropdown/textbox is in the updatepanel. 1 set of dropdown/textbox is not. When I select a dropdown the textbox is updated with teh value. Why is it that the updatepanel one still seems to "flicker" on postback? I
|