|
|
|
|
|
 |
|
|
<%
Set newsQuery = Server.CreateObject("ADODB.Recordset")
newsQuery.Open "SELECT news_title, news_date, news_desc FROM news_master WHERE sno = " & nwsId, db
If NOT newsQuery.EOF Then
heading = Trim(newsQuery("news_title"))
newsDate = MonthName(Month(newsQuery("news_date")), True) & " " & Day(newsQuery("news_date")) & ", " & Year(newsQuery("news_date"))
newsContent = Replace(newsQuery("news_desc"), VbCrLf, " ")
End If
%>
| |
Back to all News... |
|
|
| |
<%=newsDate%> |
|
| |
<%=heading%> |
|
| |
<%=newsContent%> |
|
| |
|
|
|
|
|
|
|
|
|
| |
 |
|