Questions tagged [aspx-user-control]
94 questions
-1
votes
1 answer
In aspx page how to bind only one json value inside a tag
I have a problem I have JSON data in my aspx page.Also I have code inside code behind to call api to get all JSON data. My sample json data as followsenter
"tags": "খালেদা-জিয়া,বিএনপি,নির্বাচন",
"timeline_tags": null,
…

Rifat Murtuza
- 119
- 3
- 12
-1
votes
1 answer
kentico smart search filter
I want to implement a smart search filter in my project, I already bulit a smart search box connected to a searchResults page, but now I want to add more options to filter these results. I am not using a web part structure so I have to implement…

farah el agha
- 77
- 9
-1
votes
1 answer
How to perform some action when i click on html submit control without using runat server
I have 2 textboxes and 1 submit button in my asp.net webform. Those controls are purely HTML controls and I don't want to use runat="server" property.
Now, when the user clicks the submit button, some action should be performed. For that where I…

Kamaal Shaik
- 57
- 1
- 9
-3
votes
1 answer
How to read txt file on Client from aspx c# website
i have a question, I have this code
foreach (string line in File.ReadLines(**@"C:\fis32v6\fis32.ini"**))
{
if (line.Contains("TEST1"))
{
Label1.Text="TEST1";
PdLine = "1";
}
}
DataSet…

Mrazik
- 1
- 1