Drop Down List Selected Value is Null Problem [closed] - asp.net

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Dropdwon list binding with null value in database
solution:
select job_id,job_name from jobs union select null as none ,null as none

Drop Down List Selected Value Is Null Solution.

Related

Can we select the table data without using select statement [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Is it possible to select the data using indexes without using select statement...
No, you can not, you have to use it anyway. You can use stored procedure and call them from asp.net but stored procedure would have select statement to get data from tables.

How to write a REGEX for accepting numbers, + and - [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Can anybody help me to write a regex expression which accpets -
Numbers
+
-
Total number characters should be 20.
use character set [...]
here you are:
[-+\d]{20}

how to reverse records in pl/sql [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
how to reverse records in pl/sql
Use an ORDER BY clause with either ASCENDING or DESCENDING when selecting your records.
If this isn't what you want, you need to learn how to ask questions, as this is rather vague and open to interpretation.

Encryption type [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Who can tell me what type of encryption this is?:
ntmQADJg9WWFHqQU/Bcef0YRnM0xB1
Looks like a base64 encoded string. However decoding that results in a binary, so beyond that can't say.

How can I store the image in websql(SQLite)? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I want to store images in websql(sqllite).so please provide the procedure to store images in websql.
Sqlite has a data type called BLOB which is common in many DBMSes.
You can serialize the image as byte[] ans save it to column just like other data types.
Here is the same questoin How do i store and retrieve a blob from sqlite asked and answered.

Resources