| Thread | Last Post | Replies |
|
| Reporting PDF | 04 Jul 2007 10:50 GMT | 3 |
Currently I use ReportBuilder which is a GUI application embedded in the Delphi IDE to create custom reports. It has its benefits because it allows code to be embedded in the report that enables the designer to control every aspect of the report layout.
|
| Using a SQL statement with variable parameters and variable criteria | 04 Jul 2007 10:38 GMT | 1 |
I'm trying to populate a gridview control based on a user's search criteria, but what seemed like a trivial task turns out to be a nighmare for this newbie... maybe someone can help. Here's the (simplified) business requirement:
|
| Render ASP via ASP.net page. | 04 Jul 2007 08:58 GMT | 3 |
It is possible to render an ASP page in a ASP.net page? Options such as re-writing the ASP page isn't an option at the moment so any pointers on the above would be great. Thanks,
|
| Classic ASP pages living among a ASP.NET Web App | 04 Jul 2007 08:14 GMT | 11 |
I've built a new ASP.NET web app with the CSLA framework. The site runs fine with a small number of users, but once there is any traffic the CPU spikes at 100%. I went through and made many updates to plug various memory leaks. Glad that I did that and it probably helped out
|
| RowCommand: accessing ObjectDataSource from inside gridview inside a repeater? | 04 Jul 2007 06:49 GMT | 1 |
protected void gvAuthorizedSigners_RowCommand(object sender, GridViewCommandEventArgs e) { if (e.CommandName == "EmptyInsert")
|
| MembershipCollection question | 04 Jul 2007 06:45 GMT | 2 |
The static MembershipCollection class appears to work different than other collection classes... MembershipUserCollection myUsers = new MembershipUserCollection(); myUsers = Membership.GetAllUsers();
|
| Generating HTML in a web service | 04 Jul 2007 05:24 GMT | 6 |
Perhaps I have missed something but what I would like to do is have a more "controlled" method of generating HTML from a web service. I can create items using HtmlTable, HtmlTableRow, and HtmlTableCell but is there a quick method once the table has been built to get the HTML, put ...
|
| Strange exception. | 04 Jul 2007 02:40 GMT | 3 |
I am using the PetShop example's ExecuteReader function: public static SqlDataReader ExecuteReader(string connectionString, CommandType cmdType, string cmdText, params SqlParameter[] commandParameters) {....}
|
| Cache invalidate when creating a folder in app root directory | 04 Jul 2007 00:04 GMT | 4 |
i keep many items in cache such as onlineusers and ... recently i build a page which create tempfolders in webapplication root dir but i findout that it invalidate cache and i hadn't use of any
|
| why does updating a div inside of an updatepanel still refreshes entire page?!?!! | 03 Jul 2007 23:16 GMT | 7 |
i'm serving up an asp.net page using ajax futures. long story short: i have two update panels. one has a webpage in it (e.g. www.google.com).
|
| asp.net page: Javascript not loading | 03 Jul 2007 22:56 GMT | 3 |
I posted a similar question earlier and got lots of good feedback, but now I have more information: Problem: I have javascript in a user control that is not "loading" properly. When I try to call the script from my page, I get "object
|
| How delete user using Membership feature | 03 Jul 2007 21:42 GMT | 2 |
Using the membership/roles feature in ASP.NET 2.0. What is the best, cleanest way to "delete" a user? Thanks!
|
| Membership or Role Provider // Provider Model // Factories .. How does MS do it? | 03 Jul 2007 21:17 GMT | 1 |
Ok , first , I'm famaliar with both Providers. And the "Factory Design Pattern". Basically, if you don't override the default setting via config, you get the default SqlRoleProvider or SqlMembershipProvider.
|
| does a web developer need to worry about serialization? | 03 Jul 2007 20:31 GMT | 6 |
i understand the concept of serialization of objects, but do i really need to worry about this as a web developer? i tend to pass my BED (business entity definition) objects between pages by storing in session as in: oUser.firstName = 'whatever';
|
| Updating contentplaceholder after initial load..... | 03 Jul 2007 20:16 GMT | 2 |
I have a master/content page setup on a site Im writing. In the master page there are 3 panes...nav, content, toolbar. The nav pane holds a bunch of search options (order number, date, etc). The user will fill in a search field then press the appropriate
|