How To Create Gadgets To Pull Data From Database
Sep 10, 2010Which is the best platform to create a gadget that pulls data from a database.
View 8 RepliesWhich is the best platform to create a gadget that pulls data from a database.
View 8 RepliesWhat i want to do is read from a database where the catalog = 12 and then have a button on the page to add a new catalog named 13 so it takes the 12 and adds 1 to it so everytime they click the button they will get a message saying "are you sure you want to create anoter catalog?" and if yes then it executes.
View 5 RepliesI have been banging my head against this problem for a bit and I think I am stuck. I would like to pull data from a Database to populate a list of possible "clients" to select from on one side. Then using what has been clicked load the client specific data into a tab container on the opposite side. I plan on doing lazy tab loading so I am not sure if that matters. I am really stuck and any help or guidance anyone could give would be greatly appreciated! I understand the basics of data loading and of tab containers, but i am unsure of what to do. I am coding this in C#. Example Mock Interface This is where the data list would be and I want to be able to select something here And update the Tab Panel control here based on the selection from the left side via querying the database.
View 3 RepliesI need to pull the data from DB and fill the view model, is there any better way to do this? Currently I'm doing something like this.
ViewModel vm = new ViewModel();
var recentBill = context.Money.Take(10);
foreach (var r in recnetBill)
{
vm.lst.Add(r);
}
I have scanned the web, and see things but nothing clear to me.
View 4 RepliesIs it possible to use Google iGadget API with my ASP.NET website or it just can be used to develop gadgets for iGoogle portal only ?
View 1 RepliesI want the user to click the link then the window pops up, but I want the data inside the window to be pulled from a database, and I need to repeat this process for 5 links that are also pulled out of a database. Say the most popular items for the month. My question is how would this be best accomplished? Jquery, or AJAX. I am just trying to see which would be the easier way to go about coding this with .net and C#.
View 1 RepliesI was put in charge of a database that has no source control, and all work was done in the database. I want to pull all the objects (stored procs, views, tables) from the database, and add to my new source control.
Is there a way to get all the objects into individual files out of a database?
Our database is SQL 2005. I have Visual Studio 2005/2008/2010 (beta 2) at my disposal.
I have content that I want to load dynamically, the problem is it has some html formatting in it. What control should i pull the text into, is there a way to pull the text into a div or a label, along with the formatting?
View 1 RepliesWhen a user logins, I want to be able to store all his profile information so I can display, for example, his email on different pages of my website, but I don't want to have to keep querying the database for every time I want to display his email. How would I go about doing this?
View 2 RepliesOn a test page, I successfully created a google map that pulls both marker and infoWindow information from an XML file. I did this just to get a feel for working with the API. It works fine. However, I do have a SQL database that has this information in it already. This database is updated behind the scenes regulary via a webservice.
I would like to try pulling the map information from my SQL database instead so I don't have to hand maintain the .xml file. The dabase alread has the lat/long information needed for markers. What is the easiest way for me to get that data from the SQL database? Is there a way to run a query and use the data, or will I need to run the query and somehow have it write/update my .xml file for me?
I'm rather liking this MVC3 and Razor way of working and I'm learning the ropes. I was wondering, can I create a partial view and pull it into another view in the following scenario:I have a "Person" model and an "Address" model. The Person contains name, phone number etc and each person has an address. I've created my Person "Create" view and that works fine but I now want to pull in my "Address" partial view to it.
View 10 RepliesI have a major problem. I have windows 2003 serverm in it I have installed sqlserver and on it several databases that was published for months. Now, the windows 2003 server crashed and I cannot login ti windows anymore. What I have done is to create a new installation of windows and installed again the sqlserver...
Now, how do I get back the latest database from the previous corupted installation? I still have access to the files in the previous installation.
ok need advice in how to pull data onto an aspx page from this site
[URL]
from this file [URL]
How can I link to this..in asp.net 2.0
My wishes
1) link to this data in may aspx page so that it refresh when ever some one loads the page ( yes I will cache the page for say 300 seconds)
2) then read the aspx page this data is on and save each item to a SQL table. So keep that in mind when thinking of (1)
Lets say I have a variable 'userid', I want to select from aspnet_Membership AND aspnet_AccountProfile tables. They both have the column userid, I just want to be able to make a statement like SELECT * FROM aspnet_AccountProfile, aspnet_Membership WHERE UserId=@UserId and it gets the records with the matching user id for BOTH tables. how do I do this?
View 5 RepliesI have a recruitment portal that people can use to advertise and search for jobs.I would like the recruiters to be able to add a small javascript snippet to their personal websites, that will list jobs on my site. how can i go about this?I have webservices set up so the javascript can just call that, but i also need the result to be formatted and placed inline.This should work in a simular way to google adsense.
View 1 RepliesHow i can pull data from excel sheet into my webpage
i have an excel sheet on which some data is there. i want to display my data into my webpage how i do this
I am trying to pull data from my populated javascript table. How do I pull the value from a javascript row? I am using
for (var i = 0; i < rowCount; i++) {
var row = table.rows[i];
//This is where I am having trouble
var chkboxIndicator = row.cells[0].childNodes[1];
alert(chkboxIndicator);
//
if (chkboxIndicator == indicator && Checkbox.checked == false) {
table.deleteRow(i);
rowCount--;
i--;
}
}
which has an alert message of "undefined". I tried .value and .text as well and no progress. How do I get the text from the childNodes?
I am currently developing a web site for our Student Council so members can check in and view the work they've done, sign up for tasks, etc. They will authenticate using their username provided by the school district's AD servers. How can I make it so that only their data shows up when they use their username?
Authentication method:
[Code]....
I need to "massage" the data a little during OnRowDataBound. When I used DataTable as my data source for my GridView, I could do the following:
[Code]....
How do I grab the row data if I'm getting it from List<Product>?
I need to pull the first 2 alpha characters out of any data that is entered. What is the recommended best practice for this ?
View 7 Repliespull some data from this grid view, and then update all pulled grid view data value to tableTwo.Update tableTwo set uit = Grieview.NewSid where con = 'Gridview.pid' and unid = 'Girdview.Gid' + 'Gridview.Tid'
I've been working on this function, basically it's an order page. When the user presses the "Order" button, I would like the data to write to a SQL DB. This is what I have:
Protected Sub btnOrder_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnOrder.Click
For Each row As GridViewRow In GridView1.Rows
Dim Owner As String = DirectCast(row.FindControl("lblOwner"), Label).Text
Dim Item_Num As String = DirectCast(row.FindControl("lblItem_Num"), Label).Text
Dim Lot_Num As String = DirectCast(row.FindControl("lblLot_Num"), Label).Text
[Code]....
I can't get these "Dim Owner As String = DirectCast(row.FindControl("lblOwner"), Label).Text" to compile. I think because this is looking for template fields and my gridview is filled in on the fly so they are bound fields. Does anyone know how to get the text out of a bound field?
Is there away to get data (like phone number or read text file) from android using aspx when page is loading?
Like parameters with android user load page ?
I have an existing windows .net application that has an access database as the backend.
I want to place the access database on a web server and it was suggested that I create a web service in order to communicate with the database.
I've been looking at some tutorials but am still confused about the basic config needed. Here's some questions I have:
1) Does the web service need to be created inside my current project by right clicking on the solution and choosing to add a new web site...and then selecting web service?
2) If it's set up like this, what files do I place onto the web server?
3) Where does the database reside? Do I need to place the database inside the web server that I create?
4) My current project has existing sql that gets data and I'm uncertain how to re-write in order to retreive the data. e.g. which part goes into the client and which part goes to web service pages? here's an example of a procedure that currently exists...I'm getting data to populate a dropdown:
[code]....