can i use ckeditor full fledged in c#.net [closed] - asp.net

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
on ckeditor download website:
ASP.NET Control to easily integrate CKEditor on ASP.NET pages CKEditor.NET 3.6.4.
That means Can I use CKEditor` completely in asp.net without using javascript or jQuery?
If it is not possible,
What is the different between CKEditor 3.6.4 vs CKEditor 3.6.5?
Any tool is available like that

ckeditor is a client side editor, that works with javascript, is written on javascript.
The code behind is only used for save the content of the editor back to the database.
So the editor is only work with javascript.

No you can not use it without javascript.
<CKEditor:CKEditorControl ID="CKEditor1" runat="server">
</CKEditor:CKEditorControl>
Check out this link:- http://ckeditor.com/blog/CKEditor.NET_released

Related

Ajax technique used by popular sites such as facebook [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm interested in using a similar ajax technique that facebook uses. For instance, at your home page when you click on a group on the side it loads the content in the main section but does not have to re-render the top dash or side components. I've messed around with partial views and loading them at request but it's still not the same because it does not seem like an "action" and thus it doesn't change the url and the back button will only take you back from your previous action, not from the partial view.
I was wondering if anyone could point me to a tutorial or reference that goes over this technique for ASP.NET MVC 4.
Thanks in advance!
To build a web UI that is facebook similar you need a powerful JavaScript client GUI library , the server side technologies like MVC3/4 ASP.NET will not help here.
check the sencha extjs library here:http://www.sencha.com/products/extjs/examples/
for an overview of most popular JS GUI libraries check this: http://javascriptlibraries.com/

Bootstrap for ASP.NET webform [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
i am trying to learn twitter bootstrap on ASP webforms, can anyone tell me how to apply bootstrap on menu control that loads from sitemap data source. I will appreciate if there is any tutorial link available for webform specifically. Thanks
This tutorial is good:
http://geekswithblogs.net/JeremyMorgan/archive/2012/09/18/how-to-use-twitter-bootstrap-on-an-asp.net-website.aspx
It's a pretty general question you have, but basically you want to assign a DOM ID to your web controls, and the javascript is going to look pretty much the same as you would find in the Twitter Bootstrap examples.

How to download the whole source code from the website [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
i need to download the HTML source code of a particular website.website is created with language asp.net.is there is any software .i don't know how to do can any one please help me.Thank you
You can't. Asp.Net is a compiled language, what you get in your browser is the output of the compiled dll's that conform the application.
In most browsers, to get the HTML, you can right click -> 'save as...' or right click -> 'show source code' -> right click -> 'save as...'.
This won't get you the asp.net source code, however, just the resulting static page.

how to disable the browser back button in asp.net 4.0? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How to disable the browser back button in asp.net 4.0 on single or double click of browser?
please respond me quickly.
asp.net is a server side script and can't change anything in the browser, which is on the client side.
There is no way to do it. Becaus this functionality is build in browsers, not in you website. The only way to make a workaround is to open some window without button panels, though this won't help for all browsers.
You can send javascript back to get the behavior you want.
As the following article shows you have two options:
Open in a new window.
Use history forward to disable (to the user) the functionality.
http://viralpatel.net/blogs/disable-back-button-browser-javascript/

div problem in asp.net [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
strong text
i am using asp.net in visual studio 2005
how can i put my controls from toolbox any where i want in my aspx page
it does moves freely as in windows application
plz help
It doesn't work like that I'm afraid, not for ASP.NET web applications nor any web application that uses HTML for its markup language for that matter. This must be achieved with proper semantic HTML and CSS.

Resources