Tagged Questions
ASP.NET is a web application framework developed by Microsoft to allow programmers to build dynamic web sites and web applications.
0
votes
2answers
25 views
ASP.Net : How to call a method from one web page with another web page
I have a web site that includes two pages. one of them shows my basket (basket.aspx) and the other shows the product(product.aspx). I want to update grid view in basket page when the users click on ...
0
votes
2answers
33 views
Image is saved to the database as binary data, now I need to extract the data and put it in an <img> tag
I please need help to get my image to display correctly in the tag that is created in a literal control.
foreach (DataRow dr in dt.Rows)
{
string productName = ...
0
votes
3answers
34 views
Buttons OnClick event in .aspx instead of .cs file
I'm creating a small asp.net app, and I'm facing an issue that may be pretty simple to fix.
On my masterpage, I have a 'Login' button. I've put the button on the form, double clicked it, and the ...
0
votes
0answers
8 views
global variable in asp.net mvc 4 across all views
Good day,
I want to make a global variable of a string for the src location of my css files so that i don't have to type it out every time, and if I change the position of it then i just need to ...
0
votes
0answers
13 views
can not download torrent using monotorrent (“no connection could be made because the target machine actively refused it”)
Please don't kill this question because it contains a world that is torrent.
I am trying to download a torrent using monotorrent. I have just download a sample program from its github repository and ...
0
votes
1answer
14 views
Html editor not work asp.net 4.0
i have one task in that i have to add html editor for that i code like this.
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
</asp:ToolkitScriptManager>
...
0
votes
2answers
14 views
PageClose Event in asp.net
when user close the web site that time i need to call some function here, what was the event for user close the page or browser in asp.net(C#).
0
votes
1answer
24 views
How to create autogenerate serial number column in GridView
I have a gridview and I want to autopopulate the serial number columns. For eg, the gridview has 10 rows. The user deleted the first row. I want the gridview serial number to automatically shift down ...
2
votes
0answers
9 views
How can Add error message in ModelState on MVC using Javascript?
This is my Model property
public ModelStateDictionary modelSateClientSide { get; set; }
Now I called the Property In JavaScript and add the error in my modelstate
...
0
votes
2answers
27 views
Select distinct values from a list using LINQ
i want select distinct firstName's column from Database with linq
my class is:
public partial class user
{
public string firstName{ get; set; }
public string lastName{ get; set; }
...
-2
votes
1answer
37 views
VS2010 - Should I use ASP.NET MVC?
I would like to create a Internal(LAN) Web Application. The App and DB will be under same Server. I need some idea should I use MVC ?
Thanks and Best Regards
Dylan Heng
0
votes
0answers
6 views
Where Can I download AjaxControlToolKit With Balloon Popup extender for visual studio 2008?
Where Can download AjaxControlToolKit With Balloon Popup extender for visual studio 2008?
I have AjaxControl ToolKit 3.5, but Balloon popup extender is not available on that. Now , I need AjaxControl ...
0
votes
2answers
25 views
Convert PPT slides into pdf in asp.net
I want convert power point presentation slides into PDF file, Please suggest me to ppt to pdf convert tool for .Net 4.0.
I am trying "UseOffice" but it is not working for me, it is not create PDF ...
0
votes
2answers
29 views
Object reference not set to an instance of an object. following error coming when i run this code this code i used for check gridview check box
protected void Button1_Click(object sender, EventArgs e)
{
for (int i = 0; i < GridView1.Rows.Count; i++)
{
CheckBox ch = (CheckBox)GridView1.FindControl("chkid");
...
0
votes
0answers
9 views
Paging in repeater with linq
I want to do paging in repeater control in asp.net. I can do custom paging with repeater with ado.net. But with linq i never did it. I try it but its not work Here is the code for binding my repeater ...