Quantcast
Channel: AjaxControlToolkit Work Item Rss Feed
Viewing all 3806 articles
Browse latest View live

Commented Unassigned: AutoExtender in July/Sept 2013 Toolkit not working [27581]

$
0
0
The AutoCompleteExtender in the July and September 2013 toolkits always throw this error when the page first opens:

Microsoft JScript runtime error: 'Sys.Extended.UI' is null or not an object

I don't think it's my code because that works fine with older toolkits.

Thanks in advance for any insight or fix.

Comments: version 4.1.7.1005 exhibits this for Sys.Extended is null. What changed? What is not getting registered?

Commented Unassigned: AutoExtender in July/Sept 2013 Toolkit not working [27581]

$
0
0
The AutoCompleteExtender in the July and September 2013 toolkits always throw this error when the page first opens:

Microsoft JScript runtime error: 'Sys.Extended.UI' is null or not an object

I don't think it's my code because that works fine with older toolkits.

Thanks in advance for any insight or fix.

Comments: It turns out I needed to change from ScriptManager to ToolkitScriptManager for it to work properly.

Commented Unassigned: Javascript error in Chrome with HtmlEditorExtender: Uncaught IndexSizeError [27745]

$
0
0
I'm getting the following javascript error in Chrome:
```
Uncaught IndexSizeError: Failed to execute 'collapse' on 'Selection': There is no child at offset 3.
```
I tried adding the Text= " " fix found in another issue posting (https://ajaxcontroltoolkit.codeplex.com/workitem/27717) but that didn't stop the javascript error or the validation error. According to the blog post by the guys at Kartris (http://www.kartris.com/Knowledgebase/Chrome-AJAX-postback-issues-July-2014__k-56.aspx) this issue should be fixed again with Chrome 38. I'm using Chrome 38 and I'm still seeing this error. But maybe it is a different issue because I'm not seeing exactly what that issue described. Even the error message I'm getting is slightly different.

I'm also not sure if this is related to the other issue I've logged (https://ajaxcontroltoolkit.codeplex.com/workitem/27744).
Comments: See this post. https://code.google.com/p/chromium/issues/detail?id=395318

Commented Issue: ComboBox Issues with Tabbing [25711]

$
0
0
The ComboBox control ends up being two distinct tab-able items in the rendered HTML. This causes some unexpected behavior with regards to tabbing.

1. Assuming the TabIndex attribute of the ComboBox has not been set, when a user is tabbing through the controls on the page and they encounter a ComboBox, they will first be put into the input[type=”text”] element. If they press the Tab key again, they will be taken to the button element. If they press the Tab key again, they will be taken to the next control in the tab order. From the user’s perspective, they have to press the Tab key twice to get to the next control.

2. If the TabIndex attribute of the ComboBox has been set, only the input[type=”text”] element’s tabindex attribute is set. The button element’s tabindex attribute is not set. This often causes unexpected tabbing behavior when the user is tabbing through the elements on the form (i.e. focus can go from the input element, to another element on the form, then back to the button element that is part of the ComboBox).

Desired Behavior
It would be nice if the ComboBox only occurred as one “element” in the tab order. For example, if the form’s focus was the input[type=”text”] element and the user pressed the Tab key, focus would be set on the next control on the page rather than the button element that is part of the ComboBox control.
Comments: Is there any solution for setting focus from Ajax ComboBox to next control in a single tab key press?

Commented Issue: CalendarExtender - Impossible to select 3rd sunday of October [26813]

$
0
0
It started when someone couldn't select the date October 20th 1963, now we have a better understanding of it.
The problem occurs if “(UTC-3:00) Brasilia” is selected AND the ‘automatically adjust for daylight savings’ option is checked. It will occur every year on the 3rd Sunday of October, which is the start of daylight saving time for Brazil.
If you try to select the date it will automatically go back to the previous day, and if you type it directly it will fail at validation.


Comments: The problem also occurred to me, on moving day on daylight savings the control pointed out that the present day was the day before. And it was impossible to select the current day. The day was 10/19/2014 and it was not possible to select, in doing so automatically carried the day 10/18/2014. Next day, 10/20/2014, was not yet possible to select the day 10/19/2014 although the control was already the correct day.

Commented Unassigned: FileUpload Control Displays Upload Button with No Files [27735]

$
0
0
I am having a strange problem when using an Ajax FileUpload control inside an Ajax TabContainer control. For the purpose of illustrating my problem I have included two FileUpload controls in my code shown below. The top FileUpload control is inside the tab container and when the page first loads, the Upload button appears before I select or drag and drop any files to it. The upload button overlaps the standard text that says "Please select file(s) to upload". The other FileUpload control (that is not inside the tab container) does not exhibit this problem. What's also interesting is that if I drop a file in the FileUpload control that's inside the tab container, the issue goes away. Also if I then remove that file, the problem is not present either. So it only appears when the page first loads. I have posted my aspx code below for reference. The code behind file is essentially empty. The Page_Load() event has not code in it and the event handler for AjaxFileUpload1_UploadComplete is empty also. I have scoured the web looking for solutions or similar issues to no avail. Any suggestions or help would be greatly appreciated.

I've also attached a screen capture for reference.

```
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Test2.aspx.cs" Inherits="WarrantyEvaluationReport.Test2" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />

<title>File Upload Test</title>

<style type="text/css">
.demoarea
{
padding:20px;
background:#FFF url(../Image/demotop.png) no-repeat left top;
}

.collapsePanelHeader
{
width:100%;
height:30px;
background-image: url(../Image/bg-menu-main.png);
background-repeat:repeat-x;
color:#FFF;
font-weight:bold;
}

.collapsePanel
{

background-color:white;
overflow:hidden;
}

</style>

<script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">

</script>

</head>
<body >
<form id="form1" runat="server" style="height:100%">
<ajaxToolkit:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"></ajaxToolkit:ToolkitScriptManager>

<div style="Width:1100px; margin-left:auto; margin-right:auto"> <%-- "#d3d3d3" (Gray) --%>
<asp:UpdatePanel ID="updatePanelMain" runat="server" >
<ContentTemplate>

<asp:Panel ID="Panel3" runat="server" Height="600px" Width="1100px" >

<ajaxToolkit:CollapsiblePanelExtender ID="CollapsiblePanelExtender1" runat="server" CollapseControlID="LinkButton1" Collapsed="True"
ExpandedImage="~/Image/expand.jpg" CollapsedImage="~/Image/collapse.jpg" CollapsedText="(Show/Add Attached Files...)"
ExpandedText="(Hide Attached Files...)" ExpandControlID="LinkButton1" TargetControlID="Panel1" ImageControlID="Image1" TextLabelID="Label1">
</ajaxToolkit:CollapsiblePanelExtender>

<div style="float:left; clear:left; width:650px; ">
<%--this is div for the entire collapsible panel including its header--%>
<div ID="CollapseDiv" class="demoarea">
<%--the following link button contains a div so that the user can click anywhere in the div and get the action of the link button--%>
<asp:LinkButton ID="LinkButton1" runat="server" ForeColor="White">
<%--this is the header div (panel) for the collapsible panel--%>
<asp:Panel ID="Panel2" class="collapsePanelHeader" runat="server" style="height:30px;">
<div style="padding:5px; cursor: pointer; vertical-align: middle;">
<div style="float: left;">Attached Files
</div>
<div style="float: left; margin-left: 20px;">
<asp:Label ID="Label1" runat="server" Text="(Show Attached Files...)"></asp:Label>
</div>
<div style="float: right; vertical-align: middle;">
<asp:Image ID="Image1" runat="server" AlternateText="(Show Attached Files...)" ImageUrl="~/Image/expand_blue.jpg" BorderWidth="0px" />
</div>
</div>
</asp:Panel>
</asp:LinkButton>
<%--this is the div (panel) for the panel that actually expands and collapses--%>
<asp:Panel ID="Panel1" class="collapsePanel" runat="server" style="height:0px; padding:5px 5px 5px 5px">
<ajaxToolkit:TabContainer ID="TabContainer1" runat="server" Width="100%" AutoPostBack="True" >

<ajaxToolkit:TabPanel ID="AddFilesTabPanel" runat="server" HeaderText="Add Files">
<ContentTemplate>
<div>
<ajaxToolkit:AjaxFileUpload ID="AjaxFileUpload1" runat="server" OnUploadComplete="AjaxFileUpload1_UploadComplete" Width="100%" />
</div>
</ContentTemplate>
</ajaxToolkit:TabPanel>

</ajaxToolkit:TabContainer>
</asp:Panel>
</div>
</div>

<div style="width:600px; margin-left:25px">
<ajaxToolkit:AjaxFileUpload ID="AjaxFileUpload2" runat="server" />
</div>

</asp:Panel>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</form>
</body>

</html>
```
Comments: I'm having a similar issue with the FileUploadControl inside a Content page with the ToolkitScriptManager on the Master page... Can you verify if you are getting a javascript error using something like Firebug? I'm getting this, can't find any reference to it anywhere on the web either. ``` TypeError: $common.setText is not a function $common.setText(deleteButton, Sys.Extended.UI.Resources.AjaxFileUpload_Remove); ```

Commented Unassigned: System.ArgumentException: An item with the same key has already been added. [27684]

$
0
0
System.Web.HttpUnhandledException: Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.ArgumentException: An item with the same key has already been added.
at System.ThrowHelper.ThrowArgumentException(ExceptionResource resource)
at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
at AjaxControlToolkit.ToolkitScriptManagerHelper.GetAssembly(String name)
at AjaxControlToolkit.ToolkitScriptManagerCombiner.IsScriptCombinable(ScriptEntry scriptEntry, Boolean enableCdn)
at AjaxControlToolkit.ToolkitScriptManagerCombiner.WriteScripts(List`1 scriptEntries, TextWriter outputWriter, Boolean enableCdn)
at AjaxControlToolkit.ToolkitScriptManagerCombiner.GetCombinedRegisteredScriptContent(Boolean enableCdn)
at AjaxControlToolkit.ToolkitScriptManagerCombiner.GetCombinedScriptContentHash(HttpContextBase context, String[] bundles, Boolean enableCdn)
at AjaxControlToolkit.ToolkitScriptManager.LoadScriptReferences(HttpContextBase context, String[] bundles, Boolean forCombineAndMinify)
at AjaxControlToolkit.ToolkitScriptManager.OnLoad(EventArgs e)
at System.Web.UI.Control.LoadRecursive()

I'm thinking there should be a lock used in the following function in AjaxControlToolkit.ToolkitScriptManagerHelper.

```

internal static Assembly GetAssembly(string name) {
if (!LoadedAssemblies.ContainsKey(name))
LoadedAssemblies.Add(name, Assembly.Load(name));
return LoadedAssemblies[name];
}
```
Comments: I am also having this issue.

Commented Unassigned: ScriptResource.axd Failing on _setActiveTabIndex [27637]

$
0
0
I am experiencing 2 errors. The first is while debugging in VS2012 asp.net 4.5 x64 I receive the following error ![Image](http://www.vmcsys.com/images/VSCorruption.jpg)

JavaScript critical error at line 1, column 1 in http://localhost:8099/ScriptResource.axd?d=tpt4X7AdGiF06Z8lMRbdxY3O_pWFNcuT3Y6bh41HzJMsTDkr8jdWCUdr4B_l7Cflr0B6gwB7LVlBy1GlR2iBnIKc--LQOyrDetMAh2Aji66mEj_ixKWVNKK9zrxfEaynymZDzcgZUEQ1of5w4cdFdla6AeCllIIRvNwaS9ayxIQ1&t=b2ad012

SCRIPT1014: Invalid character

Once I click on continue I receive the following.... caused by the last line in the code below.

Unhandled exception at line 172, column 21 in http://localhost:8099 /ScriptResource.axd?d=287OQWnQVrIpiNOVvBD6FaVwN01EUI87APWCp33nfKuuJzxog48FJjl_d-7DalM3_xXeUO7jETj-JRFwrkF4VnYyjgbMSM-cmpPJeoy8QYQY6Kr7VvBNXXnBBH0ACJeUh00FiMiVDOa2GDMGvJZsBQ2&t=ffffffffda74082d

0x800a138f - JavaScript runtime error: Unable to get property '_set_active' of undefined or null reference

ActiveTabIndex: function (value) {

var self = this, opt = self.options;

if (value < -1) {
__ throw "invalid tab index";__
}

if (value >= self._tabs.length) {
value = self._tabs.length - 1;
}

if (!self._created || value != opt.activeTabIndex) {

if (opt.activeTabIndex != -1) {
__self._tabs[opt.activeTabIndex]._set_active(false);__


Comments: This happens for me when i add tabcontrol and hide all tabpanels (Visible = false).

Created Unassigned: events can only be added once? [27746]

$
0
0
I tried to use add_activeTabChanged on a TabContainer multiple times, but only the last add gets a callback, im 99% sure that this was not the case pre the jquery implementation of TabContainer...

Edited Unassigned: widget events only support one listener? [27746]

$
0
0
I tried to use add_activeTabChanged on a TabContainer multiple times, but only the last add gets a callback, im 99% sure that this was not the case pre the jquery implementation of TabContainer...

Commented Unassigned: widget events only support one listener? [27746]

$
0
0
I tried to use add_activeTabChanged on a TabContainer multiple times, but only the last add gets a callback, im 99% sure that this was not the case pre the jquery implementation of TabContainer...
Comments: The issue seems to be located in jQuery.Start.Debug.js Line: 45 body._addHandler = function(handlerName, handler) { this._handlers[name + handlerName] = handler; }; Line: 92 if (!this[eventMethodName]) this[eventMethodName] = createDelegate(this, evt, this._addHandler);

Created Unassigned: Scrollbar ajaxToolkit ModalPopupExtender [27747]

$
0
0
Hi there,

in my webpage i have a button that open a ModalPopupExtender.. and it works well... the same page when i use mobile phone.. i cant see all popuppanel because i dont have a scrollbar... the same html code.. (asp:panel, div, etc etc) without ModalPopupExtender but static it works good on mobile device with scrollbars...

I just created a exampe page.. here link webpage http://hub.flootta.com/test/test_html.aspx

the DIV yellow is static and if u can resize your browser... the scrollbars browser appears automatically in correspondence with the width of the yellow div...

the SAME DIV (color red) appears when you click on button 'OPEN PANEL - ModalPopupExtender' via ajaxToolkit ModalPopupExtender ...

BUT if u can resize your browser... the scrollbars browser dosent appears ....

can u help me??
thanks Nicola

![Image](http://www.nicolabrunelli.com/tmp/panel_scroll.jpg)

Created Unassigned: TabControl not working on IE8 [27748]

$
0
0
Hi there any chance you could fix the IE8 Tab Control problem in ajax control toolkit?

I have tracked down the problem to the following line (not doing the same thing in IE8 and IE11).

Line 199 (jQuery.jQueryUIWidget.debug.js)
this.options = $.widget.extend({},
this.options,
this._getCreateOptions(),
options);

In IE8 the methods defined in the prototype aren't copied while on IE11 they are.

So when IE8 tries to access "opt.owner.get_tabs().length;" we get a "Object doesn't support this property or method" error.


Edited Unassigned: TabControl not working on IE8 [27748]

$
0
0
Hi there any chance you could fix the IE8 Tab Control problem in ajax control toolkit?

I have tracked down the problem to the following line (not doing the same thing in IE8 and IE11).

Line 199 (jQuery.jQueryUIWidget.debug.js)
```
this.options = $.widget.extend({},
this.options,
this._getCreateOptions(),
options);
```

In IE8 the methods defined in the prototype aren't copied while on IE11 they are.

So when IE8 tries to access "opt.owner.get_tabs().length;" we get a "Object doesn't support this property or method" error.

Commented Unassigned: TabControl not working on IE8 [27748]

$
0
0
Hi there any chance you could fix the IE8 Tab Control problem in ajax control toolkit?

I have tracked down the problem to the following line (not doing the same thing in IE8 and IE11).

Line 199 (jQuery.jQueryUIWidget.debug.js)
```
this.options = $.widget.extend({},
this.options,
this._getCreateOptions(),
options);
```

In IE8 the methods defined in the prototype aren't copied while on IE11 they are.

So when IE8 tries to access "opt.owner.get_tabs().length;" we get a "Object doesn't support this property or method" error.

Comments: The problem is jQuery by using the latest version the tabs will start working again, i hacked in the latest version of the method isPlainObject and it started working again!

Created Unassigned: jQuery.Start.debug.js createDelegate not compatible with IE8 [27749]

$
0
0
The following code does not work as intended on IE8
```
function createDelegate(object, ev, method) {
var fn = function () {
var args = [];
args.push(ev);
if (arguments) {
for (var a in arguments) {
args.push(arguments[a]);
}
}
return method.apply(object, args);
};

return fn;
}
```

Replace with
```
function createDelegate(object, ev, method) {
var fn = function () {
var args = [];
args.push(ev);
if (arguments) {
for (var i = 0; i < arguments.length; i++) {
args.push(arguments[i]);
}
}
return method.apply(object, args);
};

return fn;
}
```

Commented Unassigned: TabControl not working on IE8 [27748]

$
0
0
Hi there any chance you could fix the IE8 Tab Control problem in ajax control toolkit?

I have tracked down the problem to the following line (not doing the same thing in IE8 and IE11).

Line 199 (jQuery.jQueryUIWidget.debug.js)
```
this.options = $.widget.extend({},
this.options,
this._getCreateOptions(),
options);
```

In IE8 the methods defined in the prototype aren't copied while on IE11 they are.

So when IE8 tries to access "opt.owner.get_tabs().length;" we get a "Object doesn't support this property or method" error.

Comments: Ignore my comment above the error seems to be in jquery's isPlainObject method, but replacing it with the latest version dosent resolve the error. The problem is that options.owner is not copied correctly on IE8, and looses its get_tabs method. As a last resort i modified $.widget.extend by changing ``` if ($.isPlainObject(value)) { ``` to ``` if ($.isPlainObject(value) && key != "owner") { ``` Also jQueries own extend method seems to have the same problem when you do a deep copy. Inside isPlainObject the following function returns different results. !core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") IE11 True IE8 False

Commented Unassigned: Resolved: AjaxFileUploader April 2013 Upload Error [27416]

$
0
0
I resolved this problem. I did not have the correct entries in web.config

I just update to the latest version of the Ajax Control Toolkit. I am using the AjaxFileUploader and I am now getting the following ASP exception. I was not getting this with the prior release. Could this be a permissions issue? I'm running IIS Web Server on Windows 2003 R2 Server. THe application is using ASP Version 4.0.30319


Event Type: Warning
Event Source: ASP.NET 4.0.30319.0
Event Category: Web Event
Event ID: 1309
Date: 5/7/2013
Time: 1:32:15 PM
User: N/A
Computer: IBT-2800
Description:
Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 5/7/2013 1:32:15 PM
Event time (UTC): 5/7/2013 5:32:15 PM
Event ID: 08196419444443849c97355eb97d151f
Event sequence: 443
Event occurrence: 3
Event detail code: 0

Application information:
Application domain: /LM/W3SVC/1686273646/Root/MIS-1-130124201373726250
Trust level: Full
Application Virtual Path: /MIS
Application Path: C:\Buzz\iis_root\OLI\GardenAndGunClub\MIS2013\
Machine name: IBT-2800

Process information:
Process ID: 5628
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWORK SERVICE

Exception information:
Exception type: DirectoryNotFoundException
Exception message: Could not find a part of the path 'C:\WINDOWS\TEMP\_AjaxFileUpload\16B95B50-13DA-9103-48EB-36A9A338C289\'.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileSystemEnumerableIterator`1.CommonInit()
at System.IO.FileSystemEnumerableIterator`1..ctor(String path, String originalUserPath, String searchPattern, SearchOption searchOption, SearchResultHandler`1 resultHandler)
at System.IO.Directory.InternalGetFileDirectoryNames(String path, String userPathOriginal, String searchPattern, Boolean includeFiles, Boolean includeDirs, SearchOption searchOption)
at System.IO.Directory.GetFiles(String path)
at AjaxControlToolkit.AjaxFileUpload.OnPreRender(EventArgs e)
at System.Web.UI.Control.PreRenderRecursiveInternal()
at System.Web.UI.Control.PreRenderRecursiveInternal()
at System.Web.UI.Control.PreRenderRecursiveInternal()
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)



Request information:
Request URL: http://www.gardenandgunclub.com/MIS/apply2.aspx?contextKey={DA8BEDC8-B952-4d5d-8CC2-59FE922E2923}&done=1&guid=16B95B50-13DA-9103-48EB-36A9A338C289
Request path: /MIS/apply2.aspx
User host address: 10.10.80.66
User:
Is authenticated: False
Authentication Type:
Thread account name: NT AUTHORITY\NETWORK SERVICE

Thread information:
Thread ID: 16
Thread account name: NT AUTHORITY\NETWORK SERVICE
Is impersonating: False
Stack trace: at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileSystemEnumerableIterator`1.CommonInit()
at System.IO.FileSystemEnumerableIterator`1..ctor(String path, String originalUserPath, String searchPattern, SearchOption searchOption, SearchResultHandler`1 resultHandler)
at System.IO.Directory.InternalGetFileDirectoryNames(String path, String userPathOriginal, String searchPattern, Boolean includeFiles, Boolean includeDirs, SearchOption searchOption)
at System.IO.Directory.GetFiles(String path)
at AjaxControlToolkit.AjaxFileUpload.OnPreRender(EventArgs e)
at System.Web.UI.Control.PreRenderRecursiveInternal()
at System.Web.UI.Control.PreRenderRecursiveInternal()
at System.Web.UI.Control.PreRenderRecursiveInternal()
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

Comments: I had tried to improve security by adding an entry similar to the following in web.config <httpProtocol> <customHeaders> <add name="X-Frame-Options" value="DENY This caused the 'permission denied' error, and changing it to <httpProtocol> <customHeaders> <add name="X-Frame-Options" value="SAMEORIGIN" /> solved the problem :) I found the solution here https://ajaxcontroltoolkit.codeplex.com/workitem/26961 Hope this helps...

Commented Unassigned: 'Seadragon.Seadragon.Config.js' requires version 'AjaxControlToolkit, Version=4.1.7.1213 [27613]

$
0
0
Been using the toolkit for years, but today I installed it on a new domain. I used NuGet to install it. Production environment is asp.net 4.0. Development tool is VS2012. Installed version is 7.1213.

I add the register assembly page directive. There's no problem with that. I then add a ToolkitScriptManager and run the page. It immediately crashes displaying the following error:

The requested script resource 'Seadragon.Seadragon.Config.js' requires version 'AjaxControlToolkit, Version=4.1.7.1213, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' of the ASP.NET AJAX Framework. To use this resource, make sure that the application references version 'AjaxControlToolkit, Version=4.1.7.1213, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e'.

How do I fix this?
Comments: How can I change web.config so the site rejitts? Is that some debugging configuration?

Created Unassigned: Cross-Site Scripting issues in Ajaxcontroltoolkit.dll [27750]

$
0
0
We are using Ajaxcontroltoolkit.dll In our application. We are mandated by our organization to scan our code in Veracode Site for Security Scan. While running the scan we got __"Cross site scripting flaws in AjaxControlToolKit.dll"__ Please advise to fix/overcome these flaws.

__Issues Details:__

Cross-Site Scripting - Improper Neutralization of Script-Related HTML Tags in a Web Page (Basic XSS)

Module: AjaxControlToolkit.dll (__Product Version 4.1.404122 for Visual studio 2010____)

1) In ajaxcontroltoolkit_dll.
File Name : AjaxControlToolkit.Rating
Method Name : RenderContents

2) In ajaxcontroltoolkit_dll.
File Name : AjaxControlToolkit.HTMLEditor.ToolbarButton.ImageButton
Method Name: AttributesToRender

Viewing all 3806 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>