VS 2010 Text In String?
Jan 17, 2011
I'm sure it's possible, but i don't know how to do it :I have CONTENT declared as String , in CONTENT i have texts, but i would like only to select the texts >> from the beigning of the string until it finds the word "STOPHERE".And then from the end of "STOPHERE" until the end of the text.As it's not always at the same place i coudn't use .SubString
View 6 Replies
Similar Messages:
Jul 22, 2011
I have a string which contains html and text.If any of the text is not encapsulated by html tags then I want to encapsulate it in <P> tags however certain tags for example anchors and bold tags etc would need to remain within the string.
hgfkjvckvg
<h1>vhjvhj</h1>
fhvjvl <a href="">hvlvnlb</a>
cghcghkgkh
[code]...
View 1 Replies
Oct 15, 2010
I have a string "10/15/2010" I want to split this string into 10, 15, 2010 using c#, in VS 2010. i am not sure how to do this.
View 9 Replies
Nov 11, 2010
How do you convert a text that says Jan 2010 to 01/2010 in asp.net.
View 3 Replies
May 28, 2010
I have a simple ASP.net page:
<form id="form1" runat="server">
<p><asp:TextBox id="input_box" runat="server"></asp:TextBox>
<asp:Button Text="OK" runat="server" OnClick="run" /></p>
</form>
I want to send input from input_box to a query string, and then keep this input in the input_box when the page reloads.
That's the code behind page:
protected void Page_Load(object sender, EventArgs e)
{
input_box.Text = Request.QueryString["input"];
}
protected void run(object sender, EventArgs e)
{
string url = string.Format("?input={0}", input_box.Text);
Response.Redirect(Request.Url.AbsolutePath + url);
}
Problem is that when query string is not empty, string from input_box cannot be passed to query string. How to correct it?
View 1 Replies
Feb 13, 2010
How i can make the normal search string to sql server full text search parse, because when we are user enyer search text "how to run windows schedule in C#", in database we have article to to this, but data not returning and sometime is say error in key word and etc.
View 1 Replies
Nov 21, 2011
I don't think this is possible but in case if it's possible, I would like to know if it's possible to attach a string, as an attachment and send it by email. (without creating any file.
View 1 Replies
Apr 12, 2012
I am able to populate a text box with a long string. This string is a collection of email addresses, I am wondering how I can split this string so that I am able to get the individual email addresses? If I select multiple email addresses it come through like Example: test1@test.comtest2@test.com in the one text box how could I split this so I could get test1@test.com in one text box and test2@test.com in another?
Code:
Protected Sub BtnEmailList_Click(sender As Object, e As System.EventArgs) Handles BtnEmailList.Click
' StringBuilder object
Dim str As New StringBuilder()
' Select the checkboxes from the GridView control
For i As Integer = 0 To GrdVwClassEmail.Rows.Count - 1
Dim row As GridViewRow = GrdVwClassEmail.Rows(i)
[Code].....
View 4 Replies
Mar 11, 2011
I am trying to get all the words in a string using a regular expression.When I use this expression in javascript, it works, but when I try it in the .Net code I get the whole string.this is my code.Is my regular expression wrong or am I using the wrong method?
Code:
Dim myRegex As New Regex("/([a-zA-Z]){1,1}([a-z])+/g")
Dim str() As String = myRegex.Split(text)
View 3 Replies
Jan 29, 2012
I'm stuck getting a value from a textbox in code behind. I have tried
Code:
string s2 = txtEmployeeNr.Text;
and
Code:
string s1 = Server.HtmlEncode(txtEmployeeNr.Text);
And just get an empty string.
I have used the last one before with good results.
View 8 Replies
Nov 18, 2011
I have a maskededit extender
Code:
TargetControlID="dateTextBox"
Mask="99/99/9999 99:99"
MessageValidatorTip="true"
OnFocusCssClass="MaskedEditFocus"
OnInvalidCssClass="MaskedEditError"
MaskType="DateTime"
[Code] ....
So the input format looks like this 12/23/2012 12:12 AM
And I would like to convert this as datetime so i tried to do
Code:
Dim ab As DateTime
ab = DateTime.Parse(dateTextBox.Text)
But it's showing me an error
Code:
at System.DateTimeParse.Parse(String s, DateTimeFormatInfo dtfi, DateTimeStyles styles)
at System.DateTime.Parse(String s)
at admin_trackadd.saveButton_Click(Object sender, EventArgs e)
View 6 Replies
Nov 10, 2010
How can I convert the english date 10/29/2010 or any language date to user culture date format
I am using the following code
CultureInfo cultureInfo = System.Threading.Thread.CurrentThread.CurrentCulture;
cultureInfo.DateTimeFormat.
string lng = cultureInfo.TwoLetterISOLanguageName;
DateTime dateTime = DateTime.Parse("10/29/2010", cultureInfo);
but it throws error when I try to parse it.
View 5 Replies
Feb 1, 2012
I am building a webservice that reads some HTML source code from a website and sends it back to the client. The service however is failing to send the data because it is too large. I keep getting this error:
The formatter threw an exception while trying to deserialize the message: There was an error while trying to deserialize parameter [URL]..... The InnerException message was 'There was an error deserializing the object of type iRacingForumServiceTest.ForumService.GetForumListResponseBody. The maximum string content length quota (8192) has been exceeded while reading XML data. This quota may be increased by changing the MaxStringContentLength property on the XmlDictionaryReaderQuotas object used when creating the XML reader. Line 153, position 247.'. Please see InnerException for more details.
I have been googling this problem for ages and I cannot figure out how to apply the answers I keep finding.
The problem is simple: the default configuration doesn't allow such large strings. I just don't know how to change this. All I keep finding is things related to WCF, I'm not sure if that applies for me.
What I keep finding is that I need to change the web.config file in various ways. However I cannot figure out where I need to put the config sections. I've tried everything but without a complete web.config file example I can't get it to work
Here is my current web.config of the server:
Code:
<?xml version="1.0"?>
<configuration>
<configSections>
</configSections>
<connectionStrings/>
<system.web>
[Code] ....
I found this piece to add to it:
Code:
<system.serviceModel>
<services>
<service name="ForumService">
<endpoint address=""
binding="basicHttpBinding"
[Code] ....
I figured out where to put it without getting errors (just as a child of the <configuration> element), but it just doesn't work. I get the same error no matter what values I try here... This shouldn't be such a difficult issue, how can I solve it?
View 8 Replies
Jun 28, 2012
Code:
sbJavaAlert.Append("alert( "" + msg + "" );");
I can't stand appending a concatenated string. Isn't that the purpose of using a stringbuilder? This is another developer's code and I am adding onto another part of it, but I want to change this too. Or should I just let still waters lie, as the saying goes?
View 6 Replies
Jun 20, 2011
I am trying to change the connection string for the registration form in VS 2010.
This is because it links to the local database in the App_Data which I need it to link to another database. I have changed the connection string in the webconig file and this works file for other forms I have created but does not allow me to create new users.
I have used the ASP.net 4.0 template when creating this website.
View 5 Replies
Sep 1, 2011
Why I get an error when my time is PM? The MSDN doc says tt works with AM/PM.
Error I get is: String was not recognized as a valid DateTime
Code:
sDeadlineDtTm = "9/3/2011 1:30PM"
Try
dtDeadlineDtTm = DateTime.ParseExact(sDeadlineDtTm, "M/d/yyyy H:mmtt", System.Globalization.CultureInfo.CreateSpecificCulture("en-US"))
[Code] ....
View 2 Replies
Feb 15, 2010
Quick VS2010 question.
I tried to apply formatting to my text (tools>options>texteditor>htmlformatting>tags)
where you can change color, style, and font-weight of certain tags, I apply them, but they do not change the text editor rendering of these tags.
Anyone else tried this with no effect?
Otherwise it works ok, but I find it easier to use one color for html, one for asp, and one for ajax tags for my purposes.
View 1 Replies
Dec 5, 2011
I enhanced an existing page in my website and it is doing double duty. But currently it is displaying as "Recruitmen Admin" because of this HTML.
Code:
<div id="title1" class="title">
<h2>Recruitment Admin</h2><h3> </h3>
</div>
It is not always Recruitment Admin. Sometimes it is Co-sponsored Admin. I know which is which from a query string.How do I access that text to change it accordingly?
View 9 Replies
Jan 19, 2014
I have a drop down list that has 11 items in it.
When I am processing, I have a Session field that has the value of "5" in it. The text for this is "APPOINTMENT".
I have made this the selected value for the drop down. When I try to get the TEXT for this field it is showing the TEXT for the 1st item in the drop down of "DECEASED".
Here is my code. I cannot figure out why I keep on getting the first value.
ddlStatus.SelectedValue = Session("strStatus")
Dim strStatus As String
strStatus = ddlStatus.SelectedItem.Text
View 7 Replies
Jun 25, 2013
I have a members website where they can create their own logon. when the user logs in the login name displays in the header of the page. this is what that codes look like:
HTML Code:
<span class="bold"><asp:LoginName ID="HeadLoginName" runat="server" server" /></span>!
I would like to also have the login name to be display on a textbox, which then I will save it to the data base and then I would use as an ID for retrieving comments and pictures that the user uploads. The name of the text box is Textuserid.txt.
View 2 Replies
Sep 6, 2010
How to create a connection string using Visual Studio 2010?
View 2 Replies
Jun 1, 2012
If I have JSON like this and pass it to the engine I am using to create a PDF file, the word "null" appears on the PDF. This isn't really my example, but I googled "json replace null empty string" and this was a hit, which is a good representation of my data, also:
{
"relationship": {
"type": "relationship",
"id": null,
"followed_id": null
}
}
We use a rendering engine that creates a PDF from a fixed template and variable data in the form of a json string. But our customers don't want to read that the id is "null", they want to read that the id is blank. In my C# program, the json is just a string, so I can easily do something like this:
jsonString = jsonString.Replace("null,", ",");but the issue is I can't replace null-comma with a comma, because then it's invalid json.
how to I make the rendering engine *and* my customer both happy?
View 18 Replies
Jan 28, 2011
I want to put some kind of text editor on my website which allows the user to manipulate the formatting of text. I would also like it to be possible for a user to copy/paste text from an existing webpage and it keep the formatting i.e. markup tags, font weight, bullet points. I just dont know hoe to go about this but the information must be there as when you copy from a web page into ms Word it keeps the format.
View 8 Replies
Jul 25, 2014
I'm having problems getting my label to update, it is a asp:label known as LabelFMI - what I am doing is when the user changes the value of certain things update it by either taking away or adding the difference. I've managed to get this to work by having to refresh the page and moving it to out of the function I made for it and into default.aspx's Page_load sub.. However I was hoping to not have to refresh to have it update? is there anyway to achieve this?
Code:
Private Sub UpdateLabels(ByVal start As Date, ByVal [end] As Date, ByVal value As Double)
'Import the data for the table
Dim da As New SqlDataAdapter("SELECT * FROM [event] WHERE NOT (([eventend] <= @start) OR ([eventstart] >= @end))", ConfigurationManager.ConnectionStrings("daypilot").ConnectionString)
da.SelectCommand.Parameters.AddWithValue("start", start)
[code]...
View 5 Replies
Dec 17, 2010
I have a couple of labels in the header of my master page. One of these displays the game-server that the user is currently connected to (the website controls the gameserver). The name of the gameservers can be longer than the room I gave them in the header. When this happens, the text wraps around (this is good!), and any elements underneath this label shift down (this is wrong!). Here is how it looks when not connected, so that the labels that show the name and IP of the server are hidden: After connecting, the labels are shown but the text is slightly too large and wraps around, causing the two links underneath to shift. The header becomes larger than it should be and a blank strip results (where the header background image stops):
The relevant ASPX code:
[Code]....
The relevant CSS is this (it's a bit of a mess, .):
[Code]....
When the server name is longer than the 'server' div (basically the black box) I want it to wrap around (otherwise most servers wouldn't fit). But if the server name is REALLY long it might wrap around 3 of 4 times in which case there would be no room for the links underneath... Can i possibly limit the amount of wrapping so that it only wraps once? When it is longer still it should just cut off (or display some ellipsis " ..." if that's possible), or even just spill into the rest of the header (rather not..)
In each case, when the label does wrap, how do I stop the other elements underneath from being pushed down? The two links should remain on the same spot really, they shouldn't move down when the label turns out larger. I hope I'm making myself clear. I'm really a CSS noob, the CSS I have now is mostly hacked together from various sources and I just kept trying until I got something that I liked...
View 1 Replies