Can Freetextbox Display Links That Were Not Explicitly Added
May 5, 2010
I would like to display links that are pasted in as links rather than text but freetextbox does not seem to do this. For instance, if somebody pastes in [URL] it looks like a link but shows up only as text. Do I need to convert this myself or is there a setting in the editor to take care of this?
View 1 Replies
Similar Messages:
Mar 10, 2011
I recently updated my FreeTextBox to version 3.3.1. The primary reasons for my update was the previous version I used did not work in Chrome and I have upgraded all of my client's sites to .net 4.
The latest version works fine in Chrome. In Internet Explorer 8, the textbox display area is presented as a vertical scrollbar about 10 pixels wide in the middle of the box. The text is not able to be viewed, edited or modified in any way.
I have searched and found many other posts in many places about problems with FTB in IE8. Those mostly reference the IE8 Beta. do not suggest a link or search in the FTB forums. I also attempted to post in the FTB forums as I have been registered there for years. With the new forum, I have tried to recover my password numerous times, I never receive the email. I have attempted to register numerous times. Each attempt at a new registration says that my email address is already used.I am slow to believe I am the only one that is experiencing this issue.
View 2 Replies
Mar 23, 2011
Is it possible to display an image in a FreeTextBox? If yes, how can I do this?
EDIT:
I want to load images from the attachment of an EmailMessage and display it in a FreeTextBox & Label.
EDIT 2:
This is the code I use:
FindItemsResults<Item> findResults = service.FindItems(WellKnownFolderName.Inbox,
new ItemView(100));
foreach (EmailMessage item in findResults.Items)
{
item.Load();
if (!list.Contains(item.Id.UniqueId))
{
DataRow dr = dt.NewRow();......
View 2 Replies
Aug 13, 2010
I'm having a strange issue with MVC 2.0 that I can't find any information about.
Basically, I'm adding ASP.NET 4.0 WebForms URL routing for legacy pages on an application that also has MVC pages. Once I add *any* routes.MapPageRoute to Global.asax.cs, all of my MVC ActionLinks/etc immediately break and all point to the first "MapPageRoute" that was registered.
If I comment out the first MapPageRoute line, then all of my MVC links suddenly direct to the next MapPageRoute I have defined.
what's wrong? I checked my route names and none are duplicate, and none of the routes I am adding conflict in any way to my MVC routes. It seems as though I might have some sort of web.config configuration issue?
View 8 Replies
May 11, 2010
NavigateUrlField does not work as expected! Althrough it is assigned properly MyAdRotator.NavigateUrlField = "AdvertURL" the rendered code is missing href attribute of the link e.g. <a id="blahblah" target="_blank">etc. I tried with absolute paths/urls and relative as well but, it still shows up only the images properly while link is missing.
View 5 Replies
Jul 22, 2010
my sitemap path currently displays the root node of my website and only a child node. it is binded to the following web.sitemap:
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="~/home.aspx" title="Home" description="">
<siteMapNode url="~/biography.aspx" title="Biography" description="">
</siteMapNode>
<siteMapNode url="~/links.aspx" title="Links" description="">
</siteMapNode>
<siteMapNode url="~/movies.aspx" title="Movies" description="" >
</siteMapNode>
<siteMapNode url="~/contact.aspx" title="Contact" description="">
</siteMapNode>
</siteMapNode>
</siteMap>
however i want the breadcrumb to display links exactly like my menu. for ex: home|links|bio|register not the child and its parent node!
View 4 Replies
Dec 20, 2010
I am trying to create a RadioButtonListWithOther class that extends the RadoButtonList but I can't get the "Other" textbox to render on the page. When I step through while debugging I can see the control in the parent control's Controls collectio but it still doesn't render.
public class RadioButtonListWithOther : RadioButtonList
{
private TextBox _otherReason;
public RadioButtonListWithOther()
{
_otherReason = new TextBox();
_otherReason.TextMode = TextBoxMode.MultiLine;
_otherReason.Rows = 6;
_otherReason.Width = Unit.Pixel(300);
_otherReason.Visible = true;
}
protected override void CreateChildControls()
{
this.Controls.Add(_otherReason);
this.EnsureChildControls();
base.CreateChildControls();
}
protected override void OnSelectedIndexChanged(EventArgs e)
{
_otherReason.Enabled = false;
if (OtherSelected())
{
_otherReason.Enabled = true;
}
base.OnSelectedIndexChanged(e);
}
public override string Text
{
get
{
if (OtherSelected())
{
return _otherReason.Text;
}
return base.Text;
}
set
{
base.Text = value;
}
}
public override bool Visible
{
get
{
return base.Visible;
}
set
{
//Push visibility changes down to the children controls
foreach (Control control in this.Controls)
{
control.Visible = value;
}
base.Visible = value;
}
}
private bool OtherSelected()
{
if (this.SelectedItem.Text == "Other")
{
return true;
}
return false;
}
}
Here is my code to add an instance of this control to the WebForm:
protected override void CreateChildControls()
{
var whyMentorOptions = new Dictionary<string, string>();
whyMentorOptions.Add("Option 1", "1");
whyMentorOptions.Add("Option 2", "2");
whyMentorOptions.Add("Option 3", "3");
whyMentorOptions.Add("Other", "Other");
mentorWhy = new RadioButtonListWithOther
{
DataSource = whyMentorOptions
};
this.mentorWhy.DataTextField = "Key";
this.mentorWhy.DataValueField = "Value";
this.mentorWhy.DataBind();
Form.Controls.Add(mentorWhy);
base.CreateChildControls();
}
View 1 Replies
Mar 11, 2010
I have 2 views for a input operation in my application.
The first view (lets call it view1) submits a form. Based on the form some operations on database is done and second view(View2) is returned with some other data from the database as a model.
[Code]....
Now, since I return a new view and not a action redirect the url is still http://url/View1 but everything works as it is supposed to.
When I submit the form in View2 it calls the View1 action method, not the View2 action method. Probably because the url is still View1.
View 1 Replies
Mar 16, 2011
In my web application, I use an exit button which runs session.abandon to close the session and then close the browser.It does not work with multi-tabs in IE. If I open my application in two tabs, I click on the exit button in one tab which abandons the session and close the tab. But the application in another tab can still work.Is there any way to close the session for this application in all the tabs?
View 1 Replies
Feb 3, 2010
On MasterPage I used Page attribute and call FindControl for tab controls on the content page. Lets say I get these two tab control on the content page tabID1 & TabID2. Lets assume that..TabID1 implement ActiveIndexChanged event and TabID2 doennot implement that event.
Now I want to check that if the tab control is implemet the ActiveIndexChanged event then explicitly call that event. I want to write this method generic for tabs on any content page.
1) How do I check that "The server control implement specific (say ActiveIndexChanged) event , If I have Controls (say Tab) instance?
2) How do I call the implemented event explicitly (say ActiveIndexChanged).
View 3 Replies
Mar 30, 2011
I tried to use firefox but my freetextbox didn't work. However, when I use IE6 it works properly. I tried to use google chrome and an updated version of IE and it's also working.
View 1 Replies
Mar 15, 2011
I have a aspx page which contains the freetextbox. In that there is a dropdown list which contains normal, paragraph, heading 1, important etc..etc..
In the textarea of freetextbox, i have 5 lines. I have given a enter from the middle of the 4th line to the end of 5th line and i am getting a <br> tag in the html mode. If i select the same in designer and apply the paragraph from dropdown format block commands, the <p> tag is not getting applied on to the selection. If i choose the normal option in the dropdownlist, the <p> tag is getting set for the same.
when i select the Paragraph, the <p> should be applied and when i select the normal, the format should be cleared.
View 2 Replies
Dec 13, 2010
one of my stored procedure has 4 select statments and gets data from large tables,
can i explicitly store result of stored procedure into buffer cache?,
and when calling stored procedure, than returns data from buffer cache?
View 2 Replies
Jul 23, 2010
I am integrating third party Web Page Management CMS solution into my web application. I am getting the following error when I try to recompile:
Parser Error Message: The type 'oboutSolutions.ManageWebsite' is ambiguous: it could come from assembly 'C:VS2010 ProjectsTestCMSCMSinoboutSolutions.DLL' or from assembly 'C:VS2010 ProjectsTestCMSCMSinCMS.DLL'. Please specify the assembly explicitly in the type name.
Source Error:
Line 1: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ManageWebsite.aspx.cs" Inherits="oboutSolutions.ManageWebsite" %>
Line 2: <%@ Register TagPrefix="obout" Namespace="OboutInc.Editor" Assembly="obout_Editor" %>
Line 3: <%@ Register TagPrefix="obout" Namespace="Obout.Interface" Assembly="obout_Interface" %>
View 5 Replies
Oct 16, 2010
( 1 ) In general just add the following line in html page it display as a image
<span> +44 (0)1243 860696 </span>
but when using this line inside a freetextbox control it displays differently...
(2) In Mozila only When I Edit the free text box content then the skype phone call number is changed as below
+44 (0)1243 begin_of_the_skype_highlighting +44 (0)1243 end_of_the_skype_highlighting 860696
View 2 Replies
Mar 31, 2011
My javascript doesnt detect my function using Freetextbox..
here's my code in javascript:I don't know if is the right code for Freetextbox.
function validateFreetextbox()
{
if(document.FTB_API["txt_Decs"].GetHtml == '' ) [code]...
here's the code in my asp.net/C# button.
<asp:Button ID="btn_Add" runat="server" OnClick="btn_Add_Click" Text="Add"
Width="231px" Font-Size="11px" Font-Bold="false" ForeColor="#333333"
onclientclick=" validateFreetextbox()" />
View 1 Replies
Sep 3, 2010
i m using freetextbox in gridview .
how can i get value of freetextbox in rowcommand event.
here is my code..
<asp:GridView
ID="GridView1"
runat="server" [code]....
View 4 Replies
Jan 6, 2010
I want to set the maximul length for the free text box?
View 3 Replies
Apr 4, 2011
I update my freetextbox version into 3.3.0.22838. I don't know how to update it. i just copy paste my new version in bin.
And I get this error: Could not load file or assembly 'FreeTextBox, Version=3.1.5.21298, Culture=neutral, PublicKeyToken=5962a4e684a48b87' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
Line 1: <%@ page language="C#" masterpagefile="~/Template/BackendTemplate.master" autoeventwireup="true" validaterequest="false" inherits="Backend_Modules_BookManagement, App_Web_wplihlju" title="Untitled Page" %>
View 4 Replies
Mar 27, 2011
I have a C# assembly that loads external files. This assembly is used by asp.net website. The following is the code that loads the data files
string dataDirectory = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location),"data"); filePath = Path.Combine(dataDirectory,_fileName);
The component works fine in a windows app, but when I tried to use it in an asp.net website, it fails as the site could not find the data files. And it gives me the following error:
C:WindowsMicrosoft.NETFrameworkv4.0.30319Temporary ASP.NET Filescmictranslatorsite20a8eddd864b2575assemblydl35bd4a35e8c6f79b6_98eccb01datafile.txt
View 1 Replies
Oct 15, 2010
( 1 ) In general just add the following line in html page it display as a image
<span> +44 (0)1243 860696 </span>
but when using this line inside a freetextbox control it displays differently...
(2) In Mozila only When I Edit the free text box content then the skype phone call number is changed as below
+44 (0)1243 begin_of_the_skype_highlighting +44 (0)1243 end_of_the_skype_highlighting 860696
View 1 Replies
Jul 15, 2010
I have a page which submits a form in my local system but in my production system when i click my submit button it just freezes with the error in my web developer toolbar saying Error: Sys.WebForms.PageRequestManagerServerErrorException: When calling stored procedures and 'Use Procedure Bodies' is false, all parameters must have their type explicitly set.
View 1 Replies
Nov 5, 2010
I am using a strongly-typed view to display a list of products, where every li-element gets a unique id:
<ul id="product-list">
<% foreach (var item in Model.Products)
{ %>
<li <%= "id="product_" + item.Id + """ %> >
<div class="item">
<%= item.Name %>
</div>
</li>
<% } %>
</ul>
Now I want to attach to the click-event of every single li-element, so that if the user clicks on a div-element, detailed product-informationen should be loaded asynchronously into a details-pane. I know how I can use jQuery to invoke an action-method ajax-style and also how to display the json-result which contains the product-details, BUT I have no idea, how I could attach the onclick-event to every single div, so that I can use the productId to load the details.
View 4 Replies
Dec 17, 2012
I want to send FreeTextBox content (Both text and Images) via Email.when I check my email I can see text but inestead of Image there is Image name.this is html code when I add an image to FreeTextBox
<br><img src="http://localhost:4995/niceedit/images/butterfly-314-3.jpg" alt="butterfly-314-3.jpg" border="0" height="90" width="120"><br>Please look at srcand after click send mail button I check again html of freetextbox and you can see that below
<br><img src="/niceedit/images/butterfly-314-3.jpg" alt="butterfly-314-3.jpg" border="0" height="90" width="120"><br>please compare two src
before sending
src="http://localhost:4995/niceedit/images/butterfly-314-3.jpg"
after sending
"/niceedit/images/butterfly-314-3.jpg" alt="butterfly-314-3.jpg"why it changes? How can I don't let src changing?
View 1 Replies
Dec 20, 2010
I have data in mydatabase. My AnswerText in the database is test1,test2,test3 While retrieving it is displaying as test3,test1,test2. I am using the below code to display the data.
Dictionary<string, string> dicKeyValues = new Dictionary<string, string>();
for (int i = 0; i < cnstsData.Answer.Count; i++)
{
dicKeyValues.Add(AnswerText, AnswerImage);
}
DataList.DataSource = dicKeyValues;
DataList.DataBind();
I want to display the AnswetText as test1,test2,test3. Basically i want the same order which i added to the database while retrieving also.
View 8 Replies