So here is a project outline, I need to make a web application with its core components encapsulated in Web User Controls. The reason for this is that the company will be using MOSS extensively by early next year, and we want to use these components later on as web parts. I think these web user controls will need to be flexible in terms ...
I have a textbox in an Ajax ModalPopUp. Occasionally, whenever the modal is loaded, the textbox freezes in Firefox. It's not happening in Internet Explorer - just Firefox. Any suggestions?
...
A native DotNet application will load all referenced assemblies (and their references) on first use. However, an ASP.NET will load all referenced assemblies (and their references) on first access.
Is this understanding correct?
Is there a way to force ASP.NET to load assemblies on demand (like local applications)?
The specific scenario...
I have a DropDownList, a Button and a ModalPopupExtender.
When the user clicks the button, depending on the value they've selected, I'd like to either let the button cause a normal postback, or trigger a ModalPopupExtender (and cancel the Buttons postback).
I've achieved this by using ModalPopupExtender.Show() and ModalPopupExtender.En...
The problem with onsubmit still continues when I even use preventDefault option. My problem is the same with Asp.net mvc beta ajax problem
<% using (this.Ajax.BeginForm("den2",
"Deneme",
null,
new AjaxOptions {
Up...
I have a following situation. I have a gridview and I need to dynamically add rows to it. All works fine and dandy. However, lately, I have been curious about making this process faster and more usable. I found a Callback feature in asp.net 2.0.
It seems to make sense for a case when the gridview is used ti display something. Adding a r...
'display the left product image
if intImagePos = 2 then
response.write("<td class=""ProductImage"">" & vbcrlf)
'show image
if Len(objProduct.Image2) > 0 then
response.write("<a class=""thumbnail"" href=""javascript: void(0)"" onclick=""MM_openBrWindow('image...
We have an issue that occurs from time to time. We have a web server and an application server. Our application server houses our Business Logic code which is installed as COM+ Server and Library applications. We then put a proxy on the web server to force all calls from the web server to the COM+ Server. Almost 100% of the time ever...
I’d like to be able to open a text/html file and write its contents to a container, either an HTML div or an asp label would be fine.
How do I go about doing this in the C# codefile for the page in question?
...
My Company is running several international websites for selling insurance products.
Our current setup is a Webfarm with multiple Loadbalanced Webservers hosting our ASP.NET applications. The backend is a single - yet powerful - SQL Server. (all in one data center)
Our network admins want to move to virtual servers running on VMWare.
S...
I have a database full of translations I'd like to generate either .po or .mo files. I'm using C#, but I could also port an implementation from PHP if one exists. I can't find any examples in any languages using anything other than GNUs gettext utilities. Does anyone know of one?
...
Is there a way to avoid postbacks with gridview every time a row is added to it?
In other words, can I store the DataTable on the client and pass it on to the server control when I am done to save, rather than do postbacks every time the row is added?
I searched and searched....all I could find was web services, JSON, and I have a fee...
I guess I have been using the Web Site model ever since .NET 2.0 and never looked back.
Now I'm using the Web Application mode on a few projects. How do you tell the compiler to compile .cs files in the project? I assume you can do this since the newer-MVC projects do it for the Controllers.
I have a class, RestRouteHandler, that implem...
I use several user controls, along with standard ASP.Net controls, to build my webform. Standard controls have a TabIndex property that lets me control the sequence in which the controls receive focus. Can I implement this for my user controls?
My user controls are visually simple and look like a standard textbox or dropdown list.
...
I'm dynamically adding a custom user control to the page as per this post.
However, i need to set a property on the user control as i add it to the page. How do I do that?
Code snippet would be nice :)
Details:
I have a custom user control with a public field (property ... e.g. public int someId;)
As I add a UserControl to a page,...
We have an existing publicly accessible web application with user controls, data access libraries, graphics, etc. We want to create a new secure section of the site that accesses some of the already existing resources.
Initially we created the new section of the site as a virtual directory which (we hoped) would allow us to access the p...
There is nested listviews and I want to register a button in the second listview to scriptmanager for updateing the updatepanel inside the masterpage?
...
I've a simple asp.net page (framework 3.5) and an UpdatePanel with a series of dropdownlist I want to populate asyncronously. All works fine in all major browsers (Opera, Safari, IE6, IE7, FF3), but not in Chrome.
Chrome seems to ignore the SelectedIndexChanged event who had to make the asynch request.
Anyone knows a simple workaround ...
Hi folks,
I've already got my custom header drawing in my GridView using SetRenderMethodDelegate on the header row within the OnRowCreated method. I'm having problems trying to add LinkButtons to the new header row though.
This is what the RenderMethod looks like:
private void RenderSelectionMode(HtmlTextWriter output, Control contain...
1.I have a user that wants to view the current items version history on the dispform.aspx(Item Details)
2.The version history must display all metadata for each version. Library has 5 columns and I need to display the data in those columns everytime the version changes.
I have been trying to get the version information using SharePoint ...