Question : DNS Question

do you have to have DNS installed on a server if you install active Directory? Also can you just use you ISP DNS Server address so that you can eliminate the configuring of windows server acting as a DNS server. Finally what exactly is the DNS for other that translating the ip into a human readable name? Thanks

Answer : DNS Question

Yes, There are a couple of different ways.

1) In the actual SQL that you use to select the field you could do concatenation:
So instead of a) Select FirstName, LastName, Address from Employee, you could write
b) Select FirstName + ' ' + LastName as Name, Address from Employee

That is one way.

2) On the RowDatabound Event you could write some code to play around with what goes in what cell.

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.rowdatabound.aspx

3) You could send the data down as JSON and render a gridview with JQuery

4) You could generate HTML yourself and then do with the recordset what you please

Lots of options, hope this helps.
Random Solutions  
 
programming4us programming4us