Click here to Skip to main content
15,887,027 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: WCF Pin
Abhinav S10-Dec-13 16:35
Abhinav S10-Dec-13 16:35 
QuestionDeveloped an ASP .NET site, need to make it to work on Mobile device Pin
Rockstar_9-Dec-13 22:12
professionalRockstar_9-Dec-13 22:12 
AnswerRe: Developed an ASP .NET site, need to make it to work on Mobile device Pin
Abhinav S10-Dec-13 16:36
Abhinav S10-Dec-13 16:36 
QuestionI want a clariffication on Asp.Net Pin
Member 103745539-Dec-13 17:57
Member 103745539-Dec-13 17:57 
AnswerRe: I want a clariffication on Asp.Net Pin
Chris Quinn9-Dec-13 21:39
Chris Quinn9-Dec-13 21:39 
AnswerRe: I want a clariffication on Asp.Net Pin
ZurdoDev10-Dec-13 1:48
professionalZurdoDev10-Dec-13 1:48 
AnswerRe: I want a clariffication on Asp.Net Pin
thatraja10-Dec-13 2:03
professionalthatraja10-Dec-13 2:03 
AnswerRe: I want a clariffication on Asp.Net Pin
codeman06198814-Dec-13 20:44
codeman06198814-Dec-13 20:44 
I assume you mean something like ListView or DetailView, as an UpdatePanel is simply a tool used for partial page updates.
http://msdn.microsoft.com/en-us/library/bb399001.aspx[^]

For ListViews, GridViews and DetailViews...
You can start by adding a a DataSource to your web form. Visual Studio makes this step easy and you can simply drag a template from the Data section of your tool box.
Visual studio will provide a basic walk-through to help you configure your data source and create a new connection string in web.config.
Once you have successfully created your new Data Source, you can choose this as the Data Source for your Object and the the data should populate accordingly.

You could also insert one of the above data tools within an update panel as well.
You can simply place the Gridview (or other data object) within the realms of the UpdatePanel and get a partial page load with the data is resolved.


ASP.NET
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
            <ContentTemplate>
// Data Object Here
// Data Object's Data Source
            </ContentTemplate>
        </asp:UpdatePanel>

QuestionStoring tamil virtual keyboard to sql server 2005 database Pin
Anand Solomon8-Dec-13 22:38
Anand Solomon8-Dec-13 22:38 
AnswerRe: Storing tamil virtual keyboard to sql server 2005 database Pin
jkirkerx9-Dec-13 12:14
professionaljkirkerx9-Dec-13 12:14 
AnswerRe: Storing tamil virtual keyboard to sql server 2005 database Pin
Mycroft Holmes9-Dec-13 13:08
professionalMycroft Holmes9-Dec-13 13:08 
QuestionTrying to use ASP.NET Custom validator for conditional validation Pin
Member 104518047-Dec-13 13:06
Member 104518047-Dec-13 13:06 
AnswerRe: Trying to use ASP.NET Custom validator for conditional validation Pin
jkirkerx7-Dec-13 13:38
professionaljkirkerx7-Dec-13 13:38 
AnswerRe: Trying to use ASP.NET Custom validator for conditional validation Pin
joginder-banger12-Dec-13 6:26
professionaljoginder-banger12-Dec-13 6:26 
QuestionSql and asp.net Pin
Otekpo Emmanuel7-Dec-13 11:28
Otekpo Emmanuel7-Dec-13 11:28 
AnswerRe: Sql and asp.net Pin
Mycroft Holmes7-Dec-13 12:39
professionalMycroft Holmes7-Dec-13 12:39 
GeneralRe: Sql and asp.net Pin
Otekpo Emmanuel9-Dec-13 12:13
Otekpo Emmanuel9-Dec-13 12:13 
GeneralRe: Sql and asp.net Pin
Mycroft Holmes9-Dec-13 13:01
professionalMycroft Holmes9-Dec-13 13:01 
GeneralRe: Sql and asp.net Pin
Otekpo Emmanuel10-Dec-13 11:01
Otekpo Emmanuel10-Dec-13 11:01 
GeneralSolved: Sql and asp.net Pin
Otekpo Emmanuel16-Dec-13 4:46
Otekpo Emmanuel16-Dec-13 4:46 
QuestionHow to catch up a HTML Control in code? Pin
Member 104545925-Dec-13 3:52
Member 104545925-Dec-13 3:52 
AnswerRe: How to catch up a HTML Control in code? Pin
thatraja5-Dec-13 4:20
professionalthatraja5-Dec-13 4:20 
GeneralRe: How to catch up a HTML Control in code? Pin
Member 104545925-Dec-13 4:32
Member 104545925-Dec-13 4:32 
GeneralRe: How to catch up a HTML Control in code? Pin
thatraja5-Dec-13 4:35
professionalthatraja5-Dec-13 4:35 
GeneralRe: How to catch up a HTML Control in code? Pin
Mycroft Holmes6-Dec-13 13:21
professionalMycroft Holmes6-Dec-13 13:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.