Splitting String Into Three Variables
Jan 9, 2011
The following is an example of using session state, which i can handle with a single variable. But this example uses. well you can see it. Where I am stuck is splitting the string into the three variables. Also, I am not too sure about the ; vs. a comma delimiter that usually see. I think it is a pretty old example. Session("Stocks") = "MSFT; VRSN; GE" ' Get Stocks, split string, etc. Dim StockString StockString = Session("Stocks")
View 6 Replies
Similar Messages:
Jul 1, 2010
I am using c#. I have a string which has the following kind of data: For example
owen, Michael (Georgia)
Lionell, Mac (Texas)
How to get the first name (Michael, Mac) from this data?
View 7 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 5, 2011
I have a large string that I want to save in a cookie, however I don't know what the best practices are for max string length per cookie, and max cookie count. What logic should I use to split the string and later combine a set of cookies?
(Microsoft ADFS and perhaps Siteminder do this technique so I would be interested in what thier implementation is)
View 1 Replies
Jun 19, 2010
I am having problems with the .split function.
token_list = line.Split(',');
My input data is a CSV file that contains numbers and strings totaling 5 columns. The strings are string delimited...
1, 2, "Test", 1, "Test" 5 columns
1, 2, "Test", 1, "Test" 5 columns
1, 2, "Test, Test", 1, "Test" 6 columns!!
1, 2, "Test", 1, "Test" 5 columns
The split function as it is written above is splitting the third line into 6 columns because there is a comma in the data. Is there a way for me to tell the split function to ignore commas in strings?
View 1 Replies
Apr 19, 2010
How i can get a value from string using regeular expressions? Sample string:
"<div>Weight is 200 g.</div>"
I need to parse this tring to get in my variable 200 Another question about multiple variables in same string
"<div>Dimentions is 55x100x60</div>"
In this case i need to set variables
Width = 55
Height = 100
Deep = 60
View 2 Replies
Dec 2, 2010
I have a Sql string something like this.string sqlstring = "Select field1, field2 from table1 where field1 = 1 and field2 = 'xxx' group by field1, field2 order by field1 asc" Question: During runtime, based on the user selection, I have to replace 1 and xxx in the sql string.What is the best way to do this?
View 3 Replies
Aug 13, 2010
Some databases that my application has to access have their name according to the current year because the ERP we work with creates a new database every year, so, now it's working with the 2010db database. There are two options (as far as I know) for the ConnectionString property of a SqlDataSource: 1) hard-code it or 2) pick it up from the web.config file.
I don't want to change manually the connection string every year, so, how can I solve this? I would need to take the value of Now.Year either in the hard-coded ConnectionString or for the Web.Config ConnectionString, but I don't know how to do that.
View 3 Replies
Mar 14, 2011
I have never passed along variables to a function before. I have a function here that should return true or false.
My question is, how I do this in a realtime example. How do you pass along the 4 string variables to the function and see if cbValid is true or false ?
[Code]....
View 2 Replies
Aug 17, 2010
How can I replace the field names in sql query string with variables like:-
string field1="ID";
string field2="Name";
sql = "Insert into [Sheet1$] ('" + field1 + "','" + field2 + "') values('1','abc')";
I am inserting data into an Excel document which has got nearly 100 columns.
I am inserting data using OLEDB as follows:-
System.Data.OleDb.OleDbConnection MyConnection ;
System.Data.OleDb.OleDbCommand myCommand = new System.Data.OleDb.OleDbCommand();
string sql = null;
MyConnection = new System.Data.OleDb.OleDbConnection(connectionstring);
MyConnection.Open();
myCommand.Connection = MyConnection;
sql = "Insert into [Sheet1$] (ID,Name) values('1','abc')";
myCommand.CommandText = sql;
myCommand.ExecuteNonQuery();
MyConnection.Close();
I want to specify the field names at runtime as mentioned above - sql = "Insert into [Sheet1$] ('" + field1 + "','" + field2 + "') values('1','abc')"; When I try this I am getting error.
View 12 Replies
Dec 20, 2010
I'm trying to use a function in my code behind to let me select a different column each time by calling the function with a different parameter.
However, I keep being told 'invalid column name', even though in the error page the column name appears perfectly valid.
Private Function getData(ByVal s As String) As String
View 4 Replies
Aug 8, 2010
i am trying to collect 2 variables from one hyperlink, and use those variables in the page_load to set as session. but i don't know how to collect those 2 variables
such :
<a href="javascript:;" onclick="wsChangeColor('mainData', '#FF0000','#FFE4E1');return false;" title="Change color" id="red">1</a>
i would like to collect '#FF0000','#FFE4E1' or direct set '#FF0000','#FFE4E1' to string then send to pageload, how can i do this by only clicking on it ?
View 1 Replies
Aug 18, 2010
I'm using C# and ASP.NET 3.5. Basically I'm retrieving a column of data from a dataset and putting this into a list like so:
List<String> dates = new List<String>();
foreach (DataRow rowMonth in myDS.Tables[0].Rows)
{
string ListedMonthYear = (string)rowMonth[0];
dates.Add(ListedMonthYear);
}
The returned values are:
Apr-10
Mar-10
Feb-10
Jan-10
Dec-09
Nov-09
Oct-09
I'm interested in splitting these values into two lists with the idea of performing operations on them in the future.
Apr | 2010
Mar | 2010
Feb | 2010
Jan | 2010
Dec | 2009
Nov | 2009
Oct | 2009
What is the best way to do so?
EDIT: rowMonth is just the datarow that includes all date related values - the month-year, the month beginning, month ending, month active or inactive. Basically I'm just trying to extract that first column month-year to do operations on and ignore the rest.
View 4 Replies
Jan 20, 2010
For applications that need to have fastly different view layers, and I would like to still use the idea of the controller. I would ideally like to but the controllers in a Class Lib. and then have only the Views in a MVC Web Application. Taking the model out in this way works well, but I can't find a nice way to split the views and controllers.
View 7 Replies
Jan 2, 2010
I have this code in javascript: var x = e.mapX; It gets the X-coordinate of a map. What I want to do is that I want to store this into a c# variable. I have a class named Test with an integer property X. I want to store var x into X. In the codebehind, I have this on the Page_Load: Test test = new Test(); Then I am trying this on the javascript code: var x = e.mapX;
View 16 Replies
Feb 6, 2011
I have a page which takes a set of text, and I want to strip out some of this text, with a regex.
The text comes in as as part of a table row:
[Code]....
I want to chop out the <a> </a> tag's and just keep the data within the cell.
View 3 Replies
Feb 15, 2010
I am building an application using asp.net mvc, DI, IoC, TDD as a bit of a learning exercise.
For my data access I am using the repository pattern. Now I am looking at membership and how this can work with the repository pattern. I am currently using a Linq to Sql repository but don't want to be tied to SQL Server for membership.
Secondly, I am looking to split out membership into a number of services:
AuthenticationService - identify the user
AuthorizationService - what can they do
PersonalizationService - profile
The personalization service will be what really defines a "customer" in my application and each customer will have a unique id/username that ties back to the AuthenticationService - thus, allowing me to use the default ASP.NET Membership provider, roll my own or use something like Open ID.
Is this a good approach? I don't want to reinvent the wheel but would rather these important parts of my application follow the same patterns as the rest.
View 2 Replies
Jan 14, 2010
I am working with the listbox and binding the data to the listbox. My question is if i retrieve 20 rows in a listbox then how can i arrange 10 rows on each column (splitting 10 rows side by side or dividing). sample:
Exact Data in a Listbox Looking for something like this:
Listboxitem1 Listboxitem1 Listboxitem3
Listboxitem2 Listboxitem2 Listboxitem4
Listboxitem3
Listboxitem4
I have one more question. How can I display my data in a listbox as a treeview structure with a nodes. Or can i insert treeview inside listbox.
View 3 Replies
Dec 7, 2010
I'm using the commandArgument property of the LinkButton ( Which is wrapped inside a repeater ) to pass two values -as one string- to a second repeater then I try to split them into two values, So I could use them as parameters in my ADO.NET Code (SqlCommand Parameters)....after testing my queries don't return any results but If I passed fixed values for the parameter or change the source of the parameter (just for test from a textbox or querystring or something) I get my results, so I think the problem is in splitting.
I Conduct some arugment values from the ArgumentCommand property of the LinkButton -which is wrapped inside a repeater:
<ItemTemplate>
<asp:LinkButton id="sort_lnkbtn" Text='<%# Eval("value")%>'
CommandArgument='<%#string.Format("{0}|{1}",Eval("arrange_by_id"),Eval("value"))%>' runat="server">
</asp:LinkButton>
</ItemTemplate>
Then I receive these values and cut them into two pieces of information:
string sortByAndArrangeBy = (e.CommandArgument).ToString();
char[] separator = { '|' };
string[] sortByAndArrangeByArray = sortByAndArrangeBy.Split(separator);
Now the ado.net code uses this values as a
using (SqlConnection cn1 = new SqlConnection(ConfigurationManager.ConnectionStrings["testConnectionString"].ConnectionString))
{
using (SqlCommand cm1 = new SqlCommand("SELECT [name] FROM brands WHERE (name like @SearchString + '%' )", cn1))
{
cm1.Parameters.Add("@SearchString", System.Data.SqlDbType.Char);
cm1.Parameters["@SearchString"].Value = sortByAndArrangeByArray[1];
cn1.Open();
using (SqlDataReader dr1 = cm1.ExecuteReader())
{
List_rpt.DataSource = dr1;
List_rpt.DataBind();
}
}
}
View 1 Replies
Apr 1, 2010
I have too many lines in my code behind file. Now it grows up to almost 3500 lines. I wonder if it can be splitted into several files.
To be specify, say I have CustomerEdit.aspx and code behind as CustomerEdit.aspx.cs. In my code behind, most of them are functions taking care of UI (i.e. protected void ... _Click() or protected void ... _SelectedIndexChanged()). I have some private functions, but they usually refer to some UI elements.
Question: Can I safely seperate CustomerEdit.aspx.cs into smaller files like CustomerEdit01.aspx.cs, CustomerEdit02.aspx.cs, etc?
View 7 Replies
Apr 12, 2010
First of all, I'm relatively new to asp.net (3.5) and all of its controls. What I'm trying to do is to split up a detailsview. I have a submission form containing quite a lot of fields that are supposed to be filled out by the user. In my design I have a tabstrip with headlines about the different sections of the form. For example:
Tab1: Personal Info
Tab2: Info about your car
Tab3: Contact info
I have tested to add a new "user" via a DetailsView and it works. But what I want to do is to split up the contents within the <Field> tags In the DetailsView In different div classes (using css and javascript to hide/show the right tab contents). But when I try to do this Visual Studio says that characters like <p> and others aren't allowed within the Field tags, which makes sense. Is there any control to use for these kinds of situations?
View 3 Replies
Jan 30, 2011
I currently have an ASP .NET MVC / EF4 project that contains many pieces of autonomous functionality such as a blogging, events, contests, wiki, etc.
The entities used by each system are all mapped to my database through one giant EDM file.
This works well for the main site, but I also have a few personal sites where I want to reuse just the blogging functionality from the mains ite.
My biggest problem is that due to the mac daddy EDM file, my blog sites have to constantly have their database schemas updated to reflect changes made to areas of functionality that they don't use (i.e. changes to the events system).
The only other gotcha is that there are some entities (Users and Tags) that have relationships with entities from each area of functionality, making it hard to simply split each area of functionality off into its own EDM.
With all of this said, I'm trying to figure out the most efficient way to set this up.
Should I go down the road of splitting up the EDMs by each area (blogs, events, contests, wiki) and figuring out a way to maintain relationships for the User and Tag entities?
Or should I just perhaps be creating an EDM for each website that only maps the entities that it will actually need? The only problem with this is that my repository layer takes in a UnitOfWork/ObjectContext, and by creating new ObjectContexts for each site I'd have problems reusing my repository code.
View 1 Replies
Oct 19, 2010
How would i go about searching for data in the profile system?
I am looking to make a page with a search bar - type in a name, and this goes to searchresults.aspx?id=what you just searched.
How then do I select the Profile.FirstName and Profile.LastName within the profiletable?
Because it is the auto generated profile system, these values are stored withing the Profile table but not as seperate columns..
Also, how do i split up the querystring into a first name and last name to match to the seperate profiles?
View 1 Replies
Aug 16, 2010
I have already tried the change on Navri's blog about changing the css but this does not work, my tabheaders go off the page to the right and I simply want to split them onto two lines?
View 5 Replies
Apr 1, 2010
I'm planning to make an ASP.NET webserver that provides all kinds of functions, like an API. There will be quite alot functions that can easily be grouped (datasystem, userAccount, fileSystem, and so on). I can make multiple services (asmx files) into a single webserver, and let the clients connect to whatever service(s) they need. However, I'm not sure if it's a wise thing to do... Pack everything into 1 big service(1 asmx file), or split up into many smaller services? How about:
- performance/memory on the server (a client that connets with 1 or 6 services)
- Maximum connections (we will use a Windows XP Server edition computer)
There will be about ~30 computers using it. In a worst case scenario, they each computer could make use of 6 services at the same time, if I decide to split it up. A single client could make use of the fileSystem, account, dataSystem and several other things at the same time.
View 6 Replies