web web webName: bahadir
Email: sensiz_olmuyor_t1_at_hotmail.com
Product: Firefox 2 Beta 2
Summary: web web web
Comments:
web sayfası yapmak
Browser Details: Mozilla/5.0 (Windows; U; Windows NT 5.1; tr; rv:1.8.1b2) Gecko/20060821 Firefox/2.0b2
...
Single page with multiple user web controls VS Multiple page with specific user web controls
I have a question regarding single page with multiple user web controls vs multiple page with specific user web controls
Option 1: I am of the opinion to have multiple pages with specific user web controls and use an object to store all the information as the user navigates through the application. And finally at the end, read this object and save all the information to the backend database.
Option 2: My respected team member suggests that we have only one page, with all the specific user web controls and not use an object, instead show/hide the user web controls based ...
Mulitple instances of a web user control not working on same web page
Hi,Can any body help me?I've developed one PopUp Calendar user control that has a textbox control and a link with javascript to open a popup window to show the asp:calender control. When user select any date, it closes the popup window and update the textbox value with the selected date. And this is working absolutely fine.Here is the code:CalendarControl.ascx file content...----------------------------------
<%@ Control Language="VB" AutoEventWireup="false" CodeFile="CalendarControl.ascx.vb" Inherits="CalendarControl" %>
<script language=javascript>
function pickDate(...
Web User Control to Web User Control...
Hi, I have 2 User controls on a page and want Control1 to call a method of Control2. Is this Possible?
Example:
Con1 = Datalist showing products, each with a Quantity Box and a Button.
Con2 = Repeater showing Cart Preview (name, Price)
in page.aspx.
When I click on the button on the DataList in Con1 it adds the item into the Session based Cart. However it does not update the Cart Preview. I need to call BindPreview() in Con2 in order to update the Cart Preview...
Does that make sense? argh! any help much appreciated!
PeteWeb Design Nottingham, UK
Well I can call BindPreview() from m...
Web Form and Web User Control
Hello,
I have a Web User Control (ascx) that includes a button. This button has an onclick event method.
This Web User control is included into a Web Form. (thru LoadControl).
However, when I click on the button, the event method is not executed.
What should I include in order it works fine?
Thanks in advance.
GAA.
Using Loadcontrol is using dynamic controls and when using dynamic controls you must recreate the same dynamic controls ono postback to econstruct the page control tree. It is best if you do this during the Page PreInit event.
How complex are your controls ...
Web Menus / User controls in aspx web page and .aspx C# based web templates
Dear all,
I have created several user controls and included in the webpages.
(This user control is a navigation menu consisting of images) This has to be included in all webpages. But when i tried to publish i get error messages for them. But i can’t remove since i need these user controls.
Error message given below
Error 2 The type 'WebUserControl' exists in both 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\new_latest\d203e69a\d67c356f\App_Web_ijsq-eqk.dll' and 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\new_la...
web controls and web user control
i have a problem in a web form ,
I have a webform that contains a web user control which in turn contains a html input form ,the web control events don't fire up ,When I click button ,no effect ,I don't know what is the effect of the html form which is in the web user control on the web controls in the web form ??
can any one help me
the web control event should be handle in the code behind page, is the event handler for the button you are clicking registered? You can try double clicking the button, should give you the default btn_click event handler in code behind.
Also, make ...
Can you return .net web controls in a .net page from a web service?
I've got a problem with a project. I've got to compile an entire .net page and return it as part of a Web Service for display. The problem I have is that I need to add WebControls and functionality to the page so that not only the html content and images are displayed (which I've managed) but that textboxes, labels, buttons and datasets can be displayed also. Essentially I need to make a call from one site for a page, populate the page and return it in a state as though it resided on the same server/webspace as the calling page. Code is currently built as follows into a string:
strOpenHT...
Web User Control Not rendering in Web Form
I have created a Web User control that is made up of a Multiview with 2 views inside the Multiview. I have buttons on both views and a gridview on 1 view. My question is when I drop this Web User Control on a Web Form all I see is [MultiView"MultiView1"] and when I view the from in the browser I dont see the Web User Control. I was wondering if someone could please tell me why the Web User Control is not displaying or rendering.
Thanks In Advance
Hi,
Please check your aspx file for correct reference, like following example:
TestControl.ascx:<%@ Control ...
custom web user control and web form
Guys,
I am trying to develop a context menu control for all of my pages. what i am trying to do is that i want the control to pick a datasource from the markup and then check whether its an xml file or a datatable. I created a class called datasource.
/**************************DataSource Class****************************/
public class DataSource {
/// <summary>
/// This is to identify unique elements from the markup
/// </summary>protected string _ID;
/// <summary>
/// This will be the Datasource ID e...
WEB Spell Checker does not work in Web User Control and WEB HTML Editor freezes when using AJAX Update Panel
Web Spell Checker works in program but only causes a refresh in Web User Control. The HTML Editor is frozen after the refresh. App also uses AJAX control and the Web User Control is inside an Update Panel
Hi,
Thank you for your post!
I'm afraid that you cann't use WEB Spell Checker in updatepanel because it include some inline javascript with it, but updatepanel doesn't support very well inline javascript in it.
For more information about inline javascript in updatepanel, see UpdatePanel and Rendered (Inline) Javascript
It seems that the UpdatePanel essentia...
How to compile web user control from web page?
Here is an web application which alows user to change the properties of Web User Control from web page, the problem here is how to compile the web user control behind user click 'Submit' button? I dont extravagantly hope I can get solution here, anybody can tip any ideas?Cheers...
access controls on web user control x from web user control Y
I have 2 web users controls in a page and I would like to get or set the selected values of a few dropdown boxes on web user control X from web user control Y and I also would like to know how to access functions that are on a web user control X from a web user control Y, is this possible? How can I do it?
User can access and set the values of the User Control from .aspx page through properties,using javascript and in code-behind of aspx page.The details of it are shown below
Using PropertiesIf the Sample.ascx control has two textboxes and submit button.You can access the valu...
Can my web page with a form submit to other web pages forms?
I was wondering if I created an aspx page that had a form on it that I could use the submit button to submit this form's contents to other web pages forms(servers accepting those form's data). I am thinking this would be a great way to update data on particular web pages without having to actually visit those similar web pages. Any ideas, examples would be much appreciated. Thanks in advance.
Yes you can. It's called Cross Page Posting: http://msdn2.microsoft.com/en-us/library/ms178139.aspxAlso: http://msdn2.microsoft.com/en-us/library/ms178140.aspx might ...