| Thread | Last Post | Replies |
|
| Set application variable from a class | 22 Feb 2006 17:33 GMT | 1 |
I am trying to set an application variable from a class file in my website. Currently, the class file inherits from System.Web.UI.Page I also referenced all the namespaces a normal webform would. However, when i try save my application variable like such:
|
| .NET forms authentication role-based redirection? | 22 Feb 2006 16:55 GMT | 2 |
Thanks in advanced for any help. I am new to .NET and am trying to do the following: Certain paths within the application are public, while certain paths only are for registered users, and certain paths for administrators.
|
| Access Denied to access db with asp.net | 22 Feb 2006 16:51 GMT | 3 |
First of all, I'm new in asp.net. I'm trying to perfom a web application with asp.net and beginning with this I'm trying to access to an access db, but when I try my web form, exactly when I push the button that executes the sql code to access the db, I
|
| Strange query string behavior | 22 Feb 2006 16:44 GMT | 1 |
This question is one of pure curiosity. Clearly the url is incorrectly formatted, but the funny is most of the time it works. Occasionally it does not work. By not work I mean does not call page load. By work I mean calls page load.
|
| Best practices for creating reports | 22 Feb 2006 16:29 GMT | 3 |
I have an ASP.NET 2.0 application. I need to generate some documents (reports) like invoices, orders, etc. Users need them to preview and print. Which of methods is the best for doing it: 1. Creating HTML page containing data (problems with rendering and
|
| Problem with making GridView Visble and Invisible. I am on this for 1 week. Need help. Thank You. | 22 Feb 2006 16:29 GMT | 1 |
I have a GridView in my page which is created in runtime. It works fine. My page has 2 Asp Buttons: - The HIDE button makes GridView.Visible = False; - The SHOW button makes GridView.Visible = True.
|
| Returning top X number of items... | 22 Feb 2006 16:27 GMT | 2 |
Here is my working code to pull Yahoo business news RSS feed. Can anyone show me how to only return the top 3 or 4 news articles? <%@ Import Namespace="System.Xml" %> <script language="VB" runat="server">
|
| How to load a Javascript file in Asp.Net 2.0? | 22 Feb 2006 16:04 GMT | 2 |
I have MyPage.aspx created from a master page. I want to load the MyPage.js with javascript functions. How can I load this file in my runtime code, i.e., MyPage.aspx.vb? I am working in Asp.Net 2.0.
|
| Debbuging mode | 22 Feb 2006 16:01 GMT | 1 |
How can I go into debbuging mode without building a whole project. If I change something on my page and press F5(Debugging), I would like that only this page is builded again not whole project. It's too slow otherwise.
|
| Stripping out unwanted characters | 22 Feb 2006 15:52 GMT | 3 |
How can I strip out unwanted characters in a string before updating the database? For instance, in names & addresses in our client table, we want only letters and numbers, no punctuation. Is there a way to do this?
|
| How to disable security questions in user accounts? | 22 Feb 2006 15:47 GMT | 1 |
How do I disable security questions in accounts in ASP.NET 2.0? Thanks.
|
| How to use variable instead of session | 22 Feb 2006 15:41 GMT | 1 |
I use the following code in OnRowDataBound for getting the column sum in a GridView: Protected Sub dg(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs)
|
| An unhandled security exception has occurred. | 22 Feb 2006 15:13 GMT | 1 |
I have an ASP.Net 2.0 page that inherits from a class that contains a Page_Error handler. In the Page_Error handler I use Server.GetLastError to determine what caused the error. Normally this works great and all of the pages use the common error
|
| .ASP = Timer() and in .ASPX = ??? | 22 Feb 2006 15:07 GMT | 1 |
I'm searching a possible way to do something like this, but in .aspx: VBscript <% Dim startTime, abc
|
| Drop Down SelectedIndexChanged will fire sporadically | 22 Feb 2006 15:01 GMT | 2 |
I have a problem where my SelectedIndexChanged on a drop down will fire sporadically. When it won't fire, I go into Debug and set a break point on the SelectedIndexChanged event, it will then fire in debug mode, and will also fire after that when not in debug mode. Seems like ...
|