| Thread | Last Post | Replies |
|
| Referencing Web-service (2005) | 21 Mar 2006 15:23 GMT | 7 |
I have a web-service that references another project (the component) that actually carries out the work, the web-service is simply acting as the public interface. The web-service on occasion may return a class that is defined in the component
|
| ASP.NET 2 or 1? | 21 Mar 2006 15:17 GMT | 6 |
I'm going to start a new web app project and deciding whether to use the version 2 or old ASP.NET. The new version is too "buggy", custom controls availability and etc? What do you recommend me?
|
| Development in IIS or on file system | 21 Mar 2006 15:16 GMT | 6 |
ASP.NET 2.0 installs web projects by default in the file system, leveraging the increased security of the new personal web server, rather than relying on hacker prone IIS. However, it strikes me that this will add more headaches for testing because your development doesn't use ...
|
| How to RegisterClientScriptBlock in customwebcontrol | 21 Mar 2006 14:49 GMT | 2 |
how can i register a clientscriptblock in the page where my customwebcontrol has been placed? i tried Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "myscript",
|
| Master webpartzone | 21 Mar 2006 14:41 GMT | 1 |
In my application I would like to have a 'master' webpartzone. A zone which content is the same on every page. I tried to create as custom PersonalizationProvider which saves the content of the 'Master' zone using always the same path ("master").
|
| Security of .dll files within a web site's bin/ directory | 21 Mar 2006 13:32 GMT | 1 |
I've been working on migration of my company's VB6 ASP system to VB2005 over the last year or so, and am currently presenting my findings and recommended course of action to our management team. One of the concerns that has been raised is with regard to the .dll files that form ...
|
| Culture/Resource problem | 21 Mar 2006 13:06 GMT | 2 |
DESIGNER: <asp:Button runat="server" ID="b1" Text="<%$ Resources:Products, PopularProducts %>" /> CODE BEHIND:
|
| How to redirect to webpage with whole browser from within framework link clicked? | 21 Mar 2006 11:32 GMT | 2 |
I have a frameset asp.net site. I want add a link to logout. I can redirect the page to login page. But it showed on one frame, not my expected the whole browse area. How should I do?
|
| How to put PPT into website | 21 Mar 2006 10:57 GMT | 1 |
I have an asp.net 2.0 website and I need to display a PowerPoint presentation in it. Is there a way to convert the PPT to web page? What's the recommended way of doing this? Also, the PPT has sound and animations. Is it possible to get these into the website as well.
|
| postback and webcustomcontrol | 21 Mar 2006 10:02 GMT | 1 |
i have a webcustomcontrol (:CompositeControl) which is in an asp.net page which causes a postpack-event (ChangeSort). protected void ChangeSort(Object sender, EventArgs e) {
|
| ASP.NET 2 Web Login Control On Page Load | 21 Mar 2006 08:41 GMT | 1 |
I have a page with the Login Control. If I type the user name and password and click the enter key the page reloads without doing the login.authenicate.... if I click the actual login button, everything works fine. How to I have it work that if the person does not press the ...
|
| Getting Message that code "has been modified outside of the source editor" | 21 Mar 2006 08:05 GMT | 2 |
I'm using VS2005 and am getting messages that my files have been modified outside of the source editor. I'm working with a web project, data sources, and a web service. Things I'm noticing that are different than VS2003 are that the
|
| if statement in web.config file | 21 Mar 2006 07:55 GMT | 3 |
Currently, I have two web.config files on different machines (test and production). The only difference between the two is that the connectionstring and appsettings point to different data sources (testdb and productiondb). Is there a way to use something like an if statement or ...
|
| Determining which control cause post back?? | 21 Mar 2006 07:37 GMT | 2 |
I have a question. If javascript is disabled how asp.net determines which control has caused the post back. As we know that when we clicks on the button the buttons name goes with posted data, so asp.net can detrmine which btn
|
| use data from second sqldatasource in gridview itemtemplate? | 21 Mar 2006 07:36 GMT | 4 |
I need to convert a CompanyId in one table to Company Name from another table for an ItemTemplate. I thought I would just add another SqlDataSource but not sure how to eval with the CompanyId parameter for the where clause in the select.
|