Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
9
Posts with Upvotes
9
Upvoting Members
7
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #779
~27.8K People Reached

66 Posted Topics

Member Avatar for sandeepparekh9
Member Avatar for jackparsana

server side controls are meant to set off the post-back event (which is the refresh).. if you need a client side operation (i.e. to hide/show an object), then use standard html button with javascript inbuilt as an onclick event

Member Avatar for jackparsana
0
248
Member Avatar for mysitemanager
Member Avatar for pshirgaonkar

The logic should be simple enough if you use the below: System.IO.Directory and System.IO.File classes. There exists methods GetFiles, GetDirectories etc.. it should do the trick. If it helped, please close the thread.

Member Avatar for jfarrugia
0
127
Member Avatar for zack_falcon

firstly, its a great foul to have such differences in OSs.. at the very least, your test server has to simulate your production environment. Re client server question, you need to use sockets: on server, open a socket (using System.Net.Sockets;), and begin listening. on client, open socket and connect to …

Member Avatar for zack_falcon
0
218
Member Avatar for roXy101208

you have to give us more information, how are you uploading photos, how are you attempting to delete them, what code, language etc. etc.

Member Avatar for crishlay
0
125
Member Avatar for roXy101208

if its web based notifications, jquery will do the trick. However i believe the focus must be on a browser for this to work. [url]http://api.jquery.com/fadeIn/[/url]

Member Avatar for roXy101208
0
116
Member Avatar for bhagawatshinde

that wont work, you need to create your dynamic sql. Something like: decalare @sql as varchar(500) set @sql = 'select * from ' + @table exec (@sql) please mark this thread as solved.

Member Avatar for alc6379
0
3K
Member Avatar for Paradox 99

each time a page is loaded, the code above runs. You are recreating the dictionary object upon postback (postback occurs when you click on a button). You need either store the object in a session variable if you need to use this object in various pages, or else store it …

Member Avatar for Paradox 99
0
137
Member Avatar for lnk2019

Try the below.. looks helpful: [url]http://www.codeproject.com/KB/audio-video/Mp3SoundCapture.aspx[/url] please mark thread as solved if it helped. thanks

Member Avatar for jfarrugia
0
132
Member Avatar for judithSampathwa
Member Avatar for suvisoya

Try enabling viewstate on the controls you'd like to maintain data on. Set thread as solved if this helped.

Member Avatar for aspproject
0
88
Member Avatar for staticclass

I've worked with ClickOnce deployment.. very veryy useful and simple to use especially when releasing various versions to spread to different clients. [url]http://msdn.microsoft.com/en-us/library/t71a733d%28v=vs.80%29.aspx[/url]

Member Avatar for staticclass
0
2K
Member Avatar for Tortura

You forgot to manually bind the form event to that method.. is it being fired? add this.FormClosing += new FormClosingEventHandler(Form1_OnClosing); in your form load method

Member Avatar for Mitja Bonca
0
240
Member Avatar for sherinpoulose

printNode is a recursive function... there might be another problem, but the follow is definitely an issue: when printNode is called for the childnodes, it is instantiating a new StringBuilder each time. In other words, you are creating an object per node and not one StringBuilder for the whole tree.. …

Member Avatar for jfarrugia
0
124
Member Avatar for ritesh2190

1) you can either split the whole string with the string in question.. then simply get the length of the result array 2) use indexOf, get the first index, then use indexOf again with a startIndex > than the first result of indexOf.. keep going until indexOf = 0.. place …

Member Avatar for codeorder
0
142
Member Avatar for santhya.rps1986

can you debug the service to see what exactly is happening? Open the project, - debug-attach to process -> find process and attach.

Member Avatar for jfarrugia
0
111
Member Avatar for apanimesh061

its a DTD - document type definition.. placed in every html page, this snippet helps browsers recognize the version of markup in order to display/render correctly. It should be placed in every html page!

Member Avatar for jfarrugia
0
122
Member Avatar for ctsmith84
Member Avatar for jfarrugia
0
116
Member Avatar for gunnerone

try: if (resultNumbersOfEachCoin[indexOfCurrentCoinToCheck] >= 100) { Console.WriteLine(resultNumbersOfEachCoin[indexOfCurrentCoinToCheck]/100); } You only need to divide by 100 if the value is of 100 or greater.. in this case 100 or 200

Member Avatar for psychomiko
0
168
Member Avatar for scrivomcdivo
Member Avatar for unoho

Use AdomdConnection adomdConn = new AdomdConnection();.. a standard connection will not work. you need the following namespaces: using Microsoft.AnalysisServices; using Microsoft.AnalysisServices.AdomdClient;

Member Avatar for cfwebdeveloper
0
366
Member Avatar for Sinha's

Umesh, you have to give us way more information to be able to even start helping you. Please keep in mind that none of us have the slightest idea on your work, code, or calculation for that matter.

Member Avatar for Ramesh S
0
201
Member Avatar for get2tk

I've always used this class.. always worked like a charm.. and very easy to implement: [CODE] using System; using System.Web.Mail; using System.Collections; namespace Service.Classes { /// <summary> /// Summary description for Email. /// </summary> public class Email : IDisposable { #region –DECLARATIONS– private string strSMTP = string.Empty; private string strFrom …

Member Avatar for vishalrane
0
230
Member Avatar for Saikumar Adep

maybe if you could give us more details? Complete error, How are you importing it, If via code, can you provide us with the code, If the exception is being triggered in code, we need the code + the exact line where the exception is being fired. What do you …

Member Avatar for debasisdas
0
196
Member Avatar for zachattack05

You can select column A + column B as composite keys in the database.. meaning that both columns together are unique values. DB will trigger off a p.k error if you attempt to insert duplicate keys (since a + b in composite form a p.k)

Member Avatar for zachattack05
0
109
Member Avatar for matt240

You need: a) equipment for that, contact specific vendors b) if running on windows, you need set of APIs, ... WBF exists ([url]http://msdn.microsoft.com/en-us/windows/hardware/gg463081[/url]) c) [url]http://msdn.microsoft.com/en-us/windows/hardware/gg463089[/url]

Member Avatar for jfarrugia
0
44
Member Avatar for somon

I had done something similar a few years ago.. there might be something out there which is way simpler to implement today. However, I had used the Process class, opened a cmd, literally pinged the server through ping command, and parsed the return time in ms or set the server …

Member Avatar for jfarrugia
0
392
Member Avatar for ariffin246

suggestion: avoid using such sql statements, use stored procedures OR ensure that the there are sufficient checks to avoid sql injection attacks - e.g. in txtusername and txtpassword. The way your code has been written, it leaves quite a few options for a mediocre hacker to insert some malicious sql …

Member Avatar for jfarrugia
0
359
Member Avatar for Vayne

Somewhere you are closing the connection..a datareader shuts down once the connection terminates.. whats in : ExecuteStatement

Member Avatar for VIPER5646
0
1K
Member Avatar for WildBamaBoy

Couple questions: a) in the above implementation, is any exception being triggered somewhere or is data being lost? b) i always use that method.. creating a header prior to sending payload which would include the length of the payload.. normally i set the first 4 to 6 bytes manually as …

Member Avatar for WildBamaBoy
0
551
Member Avatar for BilalAKhan

Firstly, in search page, instead of placing if statements, why dont you simply: Response.Redirect("Search Page.aspx?Catagory="& CatagoryList.SelectedItem.Value &"&city=" & ItemList.SelectedItem.Value & "") secondly, can you actually see the parameters being passed in the URL in the result page?

Member Avatar for khadakbist
0
339
Member Avatar for Nitin Daphale

I think you need to add an a checkbox within an itemtemplate in a gridview..something like: <asp:TemplateField HeaderText="Login"><ItemTemplate><asp:Button ID="btnLogin" runat="server" Text="Login" CommandArgument='<%# Eval("MemberId", "{0}")%>' CommandName="Login" ToolTip="Click here to Login" CssClass="btnbgtrans"/></ItemTemplate><HeaderStyle Width="5%" ForeColor="Black" CssClass="titleCommission paddingleft5" HorizontalAlign="center"/><ItemStyle HorizontalAlign="center" CssClass="paddingleft5"/></asp:TemplateField> I've placed a command button in my grid, however the concept is just …

Member Avatar for dnanetwork
0
154
Member Avatar for anurag.kyal
Member Avatar for cutexxbaby

Im not sure exactly what you're after.. but if i am close enough to understanding, you might want to create a scheduled SQL job which runs every 30 days and resets the identity?

Member Avatar for jfarrugia
0
110
Member Avatar for Ken Peterson
Member Avatar for talala
Member Avatar for drax12

not sure i've understood.. but try store the name in a variable before renaming (using some class in system.Io namespace)

Member Avatar for skatamatic
0
87
Member Avatar for Jazerix

a database is normally used for these sort of things.. MySQL is pretty decent for what you need - could have been slow due to the resources it had available.. but another free option would be Microsoft Access - its like a toy DB but if its just for kicks, …

Member Avatar for jfarrugia
0
99
Member Avatar for niths

not 100% if it works.. try <script language="JavaScript"> javascript:window.history.forward(1); </script>

Member Avatar for jfarrugia
0
71
Member Avatar for jamesrichards

if you need to simply send notifications why dont you use a cheap service such as clickatel? i've used it in the past and its implementation takes seconds.

Member Avatar for jfarrugia
0
104
Member Avatar for Socarsky

create a public variable for your result (which is populated when you hit '=' ), clear it only when you hit Clear.. upon hitting '=' the second time, if the public var > 0, then do not reprocess the calculation

Member Avatar for zmeditation1
-1
111
Member Avatar for FrazMan

"ve sucessfully managed to connect to a local copy of sqlserver via c# and input data into an existing database." you need to do the same thing for a remote DB? can you pls explain yourself better

Member Avatar for FrazMan
0
161
Member Avatar for danholding
Member Avatar for denmarkstan

try [url]http://stackoverflow.com/questions/736106/asp-net-sending-pdf-to-browser[/url]

Member Avatar for jfarrugia
0
154
Member Avatar for suley04

can you pls provide further info on the error? maybe a code snippet plus the exact location where the exception is being triggered.. the environment in which its running and the framework version tnx

Member Avatar for jfarrugia
0
314
Member Avatar for sourav_kings

1) just open basic connection (search for sqlconnection) - place a try catch, and send email upon catch - this means db is down 2) search for sqlcommand - if 1) is successful, then do this 3) check this resource [snipped]

Member Avatar for jfarrugia
0
152
Member Avatar for zifina

It seems that an RTF file is doable: [url]http://stackoverflow.com/questions/5038499/loading-embedded-resource-rtf-file-into-richtextbox-on-load-c[/url]

Member Avatar for zifina
0
94
Member Avatar for buster2209

I've worked on a couple sms apps using AT commands via com ports.. if you could give me a sample dump of whats being returned and maybe some more code i might be able to help

Member Avatar for jfarrugia
0
151
Member Avatar for MrBlack

So inputtextbox or feedbacklable or both is null ? Other controls are fine? I would have suggested to try create controls in preinit event, however if other controls are being created successfully...

Member Avatar for MrBlack
0
125

The End.