 | "mko" <> | | NewsGroup User |
| Re: How to process a form stored in a db as an aspx page? | 11/15/2004 8:46:48 AM |
| 0 |   |
| |
 | "haidar_bilal" | | NewsGroup User |
| Re: How to process a form stored in a db as an aspx page? | 11/15/2004 9:48:47 AM |
| 0 |   |
|
Hello, all the text you have around the server controls, you can have literals,labels,spans, ....
And the text by which these Text Controls are to be populated are stored in DB.
For example:
<asp:Label id="Name" ..../>
Then, the label would get its value from the DB, because the name can be in English, Arabic, Hebrew, Spanish, .....
So what you do is access the database and get the name in any language you want, and then
Name.Text = "value from DB";
Is this fine ?
regards. Bilal Hadiar, MCP, MCTS, MCPD, MCT Microsoft MVP - Telerik MVP
|
 | "mbanavige" <> | | NewsGroup User |
| Re: How to process a form stored in a db as an aspx page? | 12/7/2004 8:18:24 PM |
| 0 |   |
|
http://www.microsoft.com/backstage/bkst_column_46.mspx
Mike Banavige ~~~~~~~~~~~~ Dont forget to click "Mark as Answer" on the post that helped you. This credits that member, earns you a point and marks your thread as Resolved so we will all know you have been helped. |
 | "mbanavige" <> | | NewsGroup User |
| Re: How to process a form stored in a db as an aspx page? | 12/8/2004 1:34:47 PM |
| 0 |   |
|
You might do better to read about Master Pages.
These are coming in ASP.NET 2.0
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvs05/html/aspnet-masterpages.asp
The docs i read seem to indicate that .master is the file extension of a master page, but i have a suspicion that .mspx is using the same technology.
Mike Banavige ~~~~~~~~~~~~ Dont forget to click "Mark as Answer" on the post that helped you. This credits that member, earns you a point and marks your thread as Resolved so we will all know you have been helped. |
|