Structured Text Input By Users Into Certain Webpages?

May 9, 2010

I have the following question on how to do the following:I have developed a website and I want certain users to give to possibility to add a text article to specific pages or maybe into a Forum. These articles are more or less having the same structure like:Big Header, manchet (intro), text with in between small headers. I would like to have this all in the same font-family and depending on the sort of text in a certain font-size.I was thinking of using TinyMCE as a base, because all typographical aspects are in there and it is also possible to add graphics and other video stuff to itt.Is this possible to use this, since I recently found TinyMCE and do not have the knowledge yet about this?And how should the structure be set up?I do hope someone could give some clues or sites where this is discussed.

View 4 Replies


Similar Messages:

Security :: Restrict Users From Certain Webpages?

Mar 7, 2010

I am developing a website that has 2 roles of users.i have made 2 folders for each type of user's web pages. how to imply security so that 1 type of user could not see other user web pages.is thier any other way or i will have to check form the databse for credidentials every time the page is visited?Also let me know why do people put web pages in folders?i am not using sql membership and not even .net classes for role management.

View 7 Replies

Security :: Give Access For Webpages For Particular Users?

Oct 27, 2010

In my application i have 4 screens such as page1.aspx, page2.aspx, page3.aspx, Page4.aspx. I have created user Settings Web Form where the admin Creates username and password for users with access only for particular pages. I have used check boxes to select their accessibility while creating user setting.

View 1 Replies

Localization :: Show Hindi / Malayalam Text In Webpages

Mar 10, 2010

I want to display Hindi/malayalam text in webpages. i done a sample by pasteing a Hindi text in a rich text box and tried to display in a literal control. it's working fine.But, I save that Hindi text to database basically it is the image descrtption. Image description datatype in sql server is Nvarchar(Max). After reading the description and puting back in literial control it just showing some question marks. How to resolve this issue.

View 6 Replies

Modular And Structured Programming (Connection Strings)

Mar 28, 2011

I was asked to design a asp.net website with modular programming, yet I have no clue what that actually means, does he mean structured programming?, everything I've found on modular programming has no relation to an asp.net website (or its code behind). Could someone explain what it means if: I have a database connection on each page of the website rather than having the connection string in the global or webconfig page? Does this mean structured or modular? In what terms could you achieve modular programming with a website that has no loadable modules? Its just a site with a few connection strings and some clever programming to do some fancy html?

I've seen other posts about webparts and cms but really have no understanding of them? Are they relevant? Unsure. My site is just a social network site that allows some one to login/create account with the website then go to his own profile and display things about himself that are saved to our database. Nothing in it requires modules as far as I can tell? So it makes me think is it a different method of actually "programming" writing the code? i.e is it stored in a different manner is it refrenced in a different manner is called in a different manner?

View 3 Replies

Php - Validate If An Web Application Gets The Users Input Or Parameters?

Oct 21, 2010

I am always thinking about validation in any kind on the webpage (PHP or ASP, it doesn't matter), but never find a good and accurate answer. For example, a I have some GET-Parameter, which defines a SQL query like DESC oder ASC. (SQL-Injection?) Or I have a comment-function for user, where the data is also saved in a database.

Is it enought to check for HTML-tags inside the data? Should the validation done before adding it to the database or showing it on the page? I am searching for the ToDo's which should be always performed with any data given from "outside".

View 3 Replies

Web Forms :: How To Remember Users Input In Web Form During Session

Dec 1, 2010

I am new to C# , i've build a simple web form which shows a result based on 4 pulldown menus. I wish to save this result during the session the user spends on the website, untill the user resubmits the form. So when coming back to the result page, the search results are still shown.http://www.estatewise.nl to see the form in action.

View 3 Replies

Stop IE Users Typing Into The File Upload Input?

Mar 17, 2010

My testers have discovered that if you type free text into a file upload input then none of the buttons on the page work until that text is removed (so the page cannot be submitted).

I am able to replicate this with the following ASPX code (with no code behind):

<%@ Page Language="C#" AutoEventWireup="true" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<body>
<form id="form1" runat="server">
<div>
<asp:FileUpload ID="fuTest" runat="server" />
<asp:Button ID="btnSubmit" runat="server" Text="Submit" />
</div>
</form>
</body>
</html>

(Note that I haven't bound any handlers to the page; despite this, the page is submitted when the submit button is clicked only if no text is entered into the upload text box)

Is there any way to prevent users from typing free text into a file upload control? It seems that this is only possible in IE - Firefox and Chrome natively prevent text from being entered into upload input fields.

I've seen solutions elsewhere which suggest hiding input and replacing it with a label / button combo, but this seems like it might cause more problems and work inconsistently across browsers.

View 2 Replies

C# - Get Text Value Of Input From FindControl?

Dec 6, 2010

I know now normally you can get the value of a text input using the following:

txtName.Text

But because my input is inside of a LoginView I am using FindControl like this:

LoginView1.FindControl("txtComment")

This successfully find the text input but returns its type rather than the value. Adding the Text function at the end does not work.

View 3 Replies

How To Input Text Format As (hh:mm)

Mar 18, 2010

Give any sample links for input text will get as hh:mm format .for example if we open system date and time with in single text box we can edit hours and minutes .same like that i need examples in asp.net .

View 2 Replies

C# - How To Validate If The Input Text For Both Of Them Are Not Both Null

Apr 12, 2010

I'm working on an ASP.NET/C# app.

I have 2 text boxes and I need to validate if the input text for both of them are not both null
ex:

if(string.IsNullOrEmpty(TextBox1.Text) && string.IsNullOrEmpty(TextBox2.Text) ) //FAIL!!! else

that is, at least one txtBox has values

I was planning on using a custom validator but it seems that the validation function only gets called when something is written on the textBox i'm using has the 'control to validate'. Now, that doesn't work for me since I want to show an error message when both text boxes are empty. Is there a way to make the validation function to be called with, for example a postback? Or is there any other better approach to this case than the custom validator?

View 2 Replies

MVC :: How To Save Input Text In A List

Feb 15, 2011

I have a table including : StudentID,Mark

and I show them in a list and I want to input marks one by one:

<% foreach (var item in Model) { %>
<tr>
<td>
<%: item.StudentID %>
</td>
<td>
<input type="text" />
</td>
<%}%>

1-how can I save them in database which saves each mark for each StudentID in the list?

2- how can we send focus to next textBox by pressing Enter key in each textbox in the list?

View 1 Replies

Web Forms :: Displaying Ten Text Boxes One By One After Input

Aug 11, 2010

I'm very new to ASP.NET, how would it be possible to have a complete form with, let's say, 10 text boxes. Once the page is displayed, the user would only see the first textbox. After the user has input data into that box, the second textbox would appear. After data is input into the second textbox, the third textbox would appear and so on. I know it probably has something to do with Postback but I cannot find anything on this scenario.

View 8 Replies

TextBox.Text Update After User Input?

Jul 21, 2010

1. When the user enters a fee, the form should automatically calculate the VAT and add it to the fee when he go to the next textbox. The result should be displayed in a textbox.

2. The user chooses an element from a dropdownlist. The next textboxes are filled in dependence of his choice with text.

Example:

User chooses "1. Quarter" from dropdownlist so text from Textbox1 becomes "01.01." and Textbox2 "31.03."

View 11 Replies

AJAX :: Update Input Text Outside The Udpatepanel?

Jun 15, 2010

I have a traditional input text which is outside the updatepanel. Hpw do I refresh the input text every time the updatepanel is refreshed?

View 3 Replies

Web Forms :: Get Textbox Value From HTML Input (text)?

Mar 12, 2010

First off, is it possible to get the html input (text) value and put that value into a asp.net textbox using a asp:button?

View 16 Replies

Get Caret Position Within An Text Input Field?

May 24, 2010

How could can I get the caret position from within an input field.

I have seen a few bits and pieces on google but nothing bullet proof.

Basically something like a Jquery plugin would be ideal so I could simply do

$("#myinput").caretPosition()

I realise there may by other non-jQuery solutions and these would also be brilliant if anyone has any??

View 2 Replies

Forms Data Controls :: Users To Input Data In The Table?

Nov 1, 2010

I would like to create a table (7 rows 15 columns) which should allow user to input the data and finally data table should be emailed. Whats the best way to do it?

View 2 Replies

Web Forms :: Saving Data From Input Text Instead Of Asp:textbox?

Aug 28, 2010

I have in the past saved data to my SQL database using only asp:textbox control, now I have to use the input text html control instead, can I save the data from this control in a similar manner..or do I need to use a hidden field to so the data can be saved..?

View 3 Replies

C# - How To Let The User Input Text In German / French For A Website

Jul 19, 2010

Is there a way that I can let the end user type text in German / French in a text box for a c# asp.net website.

View 2 Replies

C# - Is It Possible To Automate Button Clicks And Text Input In A Web Browser

Jan 14, 2011

I've been tasked with building a screen scraping application, and I'm looking for information on the best way to cope with web pages that would normally require user input and interaction.

Can this be done via standard web / javascript coding. Is there any API that would allow a desktop application to achieve the same effect?

View 3 Replies

C# - WebForms Text Input => Doubles & Strings & Booleans?

Apr 14, 2010

Is there a better way to do "input forms" in WebForms?I always end up with code like this:

Double d = 0; // chuckle inside
if(Double.TryParse(myNumberTextField.Text, out d))
{
myObject.DoubleVal = d;
}

Is there a better way to process free-form "numeric" input.

View 1 Replies

Custom Server Controls :: Convert All Input Text To Uppercase

Jan 8, 2010

I gonna build a custom control that derive from DevExpress.Web.ASPxEditors.ASPxTextBox and add 2 features on top of this base class controls.

1. Convert all input text to uppercase.
2. No allow to input certain special character.

Here, I able to provide 2nd feature but hv no idea how to do for the 1st. Below is my code in the custom control class.

[Code]....

View 9 Replies

Web Forms :: How To Validate Input Text Depending On Selected Value From Dropdown

Apr 12, 2010

I have 1 drop down, 1 text field and 1 command button i.e. "Search". Dropdown contrains following values

Type1
Type2
Type3

In textbox user will enter numeric or alphanumeric value

Here I want to check if 'Type1' is selected so user can enter only numeric value between 1000 and 2000, otherwise display some message "Entered value is not valid for "Type1". I want to display this message thru required validator error message property

If user select 'Type1' and 'Type2' then user can enter any alphanumeric value other than 1000-2000 numeric range.

I want to implement thru Search button or once user leave the textbox after entering value. Here I want to display message.

View 11 Replies

MVC :: Populate Input(text) Fields From Connected MSSQL Database?

Jan 30, 2011

I have a database containing various datafields that I need to display to a user based on their userID (which is assigned during login).

I need the data to be displayed in a specific format. i already have a table with input (text) fields and select fields created in html.

I need to know the easiest way to populate these fields with the data found in my database in an MVC fashion.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved