How to use the URL in the program pass value in it?

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
ZunRen
User
Posts: 3

How to use the URL in the program pass value in it?

Post by ZunRen »

Hi, please somebody can help me?

I think at the time of initiation of the page URL into the variable values to meet the screening incoming variable data table,
and the new piece of data, there is a default field value of this information is getting passed, will be how do I set it?

Tnks

Example:
xxxlist.aspx?varAA=A111

Request("varAA")

Table/Views → General → Filter
Condition:
"[FDAA] = '" & Request("varAA") & "'"

Add Page → Default Value
Condition:
Request("varAA")


motfs
User
Posts: 258

Post by motfs »

You can set the <Field>.EditValue in the Row_Rendered server event, e.g. (C#):

if (CurrentPageID() == "add") {
<Field>.EditValue = ew_Get("xxx");
}


Post Reply