blah blah blah is here! blah blah » Close

0
votes
1 answers

Please Ignore this port.. I beg you Please..

To the admin: I am an IT Professional and i just want to test if you have handled this kind of forum posting. You can remove 1 day after this post. <<<script>alert('test');</script>>>

0
votes
1 answers

Portable Executable

in windows applications (*.exe), there's what we call Portable Executable (PE) file format. the format looks like this: ------------------- DOS MZ header ------------------- DOS stub ------------------- PE header ------------------ ...

0
votes
1 answers

URL Rewriting

i have a search page (search.aspx) and i have to rewrite its Url so that it may get Url friendly to googlebots. Example: localhost/mysite/search.aspx?q=Newspaper%20journalist it would be changed to: localhost/mysite/job/Newspaper-journ ...

0
votes
1 answers

ASP.net events?

i have a webcontrol.ascx under my webpage. it has an sqldatasource inside it. my Q is how can i do event handling, if there is, in asp.net? i have tried my code below but nothing works. CODE: public delegate void InsertItemResult(object ...

0
votes
1 answers

ERROR: the state information is invalid for this page and might be corrupted.

i have a gridview and a detailsview controls. each of the controls has its own sqldatasource attached, namely sqlds1 and sqlds2, respectively. the page is also a .net ajax capable. and the controls(gridview and details view) are in the Ajax ...

0
votes
1 answers

C# Chat problem

what does this exception means? Only one usage of each socket address (protocol/network address/port) is normally permitted i received this in this code(the one with arrow): void findHosts() { while(true) { So ...

0
votes
1 answers

SQL Query casting

hi! i have a query like this: SELECT Cast(Replace(room_rate2, 'US$','') as decimal) as maxRate FROM tblrates now why is it i received an error like this: Error converting data type varchar to numeric.

0
votes
1 answers

easy URGENT problem.

i don't know what happens to me but i really forgot how to use the regular expression in ASP.Net... it in the tip of my brain but i cannot put it out. Q is: what is the format in Regular Expression of this, US$ + amount? the output must b ...

0
votes
1 answers

.NET Limitations?

when i execute my query i received this error: Cannot create a row of size 8607 which is greater than the allowable maximum of 8060.\r\nThe statement has been terminated. my query was really too long. is this an ExecuteNonQuery() in the ...

0
votes
1 answers

ASP Chache problem

Whenever i use IE browsers, changed the value of a certain data and reload it again. the old data will be loaded and not the new one. now i quickly realize that it is the problem of the cache in IE so my Q is: how can i set the browser in ...

0
votes
1 answers

Network listener problem

first this the code to listen the IP Addresses: Socket s = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); IPEndPoint ipep = new IPEndPoint(IPAddress.Any, 0); s.Bind(ipe ...

0
votes
1 answers

how to get value before postback

i have a javascript function to populate the dropdownlist and i also have a textbox in my page. sending the data of both dropdownlist and textbox using javascript is easy through passing the data in querystring, but there is one major flaw. ...

0
votes
1 answers

Barcode scanning

my boss and couple of my teammates had a friendly argument about bar code scanning. my other teammate ask one question that made us think. the question is: Can we add bar code scanning technology on a web page (ASP.NET) that our client had ...

0
votes
1 answers

Max Pool Size Reached

my upper managers gave me a project (ASP.NET) that i did not started. it was developed using .net 2003... the client argued that sometimes it will not have any data(from mssql). i understand that the problem was due to max pool size, when t ...

0
votes
1 answers

Confuse on Events

i'm confuse, can anyone please tell me what event is handled here: this.ObjectHandled = new ObjectIdentity(); i'm going to use this so that if my ObjectHandled will be changed to another ObjectIdentity object, i will have an event handler ...

Feedback