3
Answers

how to get the created date in vb6.0

Photo of basa rakesh

basa rakesh

8y
246
1
hi ,how to  get  the date created time for a file using  vb6.0 
could any one  please help me for this.
 
thanks.

Answers (3)

0
Photo of Abie Jose
NA 17 39.3k 13y
Using a Query string you can pass values of current page's control to another page


Response.Redirect("SecondPage.aspx?value1="& Textbox1.text &" &value2 = "& Textbox2.text &" ")


and in the secondpage.aspx you can retrieve this value with the following code

request.querystring("Value1")