B
bthumber
My web has a record cover. When users enters the ID, the record cover opens.
The cover gets its data from a database. If I did all of the work in my web
site I could use:
Label1.text = getOrdinal("...");
But I want a class method that is generic. How would I do that? Could I
assign the ordinal to a session? Then assign the session to Label1?
Session["toMyLabel"] = getOrdinal("..."); ??? Before anyone ask "why would I
do that, I'm trying to figureout how to get the data from my class to my web
site.
The cover gets its data from a database. If I did all of the work in my web
site I could use:
Label1.text = getOrdinal("...");
But I want a class method that is generic. How would I do that? Could I
assign the ordinal to a session? Then assign the session to Label1?
Session["toMyLabel"] = getOrdinal("..."); ??? Before anyone ask "why would I
do that, I'm trying to figureout how to get the data from my class to my web
site.