I am trying to redirect to another page on process cancellation (triggered by cancel button).
My progress event is running on separate thread, here is the code:
Public Sub ProgressArea()
Do
Dim dt As DataTable = AdminData.getLogPercent(Session("ProjectID"))
Dim count As Integer = dt.Rows(0)("PercentDone")
Dim message As String = dt.Rows(0)("RecordDesc")
context.SecondaryValue = "Total Progress: " & count.ToString() + "%"
context.SecondaryPercent = count.ToString()
context.CurrentOperationText = message
If Response.IsClientConnected = False Then
Response.Redirect("redirect.aspx")
End If
If count < 98 Then
'calls to itself to repeat
Thread.Sleep(1000)
Else
Exit Do
End If
Loop
End Sub
Code hits the redirect , but nothing happens. However if i redirect without clicking "Cancel" button it does work.
I am completely lost. Any help?
Thank you
Hi,
I want integrate in my website the chatbot functionality, I found the component with the features that I need
https://demos.telerik.com/aspnet-ajax/chat/overview/defaultcs.aspx
But for beginning you don't have some tutorial about how integrate Google DialogFlow with this component?
If is done some tutorial will be great for evaluate the component and after decide if I purchase this package (asp.net UI ajax)
Thanks


The version I use is 2015 Q2. The ComboBox will display unnecessary vertical scroll bar in the dropdown list when "CheckBoxes" is used.
How to depress the vertical scroll bar when it's not needed?
<telerik:RadComboBox ID="RadComboBox1" Runat="server" CheckBoxes="True">
<Items>
<telerik:RadComboBoxItem Text="Apple" Value="1" />
<telerik:RadComboBoxItem Text="Banana" Value="2" />
<telerik:RadComboBoxItem Text="Pear" Value="3" />
</Items>
</telerik:RadComboBox>


Using a radcombobox which allows typing. if you put the cursor in the textbox the Home?end keys do not work. In previous versions the Home/End key moves the cursor to the begin/end of the typed text. You can see this isn't working on your demo site https://demos.telerik.com/aspnet-ajax/combobox/examples/overview/defaultcs.aspx
This was working in version 2018.2.710.45 but broken in version 2019.3.917.45

Hello,
Currently we are using the below Telerik editor and we have a Div tag inside an anchor tag and noticed the when we switch from html to design it completely changes the html structure. Does Telerik have a fix for this issue since this is a valid html
https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx
Expected HTML
<div class="image-container"><a href="~/media/9e240848ab264358a85b71a5ef739fbb.ashx?w=900" data-lightbox="9E240848-AB26-4358-A85B-71A5EF739FBB" name="AD7175-2-PR_9E240848-AB26-4358-A85B-71A5EF739FBB"></a><div class="icon-zoom"><a href="~/media/9e240848ab264358a85b71a5ef739fbb.ashx?w=900" data-lightbox="9E240848-AB26-4358-A85B-71A5EF739FBB" name="AD7175-2-PR_9E240848-AB26-4358-A85B-71A5EF739FBB"> test</a></div></div>
Telerik is change it to , as you notice it adds additional anchor tags
<div class="image-container"><a href="~/media/9e240848ab264358a85b71a5ef739fbb.ashx?w=900" data-lightbox="9E240848-AB26-4358-A85B-71A5EF739FBB" name="AD7175-2-PR_9E240848-AB26-4358-A85B-71A5EF739FBB">
</a>
<div class="icon-zoom"><a href="~/media/9e240848ab264358a85b71a5ef739fbb.ashx?w=900" data-lightbox="9E240848-AB26-4358-A85B-71A5EF739FBB" name="AD7175-2-PR_9E240848-AB26-4358-A85B-71A5EF739FBB"> test</a></div>
</div>
Please advise how this can be fixed.


Hello,
I am attempting to insert a small image next to the text as the content on all the diagram shapes using Server-side programming. I have attempted the following on 'code behind'.
DiagramShape.ContentSettings.Html = "<img src=\"" + path + "\"/>" + text;
As i understand, the diagram gets rendered using SVG, and this <img> gets replaced with an svg <image> tag and the proper attributes. The svg image elements look fine, however multiple shapes often have the same path in my case, and only the first instance of each path actually results in the image being displayed (all subsequent instances have height=0 and width=0).
Anyone ideas on how to make this work? Or how to achieve the desired effect using server-side programming?
<g transform="matrix(1,0,0,1,540,0)"><path d="M0 0 L 90 0 90 30 0 30Z" stroke-width="0" fill="#428bca" transform="matrix(1,0,0,1,0,0)"></path> <g transform="matrix(1,0,0,1,7,7.5)"> <g transform="matrix(1,0,0,1,1000000,1000000)"> <g> <g clip-path="url(#kdef29)"></g> <text style="font:normal normal normal 11px Tahoma, Arial, sans-serif;" x="-999984" y="-999987" stroke="none" fill="rgb(51, 51, 51)">text1</text> <g> <g clip-path="url(#kdef30)"></g> <image preserveAspectRatio="none" x="-1000000" y="-1000000" width="16px" height="13px" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="/folder/image.gif" clip-path="url(#kdef31)"></image></g></g></g></g></g> </p><g transform="matrix(1,0,0,1,540,0)"><path d="M0 0 L 90 0 90 30 0 30Z" stroke-width="0" fill="#428bca" transform="matrix(1,0,0,1,0,0)"></path><g transform="matrix(1,0,0,1,7,7.5)"><g transform="matrix(1,0,0,1,1000000,1000000)"><g><g clip-path="url(#kdef29)"></g><text style="font:normal normal normal 11px Tahoma, Arial, sans-serif;" x="-999984" y="-999987" stroke="none" fill="rgb(51, 51, 51)">Introduction</text><g><g clip-path="url(#kdef30)"></g><image preserveAspectRatio="none" x="-1000000" y="-1000000" width="16px" height="13px" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://localhost:51758/CourseAuthoring_WebApp/theme/default/common/icons/s_1Media1TextJump_sm.gif" clip-path="url(#kdef31)"></image></g></g></g></g></g>
Thank you very much,
Jason