Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #14.9K
Ranked #4K
~7K People Reached
Favorite Tags
Member Avatar for Faixan_1

Hi i want to add a select box every time a link is click and populate the values of select box from a table in database.How to achive this.

Member Avatar for ExpertMind
0
55
Member Avatar for SpottyBlue

Hey, I wanted to generate a report (GenReport.aspx) containing the list of GridView items filtered from the entered data from report.aspx. When I was debugging, I selected the data I wanted to filter, but it shows me all the data on the table instead of the data filtered on the …

Member Avatar for tdrosiadis
0
411
Member Avatar for Kalle_2

Hey I need some help here i have created a easy login with registration that save the password in plain text but now i want it to be hash and salted but i do not now how i can do this. This is the code for login: try { SqlConnection …

Member Avatar for JOSheaIV
0
195
Member Avatar for Maideen

Hi I do not know how to sum the one of the column in #table temp table It is my SP SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[usp_Customer_Due_Until_Now] @Code nvarchar(30) AS BEGIN SET NOCOUNT ON; select code as Code, Name as Name, sum(Nett) SINETT into #tableSI …

Member Avatar for ExpertMind
0
2K
Member Avatar for Tess James

When data volume is huge on a page, application is really slow in IE 11 compared to IE 8. For e.g. There is this page where a drop down list is bound with 23 K items (This is taking things a bit too far in terms of design, I know!). …

Member Avatar for ExpertMind
0
116
Member Avatar for settu ameer

string to = txtTo.Text; string from = txtEmail.Text; string subject = txtSubject.Text; string body = txtBody.Text; using (MailMessage mm = new MailMessage(txtEmail.Text, txtTo.Text)) { mm.Subject = txtSubject.Text; mm.Body = txtBody.Text; if (fuAttachment.HasFile) { string FileName = Path.GetFileName(fuAttachment.PostedFile.FileName); mm.Attachments.Add(new Attachment(fuAttachment.PostedFile.InputStream, FileName)); } mm.IsBodyHtml = false; SmtpClient smtp = new SmtpClient(); smtp.Host …

Member Avatar for ExpertMind
0
224
Member Avatar for asardeen

I want to display username in the top of all page. Below is my code . protected void Page_Load(object sender, EventArgs e) { } protected void btnLogin_Click(object sender, EventArgs e) { SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings["ApplicationServices"].ConnectionString); con.Open(); SqlCommand cmd = new SqlCommand("select * from Userman where Username =@username and Password=@password", …

Member Avatar for ExpertMind
0
182
Member Avatar for Chem_1
Member Avatar for ExpertMind
0
143
Member Avatar for Gus_19

I am trying to look through each row in my data table and if a condition is not met, a messagebox appears. (Eventually, instead of the messagebox, I will populate to a DGV. For Each eventRow As DataRow In PFC_Xpress.Tables("EVENT INFO").Rows If eventRow.Item("Incident Type") = "Party" Then For Each personRow …

Member Avatar for Gus_19
0
382
Member Avatar for jhedonghae

does anyone know how to make reports in vb.net become a daily, weekly and monthly basis?

Member Avatar for poojavb
0
153
Member Avatar for Aviplo

Can anyone help me with importing text file to sql server using vb.net here is my code ~~~ vb Dim ImportedFile As String Dim ImportedLines() As String Dim OneLine() As String Dim strSQL As String Dim i As Integer If My.Computer.FileSystem.FileExists("D:\PPOS\Sales_report\inventory_255503221452_Cake102.CSV") Then ' Read the whole text file ImportedFile = …

Member Avatar for ExpertMind
0
3K