473,406 Members | 2,356 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Want to papulate Sharepoint list using ASP.NET Form

Vkas
78
hi

I am Working in Moss !
My target is to populate the share point list using asp.net web Application

I had Create a website is Asp.net with a simple form having 3 text field and a button
I had created a list in the Share point site named as "test" having 3 fields I.e(Name, address and Phone No)

Target
I want to populate that list of share point through the Asp.net Form that i have created
when i click the button all the values of three of the text box should be passed or populate in the Share point list

Can Any one have Proper idea ABOUT THIS?
Should i use web services??? How?


or can any one can tell me the right direction if i am wrong?

Mean how to store values in share point list by external web application,
Nov 16 '10 #1
1 2159
Ulf E
1
One simple way to do it is through the Camelot .NET Connector for Microsoft SharePoint. Its a ADO.NET driver for querying SharePoint using standard SQL syntax. So, in this example:

var connection = new SharePointConnection(@"
Server=yourspserver;
User=spuser;
Password=******;
Authentication=Ntlm");

connection.Open();

var command = new SharePointCommand(@"INSERT INTO `test` SET `Name` = 'the name', `Address` = 'the address', `Phone No` = 'the number'", connection);

command.ExecuteNonQuery();
connection.Close();
Aug 2 '11 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: firsttimer | last post by:
I am new to writing a stored procedure so any help would be appreciated. I want to fetch a list of a list from 2 tables. I have a folder.id which points to doc.parent_id. I want to get a list of...
1
by: rllioacvuher | last post by:
I need help with a program. I have implemented that following header file with an unordered list using one array, but i need to be able to use an ordered list and 2 arrays (one for the links and one...
6
by: Suyash Upadhyay | last post by:
Hi All, As a beginner in Computer Programming, I decided to create Linked List using recursion, but I am not getting right answer. I think it is fundamentally correct, but I am stuck. ...
10
by: Debajit Adhikary | last post by:
I have two lists: a = b = What I'd like to do is append all of the elements of b at the end of a, so that a looks like: a =
0
by: barmatt80 | last post by:
I am trying to write a program that the user can select an approval date and using that approval date, it would query a sharepoint list and return that list item that corresponds with that list item....
13
by: jmartmem | last post by:
Greetings, I am using Dreamweaver CS3 to design an ASP page that contains a Record Insertion Form. Within this form are two list/menu form fields that I would like to "synchronize". In other...
3
by: bilalkhan | last post by:
Hello I m using MS Acces 2007, I need to create a form through which a user can enter all the parameter values in the form and these values will automatically picked by a query: Here is the...
2
by: ismailc | last post by:
Good day, I need help. I would like to Update a Sharepoint List (Document Library) Folders using Web Services with Javascript. I have searched on Goggle but nothing that updates a document...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.