How To Create A Function That Takes Person Full Name
Mar 3, 2011I want to create a function that takes person full name as string and return its firstname and lastname.
View 7 RepliesI want to create a function that takes person full name as string and return its firstname and lastname.
View 7 RepliesHow do i create a function that takes username as input and return it some thing like:
First time input :
John SHOULD RETURN John1
Second time input
John1 SHOULD RETURN John2
Third time input
John2 SHOULD RETURN John3
Can I cache an function individually for each person? Is it possible?
View 4 RepliesI am working on a website hosted with GoDaddy, SQL Server 2005. I have a table in my SQL Server database with a full-text index. On my website, a user can type in search terms and the terms are then passed to a stored procedure in the database which performs the search. The first search takes about 45 seconds to get results. Subsequent searches return results immediately. I found a description of this problem in a Microsoft knowledgebase article:http://support.microsoft.com/kb/915850/en-usGoDaddy tech support says I need to purchase a dedicated server to make the changes suggested in this article.Surely there is some other solution. Does anyone know how to avoid this delay without changing the server configuration?
View 1 Repliesi am looking for a function that takes two string parameters
str1 = "hello how are you today mr john"
str2 = "how today"
and in return it shoud highlight the words "how" and "today".
how to create a asp.net mvc form helper that takes virtual directory into consideration? In testing our dev server has: [URL] production is: [URL] I need the form post url to reflect if we have a virtual directory or not, is this possible?
View 2 RepliesI'd like to create a user control which takes XML as input, applies an XSL transform on it, and displays the results of the transform in the web form or windows form in place of the user control. The transform should happen automagically when the windows form or web form is first loaded. I'd think this would be pretty easy to do. I just don't know how. point to a guide/tutorial on how to do this?
View 1 RepliesI need to create something which is like an Add friend function in my website which works like this:
1) User types in name of the person he wants to search in the search field and clicks enter
2) on the same page, the search result will come out with an "add friend" button beside every name
3) when the user clicks the "add friend" button, he will be brought to another page (or pop up with a message box?) with a text message field to send to the friend, and a submit button to submit the friend request.
4) over at the Friend's page, he will be able to view the add friend request and decide whether to accept or deny the friend request.
I am trying to create a progress bar for page load as it takes long to load. I need help to resolve jscript error 'null' is null or not an object on line $get("btn").click();
[Code]....
I am searching already the web for some hours to get this working. I created a custom control (ConfigTree), which has a treeview as part of it. I put the custom control into an update panel. So far so good. When I click on different buttons (in ucc:ConfigTree) or the treeview in the custom control an async postback is done. When clicking on a node in the treeview an event for the parent element (ConfigTree) is generated, which populates again an event (NodeSelected) for the parent element (shown below). Different parent elements can handle the event differently. In one element (this one) I need to transform the async postback in a real postback with full page refresh. For better understanding see the following code:
[Code]....
the parent element (here shown) should process the OnNodeSelected and transform it into an full postback and not just an async postback, but only this event, all the other events in the ucc:ConfigTree should processed async. How can I do that? Is there a method to call in the code behind?
I'm quite new to asp and have run into a bit of trouble with a website that I am creating. This website that I am creating is relatively similar to the website created in the tutorial athttp://www.asp.net/general/videos/how-do-i-create-a-full-featured-customer-login-portal. When I paste this code:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
If Not Page.IsPostBack Then
Session("CustomerID") = Nothing
[code]...
I need to search my sql database using full text search.
My question is: How do I create the stored procedure and query?
The full text is already created and I ma using asp.net and c# in my application?
Do I need to include the name of the full text index in the stored procedure and query?
I want to create a 'news' excerpt for the front page of my site. So I get the first news item ordered by date and then I want to display it but cut down to a number of words.How would I do this with vb.net?
View 4 RepliesI use the code, to display the file that I saved in the database.the question is: why the file can not be performed with a full screen.
protected void View(object sender, EventArgs e)
{
int peraturan_id = int.Parse((sender as LinkButton).CommandArgument);
Session["peraturan_id"] = peraturan_id;
ClientScript.RegisterStartupScript(this.GetType(), "open", "window.open('file_view.aspx','_blank' );", true);
}
[Code] ....
I was trying to incorporate a functionality in my ASP.NET such that a DIV tag which contains the Profile Navigation Menu should only be visible if a person is logged in. I know the condition on how to if the person is logged in or not but wanted to know the method to toggle the div tag on/off based on person's logged in status.
if(loggedin==yes)
{
//?
}
I am creating a userprofile type of thing in my site i want to show all user SKYPE status whether online or offline how to do
View 1 Repliesi want to put validation contorl for textbox.
it should accept only characters and digits only.
to get all photos by a persons name through the Picasa Web Albums Data API?
All examples I can find, shows how to get photos by an albumid.
I have a web site published to a Windows 2008 R2 server running IIS 7.5. The web site accesses a SQL 2008 database on a different server. The web site is accessed from an intranet.
In global.aspx users are logged in by retrieving their Windows.Identity which is passed to a stored procedure that checks they have rights to access the system. All the people trying to access the system have rights to the system and if I run the stored procedure with their various Windows.Identities passed as the parameter - it returns that they are authorized.
I have admin rights on the web server. If I browse the site from my box it works okay. If another user who has admin rights on the server browses the site (at the same time as me - or on their own) it works okay.
If someone without admin rights to the server browses the site - and they are the only person 'on' the site - it works okay. If a second person tries to browse the site at the same time as the first person is logged in ... nothing happens. The progress bar in the browser just sits there forever. No errors etc.
So, no-one using the site ... Fred types http://server1/system1/ into his browser and the site works okay.
Jim types http://server1/system1/ into his browser and nothing happens.
Fred logs off and Jim tries the site again. Works fine for Jim this time.
I'm working on an MVC application and I ran into a little snag.
I've got a form with the usual textboxes and dropdowns. I decided to use jquery ajax (GET) to load the dropdowns on load (State Names & Salutations).
No matter what I try, for example:
Code:
<AcceptVerbs(HttpVerbs.Get)> _
Public Function ReturnSalutationDropdown() As ActionResult
Dim dropdown As New DropDownList With {.TabIndex = 1, .DataTextField = "Value", _
.DataValueField = "Key", .ID = "ddl_coSalutation"}
dropdown.DataTextField = "Value"
dropdown.DataValueField = "key"
dropdown.DataSource = AppEnumerations.BindToEnum(GetType(AppEnumerations.Salutation))
dropdown.DataBind()
Dim sb As New StringBuilder
Dim tw As New IO.StringWriter(sb)
Dim hw As New HtmlTextWriter(tw)
dropdown.RenderControl(hw)
Return Content(sb.ToString)
End Function
The ID of the dropdown ends up like: ctl00$MainContent$ddl_coSalutation
It doesn't matter if I use a stringbuilder and a loop to create a <select> with <option>'s, the ID always ends up like above.
Do I have to create a javascript function to create it instead?
This is my query
Dim s_Person = From Person In db.People Join ProspectStatus In db.ProspectStatus On Person.Id Equals ProspectStatus.Prospect_ID Where (Person.Organization_ID = s_Organization_ID)Select Person.
I only want to return DISTINCT values of Person.ID. Right now, it returns the same person multiple times because there are several entries in the status table.
Dim s_Person = From Person In db.People Join ProspectStatus In db.ProspectStatus
I wrote small wcf service. Its working fine. I have one doubt if i want to share the address in lan to other person so he can consume the service of mine he can build the application. how can he access the service in local lan.
View 1 Repliesi am working on a personal website, so obviously it's not a company website which have exchange server or anything like that
I know how to setup SMTP but what details should i give for SMTP service ? i mean my yahoo/hotmail/gmail account will work, setting up SMTP is really important for the website i am working on to recieve and send e-mail how to do that for a personal website when there is no exchange server ?
I am using the asp.net membership on my website and I have a user called DemoUser for someone who has not joined and wants to try out the site. All they can do is look around and search records. Nothing more. If more than one person logs in with this username, will all of these people be counted in how many are online? Or will that username only be counted once even though 20 people might be using it?
View 3 RepliesI have a Procedure to return some data from database an it need just Application name that be add from Web.config
i alredy created a function to return the data but once of column if GUID an i got this error:
Unable to cast object of type 'System.Guid' to type 'System.Data.DataTable'.
my code is:
[Code]....