This topic is locked

some issues

12/6/2006 9:33:06 PM
ASPRunner.NET General questions
swat author

SMTP server configuration

We need to create a login section to set up SMTP-Email section

I would like tp set up SMTP without having to go login part
Rich Editor

It is really cool to have this option available for us, how ever I am geeting XML IIS 500

error when I try to upload image. Also, when I try to upload an image from a file

it takes for ever. (I know that this is a third party developement tool that you use in

ASPRunner.Net)
Text Area Field Option

I am not able to get bigger size from this field- I try to have Row :10 Column :100

still I think the max is Row:6 Column:50 - please look into this
Insert Current Date-Time

Field: DateTime - View As:Long Date Edit as: Readonly EditFormat=Now.Date.ToString();

Error :

Label fldDateTime = Table1DetailsView.FindControl("fldDateTime") as Label;

if (fldDateTime != null) fldDateTime.Text = Now.Date.ToString();

Eugene 12/7/2006

Insert Current Date-Time

Field: DateTime - View As:Long Date Edit as: Readonly EditFormat=Now.Date.ToString();

Error :

Label fldDateTime = Table1DetailsView.FindControl("fldDateTime") as Label;

if (fldDateTime != null) fldDateTime.Text = Now.Date.ToString();


Please, try next code:
if (fldDateTime != null) fldDateTime.Text = DateTime.Now.Date.ToString();

swat author 12/7/2006

This works ;

DateTime.Now.Date.ToString()