C# - Extracting String Data - From The Right-hand Side?

Jan 8, 2010

In my code I will be presented with url strings to pages... All I want to do is to extract the page name, nothing else... (Example)

string page1 = "./default.aspx";
string page2 = "./subfolder/gallery.aspx";
string page3 = "./subfolder/anotherSubfolder/demo.aspx";

I've used the substring feature before, but I am struggling with this one since I only want the page names which are on the right hand side, I basically want to chop of everything else (folder paths).. all I want to end up with is default.aspx, gallery.aspx and demo.aspx

View 4 Replies


Similar Messages:

Unitended Reference Comparision / Get A Value Comparison, Cast The Left Hand Side To Type 'string'?

Mar 23, 2011

I am getting this warning:Possible unintended reference comparison; to get a value comparison, cast the left hand side to type 'string'I tried this:

if (Convert.ToString(Session["message"]) == SESSIONTIMEOUT)
or
if (Session["message"].ToString() == SESSIONTIMEOUT)

But I'm still getting the above message.

View 1 Replies

Forms Data Controls :: Displaying Text On The Right Hand Side Of A Column Name?

Jan 8, 2010

I needed to display data from a table in this style:

Hotel: hotel1 Destination: United States

From: UK

Hotel: hotel2 Destination: United States

From: UK

Hotel: hotel3 Destination: United States

From: UK

This would all go in a box or table, the bold text is the column names from the table, but id be quite Happy to just have them as text and not display the coloumn headers. whats the best control to display data in this way, ive messing about with different controls but cant get this layout

View 3 Replies

C# - Best Option For Extracting String Data?

Mar 6, 2010

I have a Portable Bridge Notation formatted-file that I have to work with. I have already a few simple examples working by using indexing and substrings extracting what I need and I suppose for this PBN business it would suite me well since it isn't run too often. If I one the other hand would run that code like all the time (thinking of working with vCards) then I am worried about memory usage under high workload because of the high amout of temporary string variables created from all substrings and splits.

There are two other options available that I know of. Regex and StringReader / TextReader and I wanted some general opinion on what to use.

Intended usage is to extract to objects and serialize to json so that I can more easily work with or persist this information. Hell if it's fast enough I might even do it on the fly.

View 1 Replies

Forms Data Controls :: DataList Extracting Extracting And Adding Value To Labels In Template?

Nov 6, 2010

I have a datalist that is populated via and SqlDataSource. Code is VB

I am trying to extract two Values from the Item Templete and add them together. Then I want to add a new Label to the item template with the sum of the two added values.

I am able to to this using a GridView but no success with the datalist

My form code:

<asp:Label
ID="SDLabel"
runat="server"
Text='<%# Eval("SD") %>'></asp:Label><br
/>
SDT<asp:Label
ID="SDTLabel"
runat="server"
Text='<%# Eval("SDT") %>'></asp:Label><br
/>
SDS:<asp:Label
ID="SDSLabel"
runat="server"></asp:Label><br
/>

My VB Code behind Starts out:

[Code]....

View 7 Replies

Forms Data Controls :: Extracting 3 Characters From Just Complete String?

Dec 9, 2010

I m using hyperlink inside gridview. Here is my aspx code-

[Code]....

In the above code i just want to extract first three characters of sam_url in text property of hyperlink.

How can i get this using eval()?

View 4 Replies

C# - Extracting Paragraph Using Search String?

Apr 1, 2011

i am using the below code for extracting paragraph for matching string.

[code]...

i am getting correct result,but i am getting breakable words in starting and ending paragraphs like "...ing regions uses the and Boolean connector to specify the region so narr..."

View 2 Replies

Web Forms :: All Data Results To A String Side By Side?

Jan 25, 2010

I have some sql records, table has 3 columns as userID, name, city. I want to take the records with ; select name, city from where city='New York' it turns 5 or 6 records. I want to add them to a string side by side like string record="michael NewYork, marshall New York, liz New York, Forest New York";

How can do I take it ?

View 6 Replies

Forms Data Controls :: Gridview Has Bar Cursor Not Hand?

Jun 1, 2010

I have a gridview that has LinkButtons and when I hover over the link instead of seeing an hand cursor, that allows me to click the link, I see a vertical bar, that's not clickable. This was working normally until recently, so I must have done something to cause it, but I don't know what?

View 2 Replies

Extracting Data From A SpGridView Selected Row?

Apr 16, 2010

Using SPGridView, I want to fill textboxes with the SPGridview Selected Row Data on a button click event.

txtCode= SPGridView.SelectedRow.Cell[1].Text;

On debugging, it shows Cell[1] is empty but it is showing data in the Grid.How can this be achieved?

View 1 Replies

C# - Extracting Data From An ASPX Page?

Sep 14, 2010

The task is: given a web application that returns a table with pagination, do a software that "reads and parses it" since there is nothing like a webservice that provides the raw data. It's like a "spider" or a "crawler" application to steal data that is not meant to be accessed programmatically.

Now the thing: the application is made with standart aspx webform engine, so nothing like standard URLs or posts, but the dreadful postback engine crowded with javascript and non accessible html. The pagination links call the infamous javascript:__doPostBack(param, param) so I think it wouldn't even work if I try even to simulate clicks on those links.

There are also inputs to filter the results and they are also part of the postback mechanism, so I can't simulate a regular post to get the results.

I was forced to do something like this in the past, but it was on a standard-like website with parameters in the querystring like pagesize and pagenumber so I was able to sort it out.

Anyone has a vague idea if this is doable, or if I should tell to my boss to quit asking me to do this retarded stuff?

EDIT: maybe I was a bit unclear about what I have to achieve. I have to parse, extract and convert that data in another format - let's say excel - and not just read it. And this stuff must be automated without user input. I don't think Selenium would cut it.

EDIT: I just blogged about this situation. If anyone is interested can check my post at [URL] and comment about that.

View 4 Replies

Forms Data Controls :: Extracting Data From Gridview And Insert Into Database?

Nov 16, 2010

i'm currently doing a shopping website. The customer will have to selected the item they want to buy and it will appear in the detail view when they click add in the grid view. I need the info inside the detail view to be insert into a database call Orderlist.

i've try using INSERT INTO OrderList (ProductName, Price,) VALUES (@ProductName, @Price) but it don't seems to work.

Was it because i can't insert it like this as it is detailview? This method can work if is Textbox instead of detailview.

View 5 Replies

Forms Data Controls :: Extracting Data From Gridview And Insert Into Sql Database?

Mar 30, 2011

i have a gridview of 8 columns.I need to extract the data row by row from the the first(Message) and the last(phone_no) column and to be inserted into my sql table named massMessage.I have the codes here. Apparently im able to only extract the phone_no. My message wasnt inserted.

protected void btnSave_Click(object sender, EventArgs e)
{
foreach (GridViewRow gvr in GridView2.Rows) //loop through GridView

[code]...

View 2 Replies

ADO.NET :: Error While Extracting The Data From Table From Database Called Train?

Jan 12, 2011

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Test1._Default" %>

<!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" >[code].....

I had created the database called train. A train database has a two tables

View 3 Replies

Forms Data Controls :: Extracting Price From DataView Or From The Database?

May 11, 2010

Currently I am developing an ecommerce web site where

1. I choose the Product from a GridView (by pressing Select)

2. This product gets added to a DataView

The problem arises because I have a quantity textbox and wish to multiply the price by the quantity textbox.

How can I extract the price from the gridview to multiply it ? (and then subsequently display it in a label)

View 7 Replies

Forms Data Controls :: Extracting Gridview To Excel Using Response Class?

Mar 31, 2011

Im writing a bit of code that will extract the contents of a gridview to excel. I have all the parts working except for one. In my page_load i fetch the data from the database and then have the user select some options which filters the data and then the gridview gets populated. The problem im having is that the Response call doesnt seem to get the data from the gridview if i enclose the database fetch command within if not page.ispostback in the page_load

I have some test pages where i just fetched the data from the database bound it in a gridview in the Page_load. then on a button click export the data in the gridview to excel. Works fine if i DONT enclose the fetch command within not page.ispostback but outputs an empty excel file if i do.

Now i have to use not page.ispostback in the actual webpages because the users have to make selections which will filter the original dataset. How do i get this to work?

The page is also implementing AJAX if that helps. Here's an example of what i have:

[Code]....

View 1 Replies

Forms Data Controls :: DataGrid - Extracting Results And Hiding Rows?

Jan 14, 2010

I have a dataGrid with ButtonColumns in my asp page and I would like to do the following to:

When a row is clicked, I want to be able to:

1 - Hide all rows and display only the clicked row dynamically/on the fly.

trying to loop thru the datagrid and display only the Row index passed by the OnITemComman - but unsure of how to do it.

2 - Extract the row values (all cells in the row) to use as parameters in a query.

Used many ways of many examples but i always get a blank value. Managed to get the button text in the class but i need the full row values not just the cell clicked.

View 1 Replies

Data Controls :: Image Gallery With Viewing Extracting Printing And Deleting Capabilities

Sep 14, 2012

i have a database with several paths looking like the one below

C:S&M Site ProjectNEWSMAASitePhotos2GUY093GUY093-Tulips.jpg..

What i aim to do is load the images into a gallery control (if one exist)the users viewing the images should be able to do either of the following:

-Double click on an image to see it bigger or some large predefined size.(thats the viewing part of it)
-Select those images the want and then extract it as a single PDF file to any location on the user machine.
-print all selected images.
-Remove all selected images from the gallery as well as the image path from the database.

View 1 Replies

Forms Data Controls :: Extracting Edited Values From GridView, To Update/insert To Database?

Jul 28, 2010

I'm coding my first VB web application, which allows a user to input an order number and pull up invoice and shipping data linkd to that order number.

I have the first bit down and working, where the existing data in the database is displayed in the GridViews. One of the GridViews is set up to allow data editing, and I have syntax set to make the row editable, but I'm struggling with getting the "Update" link/functionality to work. I want to assign the values in each cell to an object (ie. 'dgInvNumber' for Invoice Number), but everything I've tried (been doing a ton of Google searching for help, but no luck yet) keeps giving me an "Object reference not set
to an instance of an object" error when I click the Update link for the row of data being edited.

At this point, I don't know what syntax to use to get the edited values out of the GridView row and assigned to objects for each cell (I have a total of 10 cells that can be edited in a row).

For background info, the GridView is set up with Bound Fields. I'm using Visual Studio 2005. Alot of places I've looked talk about TextBox controls and using FindControl. Also seen some places talk about DataBoundLiteral Controls. I tried the latter with no luck (still getting error). For TextBox controls, I don't understand how to use that part, since it mentions referencing the TextBox controls declared in the EditItemTemplates of the TemplateField column fields in the GridView control. But I didn't set up anything in the EditItemTemplates (that I know of).

View 1 Replies

Net Is The ASP.NET Web.config File Getting Out Of Hand?

Apr 8, 2010

Do you struggle with the size and the number of entries in the web.config file? Do you understand every element?Is it time for Microsoft to relook at how an ASP.NET site is configured, perhaps by splitting the web.config file into multiple files?

View 2 Replies

MVC :: Short Hand Name Attribute For Controller?

Feb 1, 2010

I noticed the ActionNameAttribute lets you alias your controller methods. This is nice but I was curious if there was a comparable attribute for a controller name. Specifically, I have a controller with a lengthy name in c# world but would like to shorten / alias it in the actual URL. I was hoping for some kind of controllername attribute. Is there such a beast?

View 3 Replies

C# - How To Get The Standard Hand Cursor To Appear Over The Accordion

Dec 16, 2010

What property do I need to set here ?

<cc1:Accordion ID="Accordion1" runat="server" FadeTransitions="true" AutoSize="Fill"
SelectedIndex="0" RequireOpenedPane="false" DataSourceID="objQues" TransitionDuration="250">
<HeaderTemplate>

I tried this..not working:-

<script type="text/javascript">
function fnover(id)
{
document.getElementById("Accordion1").style.cursor = "pointer";
}
</script>

View 1 Replies

Hand Over Variables To A Website Without A Querystring?

Aug 16, 2010

I have a web-application (ASP.NET) and want to open another external webpage on another machine. I have to forward some information (variables) to that webpage, but they should not be part of the URL. So my question is, how can I achieve this without querystrings?

View 1 Replies

Get Some First Hand Accounts Regarding Reporting Toos That Have Used?

May 13, 2010

This week my team spent way too much time trying to do simple things in reporting services, and I've decided to start evaluating other options. I know there are some good options out there now that aren't too expensive. I've heard that Telerik, ActiveReports, and a few others are widely used.I was hoping to get some first hand accounts regarding reporting toos that you've used. Specifically, I definitely want to hear your thoughts about:Pain points and gotchas you ran into.Ease of use for report design. It's a little bizarre to me that Access still seems to hold the throne in this area!

View 2 Replies

VS 2005 - Cursor Hand Not Working In IE9

Sep 23, 2011

I have the following piece of code which works fine on all browsers except IE9:-

Code:
panArticle.Attributes.Add("onmouseover", "this.style.cursor='hand'")

Why this is happening and this there an alternative way?

View 5 Replies







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