13,153 Topics
![]() | |
Good Day! I need guys help. I have a problem in my web site that was running on my local machine. Actually, months ago the page was working fine and has no error but now, it already has. The pop up message is "Line: 4723 Error: Sys.WebForms.PageRequestManagerServerErrorException: Object reference not … | |
Hi, I am looking to store files into Blob in oracle table. Like .pdf .doc .xls .jpg etc. Please help me on this. Regards, Kavitha Kesav | |
Hi All, Need a help on ASP.NET gridview. I need a link gridview in asp.net and when you click on particular link that details has to show in the same page. I am using Oracle database. Thanks in advance. Kavitha Kesav | |
Hello all, I am having an issue learning some things in visual studio 2013 asp.net using vb. I am following a fellows instruction on doing a report with a parameter. In this part of the code: Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Protected Sub Button1_Click(sender As … | |
i am using a store procedure to access field in asp.net View, i am putting db columns in HTML table, it's workign except for one field, 'NetSalary'. It can't be accessed, it says that model doesn't contain it. i tried many ways but couldn't get to work. ALTER PROCEDURE [dbo].[GetMonthlyReport] … | |
Hi, When debugging the page i am getting error("argumentexception was unhandled by user code"). Can any one help me on this. in .aspx page: <asp:DropDownList ID="ddlCategoryID" runat="server" CssClass="input"> </asp:DropDownList> in .aspx.cs page: pageload : Bindmasterdata(); ---- DataTable dt = new DataTable(); using (OracleConnection Con = new OracleConnection("SConnectionString")) { Con.Open(); OracleCommand … | |
Good Day to everyone... I need some help.. I just have a problem on how do I pass the value from the pop window to my main page. I have a main page where it has two textbox namely DepartmentID, DepartmentName then I also put a Search button that when … | |
Hi, i was wondering how is working with MVC to put my website on the webserver!! I mean, my fear is about the database... if i make some change on my code and i wnat to put the project on the server, will i lose my data on the database … | |
I am getting followed error while first time get report on different server afterwards i refresh web page again report appearing properly.What can be cause? *System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host … | |
Hi, i did create the following class in my Models folder and i create the Styles controller, everuthing is fine... but muy problem is the following. When i clicK on the link style i got my list of styles and when i click in one style i got the idin … | |
Hi, every time i boot up my computer the hardware wizard starts up and looks for .Net, it doesn't find the drivers or whatever it's looking for and repeats this process four times. I've looked in device manager and sure enough there are four yellow exclamation marks alonside four different … | |
I am learning MVC and i would love to do my web site with different languages... if the site come from my domain mysite.fr i wanna show french, if comes from mysite.it i wanna show italian.. etc etc So, i did all what the e tutorial asked me to do … | |
Hi! Everyone, I Have two pages: 1. Main Page(Parent Page) 2. List of Data (Child Page) The Main Page(Parent Page) look like this: Student ID : [Textbox] Student Name : [Textbox] [Button:Search] And my Second Page(Child Page) has datagrid with the following data column(data from my database): Student ID | … | |
I have a Rad gridview that databinds and popluates date according to a seacrh. There is a linkbutton that i want to be able to change on column from saying false to true or vice-versa. Please help protected void rgUsers_ItemCreated(object sender, GridItemEventArgs e) { if (e.Item is GridDataItem) { GridDataItem … | |
hai .... i want to upload the image from my system to database without using fileupload , i mean i want to upload the image from specific path for example ("c:\project\image\winter.jpg").. i use the asp.net C#... plz reply for my question ,if any one know's ........ | |
Hello :) i've created a user control that contains a label and button. then i created a web page ... i put the User control in this page how i could change the label text from the page? i think i have to create a method? how and where i … | |
I have applied script on dropdownlist for stylish look and style is applied properly ,but in .cs page(code page) OnSelectedIndexChanged of dropdownlist is not working properly. **My Html Code:** <head> <link href="css/screen.css" rel="stylesheet" media="screen" type="text/css" title="default"/> <script src="js/jquery/jquery-1.4.1.min.js" type="text/javascript"></script> <script src="js/jquery/jquery.selectbox-0.5_style_2.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function () { $('.styledselect_form_1').selectbox({ inputClass: "styledselect_form_1" … | |
HI, I have website which works on html5 video tag to play videos and now my question is, i want to pause the video after two minutes it plays and ask the customer to pay some amount to watch the full movie , i would like to get some help/links … | |
Hi All, I want to develop asp.net web-site by using API provided by cleartrip. I used that API but every time I received the response as bad request. Please help me to soulve the issue. Here is my Code:- [Code=C#] HttpWebRequest req = (HttpWebRequest)WebRequest.Create(http://api.staging.cleartrip.com/air/1.0/search?from=BOM&to=DEL&depart-date=2010-12-20); req.Method = "Get"; req.Headers.Add("X-CT-API-KEY", "MYAPIKEY"); HttpWebResponse … | |
O would like to understand how to manage my website with Multilingual option for exapmple if the user is cominf form the domain .fr or .it or co.uk ect... how can i do this??? Thanks a lot for your help | |
Hi, i woul like to get the following routing example in MVC : mysite . com /NAME/NAMECATEGORY/ID i have a list of items in name and each item has a category... when i choose and item i would like to show the category as well and not only the id … | |
Hi, how can i apply a simple text editor to my textbox "SUBTITLE" and a full text editor to my textbox "BODY" in MVC? Thanks | |
HI, ho can i do a select list from my table with MVC? Example database = mydatabase table = styles ID NOM show my select <selct name=aaaaa> <option value=ID>NOM</option> Thanks | |
Hi there, i just copy the css of the YETY layout and everything works fine but i have a proble to apply the dropdown menu on my MVC link.... i have the following link : @Html.ActionLink("Collection Hair", "Index", "Styles", null, new { @class = "navbar-brand" }) and i would love … | |
Hi, i am looking for a full tutorial for MVC4!!! I need a complete tutorial where i can manage user registration and one list of articles with relative reviews!! Can anybody help me with this??? If you can tell me some links where i can find something like this (because … | |
I am trying to get the width and height of the uploaded html file. This is what i have done so far. WebBrowser wb = new WebBrowser(); int ht,wd; wb.Navigate("D:\\page1.HTM"); ht = wb.Height; wd = wb.Width; But the above code always return me the wrong size of the page. Can … | |
What would be the best approach to have multiple Admins create its own users in asp.net mvc? Using Role? Thanks | |
Hi I have a calendar extender in the edititemtemplate section of a gridview. I need to set the start date to the current day. I did this on another page by writing CalendarExtender1.StartDate = DateTime.Today; However as the extender is in a gridview it isn't appearing in the back end … | |
How to call server code from javascript code in asp.net using C# | |
I have included a copy of the aspx file and the work behind code file, my problem is I am trying to figure out how to get the text entered in the text boxes so I can update a mysql database. I have tried using the findcontrol but I'm not … |
The End.