13,153 Topics
![]() | |
Hello I have this line of VB.NET that redirects the user to a 'Thank you' page (thankyou.aspx) after submitting a contact form. Dim target = String.Format("~/thankyou.aspx?yourname={0}", Name) 'Redirect user to thank you page Response.Redirect(target, True) The contact form itself has this: <p><span>Name</span><input class="contact" type="text" name="your_name" /></p> while in my aspx.vb … | |
![]() | I have a chart that is being populated from a query in the vb code but when the chart is displayed there is an extra x-axis grid tick. How do i get the x-axis grid to only display the number of items being returned? **VB code: ** Public Function CLGenerateRevenueHistoryChart() … |
I have a file download code in vb .net but when i try to download any file (.rar in this case) everything downloads properly but when i open the .rar file WinRAR shows "The archive is damaged!" but when i download the same file from IDM its perfect and no … | |
I have just one tables in database and three stored procedure (IUD)..and i m using EF for db integration MVC 4 ..as soon as i insert data in db ..it just display as it as (call it select * from tbl1) ..what if i m going to select data from … | |
hi. how can i disable past days in ajax calendar extender? user must only select one month period from the current date. so if today is march 10, 2015 when user clicks the calendar, the enabled dates should only be from feb 10 to current date. please help. thanks.. | |
I need to play video files which are located under client pc. For this I need to use embedded http server which will be setup on client. [embedded http web server is taken from here](http://www.codeproject.com/Articles/20445/C-Customizable-Embedded-HTTPServer?msg=4370868#xx4370868xx)If there is more advanced one I would like to learn. I'm using jwplayer to play … | |
I have a (probably stupid) question I hope someone can help me with.. So, I set a variaible beased on a form in put in the code behind, but then, a few lines down when I go to call it , it has a undefinded value. I don't understand.. Below … | |
Hi guys, I'm looking into MVC and I'm reasing this tutorial http://www.asp.net/mvc/overview/older-versions/hands-on-labs/aspnet-mvc-4-fundamentals I've got to the point of adding a model and the class they add is this: public class StoreIndexViewModel { public int NumberOfGenres { get; set; } public List<string> Genres { get; set; } } I'm not really … | |
Hi, so I have a dataset which I am using to create a CSV. When I run the code in debug mode and use the datatable visualiser all the data is shown, however when it opens in excel the last two cells of the last row are missing. I can't … | |
I am developing a ios app with a chat feature. I have a Back end .net server. how can i achieve this goal ? | |
I Am Using Cascading Drop down In Asp.Net Website But As I Select Third Or Forth Item From Drop down And Save It, It Stores First Value Only. I filled my form and select Country from country drop down it works smoothly but as i select select country accordingly state … | |
Plz anyone help me .... I created the database in access with fields type is date/time and text... But I try to get the value from datetimepicker and combobox.. My struggling code was cmd=new oledbcommand(insert into sample (doj,designation)values(" & datetimepicker1.value &","&combobox1.text&")",con) note:- database connection is successfull!... | |
Hi All We are having an issue where a WSDL is loading another WSDL into it when we call it. This call takes a while on the first call which normally causes failures across the application during testing. One option we are looking into is pre-caching the WSDL in IIS … | |
can you anyone say How to Create a .dll file of java from the .net dll | |
I have a datatable called datasource that I use to populate a gridview and to use to export the data to a csv file, however for some reason it is leaving the last cell of the last record in the csv blank. Just wondering if anyone has came across this … | |
I am developing a social networking website using a**sp.net mvc** and sql server 2008. I need reference links, sites or reference books which help on knowing what are the best practices, code patterns and best third party tools to integrate and work on. Any suggestions from you people will help … | |
I'm creating a menu based on the user using the following code System.Text.StringBuilder sb = new StringBuilder(); sb.AppendLine("<ul>"); if (!Page.IsPostBack) { foreach (DataRow row in datatable.Rows) { sb.AppendLine(String.Format("<li><a href= x.aspx?Name={0}&Short={1}&Long={2}></a></li>", HttpUtility.UrlEncode(row["x_name"].ToString()), HttpUtility.UrlEncode(row["x_short_name"].ToString()), HttpUtility.UrlEncode(row["x_long_name"].ToString()), row["x_short_name"].ToString())); When the user selects an item from the menu the page is loaded using a querystring. … | |
Hi All, I am Just beginning to learn MVC/ Javascript and I have just been given a project to be able to print labels using dymo printers. Now i am blank at this moment in time and i don't even know where to begin (I know how MVC works of … | |
Hi I have a gridview which is bound to a datatable called datasource. The datatable is populated with data from the database which is then displayed in gridview. However I would like to add a title to the gridview, I tried this with gridiview.caption and it works fine. However users … | |
Hello to everyone. First of all let me say that I know that there are TONS of threads with the same subject. BUT the other threads are dealing with PHP vs ASP question in general and I have a specific question. :) So, I have to choose between PHP and … | |
I want to develop an application in silverlight which detects if the CAPS LOCK is enabled or not as soon as the application starts (without pressing a single key). | |
This is a very simple login form. I set it up so that the form won't close until it's cancelled or a valid username and password are entered. I chained the check for the username and the check for the password, so that if the username doesn't pass the password … | |
I have a gridview that is created dynamically in the back end of the code. The gridview is populated depending on the data entered into the form. When the submit button is selected the gridview is populated with the results, however when the user fills the form in the second … | |
Hi, my working with my registration web application. Here my code. <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <style type="text/css"> .style1 { width: 47%; height: 169px; } .style2 { font-size: large; color: #0000FF; font-weight: bold; font-family: "Berlin … | |
Hello all ! Good evening :) I'm a newbie on learning about .NET framework. I want to ask, if anyone can help by to show or guide me how to create a simple web application using VB.NET language and also involve a database part. In other word, I want to … | |
hello, I want to have a button that everytime a user clicks it, his info via his session will go into a table in a database. Can anybody of you guys can help me with this problem? | |
hi, I want to make a desktop app which consist on some pages i can send msg through that app. Kinldy suggest me would i can develop this app in vb.net asp.net or android or any other plat form you suggest... Thanks | |
Hi all, Does anybody know how can i convert from **Html to PDF in ASP.NET** ? I need a componnent which does it for *under 200$*. I've tested out a few dll's but they all seem to *cost 1000$+* !!! Thanks! | |
Hi i have a gridview that is created dynamically and then added to placeholder. The systems layout is 3 columns, the menu in the first, a form in the second and the gridview in the third. The user has the option to make the third panel expand so that the … |
The End.