- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
47 Posted Topics
Re: Refer this [url]http://weblogs.asp.net/bleroy/archive/2005/12/01/asp-net-alerts-how-to-display-message-boxes-from-server-side-code.aspx[/url] | |
Re: See weather this helps you or not.... [url]http://www.vbforums.com/showthread.php?t=358556[/url] | |
[CODE]<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CheckCode.aspx.cs" Inherits="CheckCode" %> <!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>Verification code to prevent auto signup in ASP.NET 2.0</title> <style type="text/css"> <!-- body { margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } a:link { color: #0000FF; } a:visited { … | |
Re: [CODE] Private Sub btnLogin_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnLogin.Click If txtUsername.Text = "" Then MsgBox("Please Enter Username") ElseIf txtPassword.Text = "" Then MsgBox("Please Enter Password") End If Try Dim con As New SqlConnection("Data Source=XXXX-B4C521B850\SQLEXPRESS;Initial Catalog=TT;Integrated Security=True") Dim ds1 As New DataSet Dim da1 As New SqlDataAdapter("select … | |
Re: Select Your Controls and Set Anchor property to Top,Bottom,Left,Right which is by default top,left | |
Please help me, I need free inventory CMS, what the best choise? Yes, Content Management System for Inventory, not Blogging like Joomla.. | |
All the webpage data will be converted into PDF file, You can also add details such as ur name etc by using Chunk chunk1 = new Chunk("By Vishal RAne, [email]vishalrane50@example.com[/email] \n",FontFactory.GetFont("Verdana", 8)); The pdf will be saved on desktop.... u can change location by using PdfWriter.GetInstance(Doc, new FileStream(Environment.GetFolderPath (Environment.SpecialFolder.Desktop)+ "\\VishalRane.pdf", … | |
| |
Re: if possible can you please attach the project here..... | |
Re: You can do like this if user gives correct answer of that secret question you can show a message box saying your password is.... or you can use following code but in place of old password use the result of your secret answer... [CODE]Private Sub btnSave_Click(ByVal sender As System.Object, ByVal … | |
how to handle the database when multiusers are inserting data at same time flow 1.First user click on save button 2.sp_1 will be execute which is used to insert the data in table1 3.primary key value will be retrive from sp_1 to aspx.cs form. 4 sp_2 will be execute next. … | |
I am doing project in 2010... I am trying to add new data source... I have clicked data->Add new data source... it shows the window "Data Source Configuration" i select database as shown in image1 Then i select Dataset... as shown in image2 And when i select the New Connection … | |
Re: [B][I]To remove ALL spaces: [CODE]myString = myString.Replace(" ", "")[/CODE] To remove leading and trailing spaces: [CODE]myString = myString.Trim()[/CODE] Note: this removes any white space, so newlines, tabs, etc. would be removed.[/I][/B] | |
Re: Check this thread [url]http://www.daniweb.com/software-development/vbnet/threads/369800[/url] | |
Re: [B][I]If the data gets updated by some other program, you could use a timer control to refresh the report every 5 minutes (or whatever time frame you would like.) If the data gets updated by your program, then just put the code that loads the report in a method and … | |
Re: What is for MenuStrip use for in your problem... is it having setting... | |
Re: Hope it will help u..... [url]http://www.plus2net.com/asp-tutorial/date-today.php[/url] | |
I have one web page on masterPage i have 2 links which redirects user to another page... For example: Link 1:Customer Detail-this page contain some textbox to save data into the database such as customer id, customer name, customer address,customer contact.. Link 2:Employee Details-this page contain some textbox to save … | |
I am having one gridview on my web application.... It all working fine but not getting the result i want... I have also used Edit and Delete Link as shoun in image 1.... When i click Edit button, then it can be edited... but when i click update the data … | |
Re: sEE WEATHER THIS HELPS YOU OR NOT... [url]http://vbdotnet.canbal.com/view.php?sessionid=lyCAxUIcejUFsYgOeEvzN94%2Fbn8lJe4NMEYiZnqVwCA%3D[/url] | |
Re: can you please elaborate it.... | |
Re: [CODE]Dim sReader As New StreamReader("C:\work document file name.doc") Dim text As String = sReader.ReadToEnd() sReader.Close() If text.Contains("word to search you can also use textbox") Then MessageBox.Show("show the searched data here") End If[/CODE] Dont forget to import.... [CODE]Imports System.IO[/CODE] | |
Re: First of all download html template from... [url]http://www.csstemplatesforfree.com/[/url] after downloading the template unzip it on desktop now create new website... go to SolutionExplorer... right click->Add existing item->locate that folder->there will be one index.html file in that folder->also open the images that folder have...->and also the default.css file in that downloded … | |
Re: Refer... [url]http://forums.asp.net/t/1517073.aspx/1[/url] | |
Re: Refer this... [url]http://forums.asp.net/p/1670685/4374101.aspx/1?Jquery+Tools+ToolTip+for+Gridview[/url] | |
I am getting this error when i try to connect to the server... Hot to rectify it... "This version of Microsoft SQL server Management Studio Express can only be used to connect to SQL Server 2000 and SQL Server 2005 servers. (Microsoft.SqlServer.Express.ConnectionDlg) | |
Re: [B][I]Refer This:[/I][/B] [url]http://social.msdn.microsoft.com/Forums/en/netfxjscript/thread/b72174c2-acee-4125-8114-ff36cb636e61[/url] | |
Re: [B][I]It looks as though at the time your are trying to retrieve the data, your GridView has no Rows or Cells. Check the Rows.Count and Rows(0).Cells.Count properties to check which one is failing.[/I][/B] | |
Re: [B][I]Suppose you are having two forms example..form1 and form2 both contain textbox... abd you want to pass values from textbox of form1 to textbox of form2 You have to First Of All have to load Form2 and should enter following code...[/I][/B] [CODE] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e … | |
Re: assume you have a control named "TextBox1" in aspx file, and its value is "2" also, you have a javascript function called "ShowValue" which will alert the value of TextBox1. so, your aspx file like this: [CODE] <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 … | |
Re: Hope it will help u... [url]http://www.codeproject.com/Answers/149026/Warning-message-vshost-exe-has-stopped-working.aspx#answer1[/url] | |
Re: [URL="http://www.daniweb.com/web-development/aspnet/code/368870"]http://www.daniweb.com/web-development/aspnet/code/368870[/URL] Please go through above link.... but the code is in asp.net... You can change is as per you in vb.net.... | |
Re: Perfect solution.... [url]http://www.codeproject.com/KB/GDI-plus/csharpfilters.aspx[/url] but its in C# | |
Re: [I][B]First of all drag and drop one timer on your application then set Enabled property=True and set interval="whatever u want in my case 6000" and also take one textbox And now double click the timer control and write the following code....[/B][/I] [CODE] Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e … | |
Re: See this helps you or not [url]http://social.msdn.microsoft.com/forums/en-US/vscrystalreports/thread/0b8260b3-497b-4035-9ea8-ba4b72d3bd3d/[/url] | |
Re: very simple just put Console.readline It will stop until u press any key!!!!! | |
Is it possible to navigate multiple tables at a time.... The two tables are joined with primary and foreign key relationship... Pls give me some site to which i can refer or some sample code for all first,next,previous,last I can do it when its single table.... [CODE]Private Sub btnFirst_Click(ByVal sender … | |
Suppose der is one database name Customer which have columns like Cust_ID,Cust_Name,Cust_Mob,Cust_Address And on Form der are one list box which contains all Cust_Id from database and 4 textbox so when user click on the listbox having id as 1 it should display name, mob and address of cust_id 1 … | |
Re: Not getting you.... do u want d print out of current form.... | |
Re: Just do this settings..... [url]http://windowsfixup.com/2009/05/google-chrome-wont-display-pdf-files-fix/[/url] | |
| |
Re: Hope it will help u..... [url]http://www.stevetrefethen.com/blog/DevelopingFacebookapplicationsinCwithASPNET.aspx[/url] | |
Re: how to use dis code in asp.net using C#... | |
I am having one web application... On which i have one combobox whose autopostback propert is set to true.... its showing d same result that i want... the only problem is that the page gets refreshed automatically when i select a data from combobox.... How to overcome this problem pls … | |
is it possible to call form load event on button click Following is the vb code i want same function in vb.net [CODE] Private Sub cmdaddcancel_Click() Form_Load End Sub[/CODE] Private Sub cmdaddcancel_Click() Form_Load End Sub in vb we simply call Form_Load is it possible in vb.net For eg: IN VB.net … | |
[CODE]Private Sub frmCust_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load dbSource = "Data Source=xx-B4C521B850\SQLEXPRESS;Initial Catalog=TT;Integrated Security=True" con.ConnectionString = dbSource con.Open() da.Dispose() sql = "Select * from Cust" da = New SqlClient.SqlDataAdapter(sql, con) da.Fill(ds, "Cust") da.Update(ds, "Cust") con.Close() MaxRows = ds.Tables("Cust").Rows.Count inc = -1 End Sub [/CODE] if after … |
The End.