Those folks who wanted to get a fair idea about SharePoint 2010 should go thru here :
http://sharepoint2010.microsoft.com/Pages/default.aspx
and the videos are posted here: http://sharepoint2010.microsoft.com/Pages/videos.aspx
Happy SharePointing!!!
Those folks who wanted to get a fair idea about SharePoint 2010 should go thru here :
http://sharepoint2010.microsoft.com/Pages/default.aspx
and the videos are posted here: http://sharepoint2010.microsoft.com/Pages/videos.aspx
Happy SharePointing!!!
Great news to all VS 2010 lovers!!!
Finally the VS 2010 has been released as an RC and its available as download:
Thanks to Soma (http://blogs.msdn.com/somasegar/archive/2010/02/08/visual-studio-2010-and-net-framework-4-release-candidate-now-available.aspx ) by announcing the same in his blog.
MSDN subscribers can downlaod the RC in the below link:
http://msdn.microsoft.com/en-us/vstudio/dd582936.aspx
thanks
For one of my clients I have to pass /transmit data from one aspx page to another.Though I can use I was Session , hidden fields,Request.QueryString() for this, i was curious to know whether I can leverage ASP.NET 2.0 features to achieve this.After little bit of googling I have found that with the use of postbackurl property of a submit button and adding a
<%@ PreviousPageType VirtualPath="~/My Web Site/source.aspx" %> directive we can manipulate the information in the target page.in the code behibnd page we have to write the follow. using the Page.PreviousPage property: here i have used the master page concept and based on the ContentPlaceHolder id of the master page , I am finding the controls listed in the source page
if (PreviousPage != null && PreviousPage.IsCrossPagePostBack && PreviousPage.IsValid)
{
if ((PreviousPage.Master != null))
{
labelError.Visible = false;
ContentPlaceHolder cph1 = (ContentPlaceHolder)Page.PreviousPage.Master.FindControl("cph");
if (cph1 != null)
{
ListBox lstCountry = (ListBox)cph1.FindControl("lstCountry"); //lstCountry is a control the source.aspx page.
}
now you can access the selecteditems/ its value or or its index as we do in the normal way.
if (lstCountry.SelectedItem.Text == "--All--" && tlstCountry.Items.Count >0)
{
//do some process here.
}
in the source.aspx page file if there exists a submit button / hyperlink button
thats all..
the concept is known as CrossPage Postback , a new feature introduce din ASP.NET 2.0.!!!!
Happy ASP.Neting...
The .NET centric rich web experience software known as
Silverlight 2 has been released.
Get more info. from Soma's blog:
http://blogs.msdn.com/somasegar/archive/2008/10/13/silverlight-2-released.aspx
You can download Silverlight 2, at http://www.microsoft.com/silverlight
Anugurihiitosumi,
prasad.
My experiences on MOSS 2007, Workflows and ASP.NET...