|
Hi,
I created one site(Site actions-->New Site) called TeamRoom by using sharepoint foundation2010.And I created 4 pages in that site.But how to host that site in IIS.Can you please let me know in a step by step manner.
Thankyou,
Hemadri.T
|
|
|
|
|
HemadriT wrote: But how to host that site in IIS.Can you please let me know in a step by step manner.
You don't have to hosts new sites, it's automatically done. You just have to do that, if you want that side to reached by another domain-name.
You find your first wcs under "http://yourdomain/" and by standard alls subsites with "http://yourdomain/websites/subsitetitle"
------------------------------
Author of Primary ROleplaying SysTem
How do I take my coffee? Black as midnight on a moonless night.
War doesn't determine who's right. War determines who's left.
|
|
|
|
|
I'm using the following code to create an SPFieldUserValue object from an entry in a SharePoint People Editor control on an app page:
Dim requestorCol As New SPFieldUserValue
For Each entity As PickerEntity In sppeModifyAccount.ResolvedEntities
requestorCol = New SPFieldUserValue(web, Convert.ToInt32(entity.EntityData("SPUserID")), entity.Key)
Next
This is working 99% of the time, where it is able to search our AD and resolve to the person's name typed in the control. That is, until today when we were doing one final bit of beta testing and the form wouldn't submit.
After debugging I noticed that the user who's name was put into the control didn't have an ID listed in the entity. My initial thought is that the user we are placing in the form hasn't been to the site yet, and thus doesn't have an SPUserID associated in Sharepoint for her user account. I am having her test that out now, but is there another way around this? We are using Foundation and don't have user's log into the site.
|
|
|
|
|
Found the issue. This is because the user had never signed into the SharePoint site, and thus was not in the User Information List. We're using Foundation, so I don't have the option to use User Profile Sync. Is there anything out there (preferably free) that I could use to get all my users into the User Information List?
|
|
|
|
|
No might be you need to create a timer job to update all users to List from AD
|
|
|
|
|
I am trying to put an on-page anchor point on a SharePoint (.aspx) page and get a syntax error. I have done this many times on html pages and even copied from an example on W3C to be sure I was doing it correctly. It worked in the "try it yourself" page on W3C but not on the .aspx page.
I am doing this:
<a id="jump_here" name="jump_here"></a>
I think only id is necessary but put in the name attribute to see if that would work.
<a href="#jump_here">Jump to section of page.</a>
I am getting a syntax error but do not see where I have coded it wrong.
Does anyone use on page links on a SharePoint page? What can I do to make this work without generating an error?
<edit>
Turns out it was a problem with my browser. I noticed I was getting a syntax error on web pages from other sites. A reset of my group policy fixed the problem and all works well using the code shown above.
</edit>
modified 23-Oct-12 15:44pm.
|
|
|
|
|
|
Thanks for the information.
I tried what the link said, but it didn't work.
By making the href JavaScript:; and the on click event this.href the anchor point name the syntax error did not happen but the page did not position at the anchor point.
I did Google before I posted the question here and all I came up with was what was causing the syntax error. It is odd because the same code executes fine in an HTML page.
If you can think of any other SharePoint specific links please let me know.
|
|
|
|
|
Hello
I want to know share point migration process from 2007to 2010 with good example
|
|
|
|
|
|
Hi,
I created a sample site(Sharepoint) using site collection.But i dont have any idea how to deploye in sever.Can you please tel me in the way of step by step,Why because i am a beginer.
ThankYou,
Hemadri.T
|
|
|
|
|
HemadriT wrote: deploye in sever
Do you meant "server" oder "sever"?
Standard sites don't have to be deployed, you just have to add users to the roles, so that they get access:
Got to website rights, choose a group. Add a user.
------------------------------
Author of Primary ROleplaying SysTem
How do I take my coffee? Black as midnight on a moonless night.
War doesn't determine who's right. War determines who's left.
|
|
|
|
|
Hi,
How can i go to website properties..and where sharepoint site collection is stored which i created.can you please tel me step by step.
ThankYou,
Hemadri.T
|
|
|
|
|
HemadriT wrote: where sharepoint site collection is stored which i created
The SharePoint WebSiteCollection is stored in the Database.
There is always direct Access for you. Every WSC has a link you find in the central administration, when you look at the WebSiteCollections.
HemadriT wrote: How can i go to website properties
- Go to the WebSiteCollection
- Click on the Menu "Site Actions" (it's there when you are logged and you got enough rights)
There is "Site Permissions" for setting rights (and "Site Settings" for configuration)
- Click on Site Permissions
Now you see a lot of groups and some users.
- Select a group you want add users to. I don't know the English names as I'm using the german version.
The group opens
- Click on "new" and then "add user"
- Enter the user names to be added.
------------------------------
Author of Primary ROleplaying SysTem
How do I take my coffee? Black as midnight on a moonless night.
War doesn't determine who's right. War determines who's left.
|
|
|
|
|
how to set column permission of sharepoint 2010 list?
|
|
|
|
|
johnson_shalom wrote: how to set column permission of sharepoint 2010 list?
There are no special permissions on columns.
These can be handled by formulars (InfoPath for example) or during workflows.
------------------------------
Author of Primary ROleplaying SysTem
How do I take my coffee? Black as midnight on a moonless night.
War doesn't determine who's right. War determines who's left.
|
|
|
|
|
thanks..could you explain how to set column permission through workflow?which workflow is used for this purpose?
|
|
|
|
|
johnson_shalom wrote: you explain how to set column permission through workflow?which workflow is used for this purpose
Well I wasn't precise enough. There are no coloumn permission regardless whether you use workflows or not.
You can use views to show or hide columns and workflows to switch rights on roles during a process.
If you use Infopath-Formulars you can change if a field is editable or not corresponding to the state of a workflow or to the role a user has.
------------------------------
Author of Primary ROleplaying SysTem
How do I take my coffee? Black as midnight on a moonless night.
War doesn't determine who's right. War determines who's left.
|
|
|
|
|
Thanks,your information helps me more..i will set permission using InfoPath.
|
|
|
|
|
I am having a problem with an expiration policy not working.
The policy was working fine, then I deployed a new wsp via an upgrade script (which is done regularly without problem). It did not include any changes to the custom policy, or content type.
I was able to get documents to route once by doing the following:
1. Republish all content types for the site collection
2. Run the Content Type Hub timer job
3. Run the Content Type Subscriber timer job
4. Run the Information Policy Management timer job
5. Run the Expiration Policy timer job
Performing the tasks above only routes once, but then it wont route anything after that unless I perform the above steps again.
PLEASE HELP!!!
|
|
|
|
|
Update: Strange...but whenever I do anything with the feature or content type, such as deactivating or activating the feature, it will route. But only once.
What I did this time was:
1. Disable-SPFeature and wait for it to complete
2. Enable-SPFeature and wait for it to complete
Then ran the appropriate timer jobs in the correct order and it routed. But if I add another document, it wont unless I re-run a command.
|
|
|
|
|
Is it possible to invite or share files With users that is not in AD and/or just externals?
DuttaFraCalcutta
|
|
|
|
|
|
How to access home when we signin as a differentusers 
|
|
|
|
|
Home Page URL does not change for any user. Please explain the below -
What you see when you login?
When trying to access Home page, what error message you see(if any)?
Nitesh K Luharuka
Consultant
http://www.niteshluharuka.com
|
|
|
|