17 تیر 1403
logo

پژوهشگاه علوم غدد و متابولیسم

دانشگاه علوم پزشکی تهران

این صفحه برای تست فرم ایجاد شده است.

شروع

 

 

 

 

File Request Form

 

 

 

 

 

 

 

using System; using System.Web.UI; namespace YourNamespace { public partial class Default : Page { protected void Page_Load(object sender, EventArgs e) { } protected void btnSubmit_Click(object sender, EventArgs e) { string nameSurname = txtNameSurname.Text; string fileFormat = txtFileFormat.Text; string projectName = txtProjectName.Text; string reasons = txtReasons.Text; string filePath = txtFilePath.Text; lblResult.Text = $"Name and Surname: {nameSurname}
File Format: {fileFormat}
Project Name: {projectName}
Reasons: {reasons}
File Path: {filePath}"; } protected void btnReset_Click(object sender, EventArgs e) { txtNameSurname.Text = ""; txtFileFormat.Text = ""; txtProjectName.Text = ""; txtReasons.Text = ""; txtFilePath.Text = ""; lblResult.Text = ""; } } }